Evmos
This page presents the available tables for Evmos.
Raw Tables
This table (evm_blocks) stores information about each block in the Cosmos ecosystem's blockchain. It provides data on the block number, creation time, and unique identifier.
| Column Name | Type | Description |
|---|---|---|
| height | INTEGER | Sequential block number identifier in the blockchain |
| timestamp | TIMESTAMP | ISO 8601 datetime value representing block creation time |
| hash | STRING | Unique cryptographic hash of the block header |
| ingestion_timestamp | TIMESTAMP | ISO 8601 datetime value representing data ingestion time |
Parsed Tables
EVM logs table containing data from Cosmos ecosystem blockchains. This table stores events related to transactions executed on these blockchains.
| Column Name | Type | Description |
|---|---|---|
| address | STRING | EVM transaction or smart contract account address |
| data | STRING | EVM smart contract execution data in hexadecimal format |
| block_hash | STRING | Hash of the EVM block associated with the log event |
| log_index | STRING | Index of the log within the EVM block |
| transaction_hash_evm | STRING | Hash of the EVM transaction for the log event |
| ingestion_timestamp | TIMESTAMP | Timestamp when the log data was ingested |
| topics | RECORD | EVM log event topics for filtering and sorting purposes |