eth.token_transfers
SQL table schema for eth.token_transfers
Ethereum Token tables ERC-20, ERC-721, and ERC-1155 token transfers.
Column Name | Data Type | Description |
---|---|---|
| CHARACTER VARYING | The contract address of the token being transferred. |
| CHARACTER VARYING | The address of the operator contract, for proxied transfers. |
| CHARACTER VARYING | The address of the sender of this transfer. |
| CHARACTER VARYING | The address of the recipient of this transfer. |
| CHARACTER VARYING | The unique instance id of the specific token mint being transferred. |
| CHARACTER VARYING | The number of tokens transferred. |
| CHARACTER VARYING | The value, encoded as a hexadecimal string. |
| CHARACTER VARYING | The primary ERC standard this token implements. |
| CHARACTER VARYING | The hash of the transaction in which this transfer occurred. |
| BIGINT | The index of this transfer within the transaction. |
| BIGINT | The timestamp of the block in which this transfer occurred. |
| BIGINT | The number of the block in which this transfer occurred. |
| CHARACTER VARYING | The hash of the block in which this transfer occurred. |
| BIGINT | The batch number of this transfer, for large batched transfers. |
Last updated