Table Description
Tracks the consumption of UTXOs on the Cardano blockchain. Each row represents a UTXO being spent, linking the original output (identified by transaction hash and output index) to the transaction and block in which it was consumed.Column Descriptions
| Column | Description | Type |
|---|---|---|
| tx_hash | The hash of the transaction that originally created the UTXO. | varchar |
| output_index | The index of the output in the original transaction. | integer |
| spent_tx_hash | The hash of the transaction that spent this UTXO. | varchar |
| spent_at_slot | The absolute slot number when this UTXO was spent. | bigint |
| spent_at_block | The block number in which this UTXO was spent. | bigint |
| spent_at_block_hash | The hash of the block in which this UTXO was spent. | varchar |
| spent_block_time | The timestamp of the block in which this UTXO was spent. | timestamp |
| spent_epoch | The epoch in which this UTXO was spent. | integer |
| _updated_at | The time when this record was last updated. | timestamp |
| _ingested_at | The time when this record was ingested into Dune. | timestamp |