Tables
blocks
Block header data containing sequential numbering, cryptographic hashes linking to parent blocks, timestamps, and consensus metadata. Primary source for blockchain state verification and chain navigation.Columns
Columns
| Column | Type | Description |
|---|---|---|
timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone. |
block_date | DATE | Date when the block was produced. Derived from block timestamp, truncated to day precision. |
height | INT64 | Sequential block number indicating the position of the block in the blockchain. Increments by 1 for each new block in the chain. |
block_hash | STRING | Unique identifier for the block. 66-character hex string including 0x prefix. |
parent_block_hash | STRING | Hash of the previous block in the Cardano blockchain, establishing the chain’s sequential linkage. Hex-encoded 64-character string that references the immediate predecessor block at parent_height. |
parent_height | INT64 | Block height of the preceding block in the Cardano blockchain, establishing the chain’s sequential ordering. Always equals the current block’s height minus one in a valid chain. |
block_timestamp | INT64 | Timestamp when the block was produced. UTC timezone, microsecond precision. |
transaction_count | INT64 | Number of transactions included in the block. |
epoch_no | INT64 | Cardano epoch number during which this block was produced. Epochs are fixed periods of approximately 5 days used for staking reward distribution and protocol parameter updates. |
slot_no | INT64 | Unique slot number in the Cardano blockchain representing the specific time unit when this block was produced. Each epoch contains a fixed number of slots, with values incrementing sequentially across epochs. |
size | INT64 | Block size in bytes. Represents the total serialized size of the block data structure. |
created_by | STRING | Identifier of the stake pool that produced this block. Formatted as “Pool-” followed by a 16-character hexadecimal string unique to each validator. |
number | INT64 | Sequential block number indicating the position of the block in the blockchain. Increments by 1 for each new block in the chain. |
number_index | INT64 | Index of the record within the block, starting at 0 for the first record and incrementing by 1 for each subsequent record. |
Sample Data
Sample Data
| size | height | number | slot_no | epoch_no | timestamp | block_date | block_hash | created_by | number_index | parent_height | block_timestamp | parent_block_hash | transaction_count |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3 | 4568980 | 4568980 | 6068349 | 211 | 2020-08-17T03:24:00.000Z | 2020-08-17 | 4741fc0b6d7db830c7c868990b464dc1125e8187d54a222f99cb0900d1724681 | Pool-2e65f9aa580a28d0 | 0 | 4568979 | 1597634640000 | f4a8768866f242a6cb22eb6b2eb86b4122025b27a33b18e816c2935e3029eb89 | 0 |
| 3 | 4569145 | 4569145 | 6071639 | 211 | 2020-08-17T04:18:50.000Z | 2020-08-17 | 5fa0c79ca8c2b1366d9a7d07d93a0c71052c085c89bb74e0f86ff0865307ec4d | Pool-21ae98f98fa83582 | 0 | 4569144 | 1597637930000 | 9b73a01364b0289909845725568280bff38e229b2fc8a4979cc548bc3d4f361d | 0 |
| 3 | 4570352 | 4570352 | 6096199 | 211 | 2020-08-17T11:08:10.000Z | 2020-08-17 | 4b7cf796f7025925bc6182f85f685604af6d2001fe1516f16384f5ad4a8fc4d0 | Pool-ee9ef63e4d50a24e | 0 | 4570351 | 1597662490000 | 8b8af1ca9abce2e2f7394108478c3061cbab1af7bda8ab6026af2f01f1d6cdb5 | 0 |
Example Query
Example Query
Query with partition filter
transactions
Transaction records containing signed operations that modify blockchain state. Primary source for tracking value transfers, contract interactions, and account state changes across the network.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, microsecond precision. |
block_date | DATE | Date when the block was produced. Derived from block timestamp, truncated to day precision. |
block_height | INT64 | Sequential position of the block in the blockchain. Zero-indexed integer representing the block’s distance from the genesis block. |
block_hash | STRING | Unique identifier for the block. 66-character hex string including 0x prefix. |
block_timestamp_unix | INT64 | Unix epoch timestamp of when the block containing this transaction was added to the Cardano blockchain, in milliseconds. Value is the same for all operations within the same transaction and block. |
epoch_no | INT64 | Epoch number representing the Cardano protocol’s time period when the transaction was processed. Each epoch lasts approximately 5 days and contains multiple slots. |
slot_no | INT64 | Slot number within the Cardano blockchain representing the time unit for block production. Each slot is a fixed time interval (typically 1 second) and increments sequentially across all epochs. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
transaction_index | INT64 | Position of the transaction within its containing block. Zero-indexed integer indicating the sequential order of transactions in the block. |
operation_index | INT64 | Sequential position of this operation within the transaction, starting from 0. Each transaction can contain multiple operations (inputs, outputs, staking actions), with this index providing their order. |
network_index | INT64 | Network index position of the operation within multi-network transactions on Cardano. Null for most operations as they typically execute on a single network. |
operation_type | STRING | Type of operation performed in this transaction such as stakeKeyRegistration, stakeDelegation, or stakeKeyDeregistration. Represents Cardano-specific actions including stake key management, delegation events, and ADA transfers. |
operation_status | STRING | Operation outcome indicator showing whether the transaction operation completed successfully or failed. Typically shows ‘success’ for executed operations, with failure states appearing when transactions are rejected or reverted. |
address | STRING | Contract address that emitted the event log. Hex-encoded, 0x-prefixed, 42-character string. |
amount_value | INT64 | Amount of ADA or native tokens transferred in the operation, denominated in the smallest unit (lovelaces for ADA). Null for staking operations that don’t involve token transfers like delegations and key registrations. |
currency_symbol | STRING | Token symbol for native assets transferred in this operation. Null for ADA transfers and non-monetary operations like stake registration or delegation. |
currency_decimals | INT64 | Number of decimal places for the token or currency involved in the operation. Null for non-transfer operations like staking actions. |
coin_action | STRING | Action performed on the coin balance within the operation (e.g., coin_created, coin_spent). Null for non-transfer operations like staking registrations and delegations. |
coin_identifier | STRING | Unique identifier for the specific coin or UTXO (Unspent Transaction Output) involved in the operation. Null for non-coin operations like stake key registration or delegation. |
transaction_size | INT64 | Total size of the transaction in bytes on the Cardano blockchain. Larger transactions typically contain more inputs, outputs, or metadata. |
script_size | INT64 | Size in bytes of the Plutus script associated with this operation. Null for operations without attached scripts. |
token_bundle | ARRAY<JSON> | JSON array of native tokens included in the operation, containing asset identifiers, quantities, and metadata for Cardano multi-asset transfers. Null or empty for ADA-only operations and staking actions. |
withdrawal_amount_value | INT64 | Amount of ADA withdrawn from a staking reward address during this transaction, denominated in lovelaces (1 ADA = 1,000,000 lovelaces). Null when the transaction does not include a withdrawal operation. |
withdrawal_currency_symbol | STRING | Symbol of the currency being withdrawn from a staking reward account (e.g., ADA for Cardano’s native token). Null when the operation does not involve a withdrawal. |
withdrawal_currency_decimals | INT64 | Number of decimal places for the withdrawal currency, determining how to interpret the withdrawal_amount_value. Null when no withdrawal occurs in the operation. |
related_operations | JSON | References to other operations within the same transaction that are logically connected to this operation. Null for most operations; populated when operations depend on or relate to each other within a transaction. |
Sample Data
Sample Data
| address | slot_no | epoch_no | block_date | block_hash | coin_action | script_size | amount_value | block_height | token_bundle | network_index | operation_type | block_timestamp | coin_identifier | currency_symbol | operation_index | operation_status | transaction_hash | transaction_size | currency_decimals | transaction_index | related_operations | block_timestamp_unix | withdrawal_amount_value | withdrawal_currency_symbol | withdrawal_currency_decimals |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| stake1u88xmvgqxf82cry2rnjp6cyxsnptase48fcm3u9d7k5qzgg4fwyg8 | 151121981 | 547 | 2025-03-23 | 530c2d9d9f7149e4895e44121f3005af01c9900c6a5d55447841bbdb29c2e43d | 0 | 11638492 | [] | stakeKeyRegistration | 2025-03-23T00:04:32.000Z | 1 | success | e3137291c9a0382209798ee58abb3f691f03cbdf1d0341d6209a3e0e4e16a5ed | 728 | 12 | 1742688272000 | ||||||||||
| stake1u88xmvgqxf82cry2rnjp6cyxsnptase48fcm3u9d7k5qzgg4fwyg8 | 151121981 | 547 | 2025-03-23 | 530c2d9d9f7149e4895e44121f3005af01c9900c6a5d55447841bbdb29c2e43d | 0 | 11638492 | [] | stakeDelegation | 2025-03-23T00:04:32.000Z | 2 | success | e3137291c9a0382209798ee58abb3f691f03cbdf1d0341d6209a3e0e4e16a5ed | 728 | 12 | 1742688272000 | ||||||||||
| stake1uyfxj5zlmcy3zzx8h270xxf0malglgrgpdn5wywq0cv56rqg4ltqv | 151122234 | 547 | 2025-03-23 | 6f6a434a13c55a280de479bd04c69ece24c02bb9fe49ab994f843c1ba85f0e46 | 0 | 11638505 | [] | stakeDelegation | 2025-03-23T00:08:45.000Z | 2 | success | aaedeea8721bd9dc5bf35b6e68eb1e223da64aa7828d407cf84a0057c07fddc6 | 427 | 1 | 1742688525000 |
Example Query
Example Query
Query with partition filter