Asset events represent state changes that occur for assets. This currently includes creating, transferring, and burning NFTs.
Field | Description | Type |
---|---|---|
type | type of event | MINT | TRANSFER | BURN |
from_address | The wallet address for where the event comes from | string |
to_address | The wallet address for where this event is going to | string |
quantity | 1 for ERC721, can be multiple for ERC1155 | number |
block_hash | block hash that the event happened on | hex string, null |
block_number | block number that the event happened on | number, null |
transaction_hash | transaction hash for where the event happened on | hex string, null |
transaction_index | transaction index for where the event happened on | number, null |
event_index | index of the event | number, null |
timestamp | when the event happened | Date |
asset | the asset for the event | Asset Object |