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

# Regular Transactions

> Midnight regular transaction fee and merkle details

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

This table extends regular (user) transactions with result status, merkle tree bounds, and fee fields.

## Column Descriptions

| Column Name             | Data Type     | Description                                           |
| ----------------------- | ------------- | ----------------------------------------------------- |
| **id**                  | bigint        | Transaction id (joins to `midnight.transactions.id`). |
| **transaction\_result** | varchar       | Execution result of the transaction.                  |
| **merkle\_tree\_root**  | varchar       | Merkle tree root associated with the transaction.     |
| **start\_index**        | bigint        | Start index in the merkle tree range.                 |
| **end\_index**          | bigint        | End index in the merkle tree range.                   |
| **paid\_fees**          | decimal(38,0) | Fees paid for the transaction.                        |
| **estimated\_fees**     | decimal(38,0) | Estimated fees for the transaction.                   |
| **\_updated\_at**       | timestamp     | Timestamp when this record was last updated.          |
| **\_ingested\_at**      | timestamp     | Timestamp when this record was ingested into Dune.    |

## Table Sample

<TableSample tableSchema="midnight" tableName="regular_transactions" />
