Cosmos Data
sei.cosmos_blocks
Description of the sei.cosmos_blocks table on Dune
Table description
Contains each validated block in the chain. block_timestamp
is only available in this table, so you need to do an inner join on block_height
to get block_timestamp
to other tables.
Column Descriptions
Column name | Data Type | Description |
---|---|---|
block_date | date | The date of the block. |
block_height | bigint | The height of the block, a unique identifier for each block. |
block_timestamp | timestamp(3) with time zone | Timestamp when the block was validated. |
chain_id | varchar | The ID of the chain where the block belongs. |
proposer_address | varchar | The address of the validator proposing the block. |
validators_hash | varchar | The hash of the validators set for the block. |
updated_at | timestamp(3) with time zone | Timestamp of when the record was last updated. |
ingested_at | timestamp(3) with time zone | Timestamp of when the record was ingested into Dune. |