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

# Transactions

> Initia blockchain transactions data

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 contains data about transactions in the Initia blockchain, including transaction details, gas usage, and execution status.

## Column Descriptions

| Column name            | Data Type                   | Description                                             |
| ---------------------- | --------------------------- | ------------------------------------------------------- |
| **block\_height**      | bigint                      | The height of the block where the transaction occurred. |
| **chain\_id**          | varchar                     | The ID of the chain where the transaction occurred.     |
| **tx\_id**             | varchar                     | The unique ID of the transaction.                       |
| **tx\_info**           | varchar                     | Information related to the transaction.                 |
| **tx\_log\_message**   | varchar                     | The log message associated with the transaction.        |
| **memo**               | varchar                     | A memo associated with the transaction.                 |
| **fee**                | varchar                     | The fee associated with the transaction.                |
| **tx\_code**           | bigint                      | The result code of the transaction.                     |
| **tx\_index**          | bigint                      | The index of the transaction within the block.          |
| **gas\_used**          | bigint                      | The amount of gas used by the transaction.              |
| **gas\_wanted**        | bigint                      | The amount of gas requested by the transaction.         |
| **schema\_version**    | bigint                      | The schema version for the transaction data.            |
| **fee\_coins**         | varchar                     | The coins used to pay the transaction fee.              |
| **fee\_granter**       | varchar                     | The address granting the fee for the transaction.       |
| **fee\_payer**         | varchar                     | The address paying the fee for the transaction.         |
| **gas\_limit**         | bigint                      | The gas limit set for the transaction.                  |
| **single\_sign\_mode** | bigint                      | The signing mode for single-signature transactions.     |
| **multi\_sign\_json**  | varchar                     | JSON structure for multi-signature transactions.        |
| **timeout\_height**    | varchar                     | The timeout height set for the transaction.             |
| **updated\_at**        | timestamp(3) with time zone | Timestamp of when the record was last updated.          |
| **ingested\_at**       | timestamp(3) with time zone | Timestamp of when the record was ingested into Dune.    |

## Table Sample

<TableSample tableSchema="initia" tableName="transactions" />
