> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# cardano.tx_input

> Description of the tx_input table on Dune

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## 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 |

## Table Sample

<TableSample tableSchema="cardano" tableName="tx_input" />
