ERC721Transfer

Git Source

Represents a single transfer of a single ERC721 token.

struct ERC721Transfer {
    address token;
    address from;
    address to;
    uint256 id;
}

Properties

NameTypeDescription
tokenaddressThe address of the ERC721 token being transferred.
fromaddressThe address the token is being transferred from.
toaddressThe address the token is being transferred to.
iduint256The id of the token being transferred.