eth.contracts
SQL table schema for eth.contracts
Ethereum listing of all contracts.
Column Name | Data Type | Description |
---|---|---|
| CHARACTER VARYING | Address of the contract |
| CHARACTER VARYING | Compiled EVM bytecode of the contract |
| ANY | Array of hashes of function signatures defined in the contract. |
| BIGINT | The block number containing the contract |
| CHARACTER VARYING | The hash of the block containing the contract |
| BIGINT | The timestamp of the block containing the contract |
| BOOLEAN | True if the contract complies with the ERC-20 token standard, False otherwise. |
| BOOLEAN | True if the contract complies with the ERC-721 non-fungible token standard False otherwise. |
| BOOLEAN | True if the contract complies with the ERC-1155 multi-token standard, False otherwise. |
| DECIMAL | The confidence that the contract satisfies ERC20 requirements, within [0, 1]. |
| DECIMAL | The confidence that the contract satisfies ERC721 requirements, within [0, 1]. |
| DECIMAL | The confidence that the contract satisfies ERC1155 requirements, within [0, 1]. |
Last updated