View Source Ethers.Contract.ERC721.EventFilters (Ethers v0.0.1-dev)
Events for Ethers.Contract.ERC721
Link to this section Summary
Functions
Create event filter for Approval(address owner, address approved, uint256 tokenId)
Create event filter for ApprovalForAll(address owner, address operator, bool approved)
Create event filter for Transfer(address from, address to, uint256 tokenId)
Link to this section Functions
@spec approval( Ethers.Types.t_address(), Ethers.Types.t_address(), non_neg_integer(), Keyword.t() ) :: {:ok, Ethers.Contract.t_event_output()}
Create event filter for Approval(address owner, address approved, uint256 tokenId)
For each indexed parameter you can either pass in the value you want to
filter or nil
if you don't want to filter.
parameters
Parameters
- owner:
:address
- approved:
:address
- tokenId:
{:uint, 256}
- overrides: Overrides and options for the call. (Required)
:address
: The address or list of addresses of the originating contract(s). (Optional)
event-data-types
Event Data Types
- owner:
:address
- approved:
:address
- tokenId:
{:uint, 256}
@spec approval_for_all( Ethers.Types.t_address(), Ethers.Types.t_address(), Keyword.t() ) :: {:ok, Ethers.Contract.t_event_output()}
Create event filter for ApprovalForAll(address owner, address operator, bool approved)
For each indexed parameter you can either pass in the value you want to
filter or nil
if you don't want to filter.
parameters
Parameters
- owner:
:address
- operator:
:address
- overrides: Overrides and options for the call. (Required)
:address
: The address or list of addresses of the originating contract(s). (Optional)
event-data-types
Event Data Types
- owner:
:address
- operator:
:address
- approved:
:bool
@spec transfer( Ethers.Types.t_address(), Ethers.Types.t_address(), non_neg_integer(), Keyword.t() ) :: {:ok, Ethers.Contract.t_event_output()}
Create event filter for Transfer(address from, address to, uint256 tokenId)
For each indexed parameter you can either pass in the value you want to
filter or nil
if you don't want to filter.
parameters
Parameters
- from:
:address
- to:
:address
- tokenId:
{:uint, 256}
- overrides: Overrides and options for the call. (Required)
:address
: The address or list of addresses of the originating contract(s). (Optional)
event-data-types
Event Data Types
- from:
:address
- to:
:address
- tokenId:
{:uint, 256}