eth.tokens
SQL table schema for eth.tokens
Ethereum Token tables ERC-20, ERC-721 and ERC-1155 token contracts.
Column Name | Data Type | Description |
---|---|---|
| CHARACTER VARYING | The address of the contract that defines this token. |
| CHARACTER VARYING | The human-readable name of this token, eg. "AliceInWonderland". |
| CHARACTER VARYING | The human-readable short symbol of this token, eg. "ALICE". |
| INTEGER | The number of decimal places that this token uses to represent fixed point values/amounts. |
| CHARACTER VARYING | The total number of unique instances of this token. |
| BOOLEAN | True if Spice considers this token contract to conform to the ERC20 standard. |
| BOOLEAN | True if Spice considers this token contract to conform to the ERC721 standard. |
| BOOLEAN | True if Spice considers this token contract to conform to the ERC1155 standard. |
| BIGINT | The number of the block in which this token was first defined. |
| BIGINT | The timestamp of the block in which this token was first defined. |
| CHARACTER VARYING | The hash of the block in which this token was first defined. |
Last updated