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

# flow.cadence_transaction_receipts

> Flow Cadence transaction receipts — execution results, events, and status.

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

The `flow.cadence_transaction_receipts` table contains transaction receipt data from the Flow Cadence blockchain including execution status and fee information.

## Column Descriptions

| Column                  | Type          | Description                                   |
| ----------------------- | ------------- | --------------------------------------------- |
| block\_date             | date          | The date of the transaction                   |
| timestamp               | timestamp     | Timestamp when the transaction was executed   |
| block\_height           | bigint        | The block number containing this transaction  |
| block\_hash             | string        | Hash of the block containing this transaction |
| transaction\_hash       | string        | Unique hash identifier for the transaction    |
| success                 | boolean       | Whether the transaction executed successfully |
| status\_message         | string        | Status message or error description           |
| network\_fee\_used      | decimal(38,9) | Actual network fee consumed                   |
| cost\_per\_network\_fee | decimal(38,9) | Cost per unit of network fee                  |
| chain\_specific         | string        | Chain-specific metadata in JSON format        |
| \_updated\_at           | timestamp     | Timestamp when the record was last updated    |
| \_ingested\_at          | timestamp     | Timestamp when the record was ingested        |

## Table Sample

<TableSample tableSchema="flow" tableName="cadence_transaction_receipts" />
