ERC721Transfer
Represents a single transfer of a single ERC721 token.
struct ERC721Transfer {
address token;
address from;
address to;
uint256 id;
}
Properties
Name | Type | Description |
---|---|---|
token | address | The address of the ERC721 token being transferred. |
from | address | The address the token is being transferred from. |
to | address | The address the token is being transferred to. |
id | uint256 | The id of the token being transferred. |