Table Description
Contains unspent transaction output (UTXO) data for the Cardano blockchain. Each row represents a single output at a specific address, including native asset details (policy ID, asset name, quantity), datum information for smart contract interactions, and script references.Column Descriptions
| Column | Description | Type |
|---|---|---|
| tx_hash | The hash of the transaction that created this output. | varchar |
| output_index | The index of the output within the transaction. | integer |
| asset_unit | The concatenation of policy ID and asset name, uniquely identifying the asset. Empty for ADA. | varchar |
| policy_id | The hash of the minting policy script that governs the asset. | varchar |
| asset_name | The name of the native asset (hex-encoded). | varchar |
| quantity | The quantity of the asset held in this UTXO. | decimal(38,0) |
| address | The Cardano address holding this UTXO. | varchar |
| stake_address | The stake (reward) address associated with this UTXO’s address. | varchar |
| payment_credential | The payment credential (key hash or script hash) of the address. | varchar |
| stake_credential | The stake credential of the address. | varchar |
| inline_datum | The inline datum attached directly to the UTXO (CBOR-encoded). | varchar |
| datum_hash | The hash of the datum attached to this UTXO (for non-inline datums). | varchar |
| script_ref | A reference script attached to this UTXO, available for use by other transactions. | varchar |
| reference_script_hash | The hash of the reference script attached to this UTXO. | varchar |
| is_collateral_return | Whether this output is a collateral return output. | boolean |
| epoch | The epoch in which this UTXO was created. | integer |
| slot | The absolute slot number when this UTXO was created. | bigint |
| block_hash | The hash of the block containing the transaction that created this UTXO. | varchar |
| block_time | The timestamp of the block containing this UTXO. | timestamp |
| _updated_at | The time when this record was last updated. | timestamp |
| _ingested_at | The time when this record was ingested into Dune. | timestamp |