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

# ton.transactions

> TON transaction records — account, fees, compute phase, and action results.

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 `ton.transactions` table records all transactions processed on the TON network, including transfers and smart contract interactions. This table is partitioned by block\_date.

## Column Descriptions

| Column                             | Type      | Description                                                        |
| ---------------------------------- | --------- | ------------------------------------------------------------------ |
| block\_time                        | timestamp | Timestamp of when the block containing the transaction was created |
| block\_date                        | date      | Date of when the block containing the transaction was created      |
| account                            | string    | Account address involved in the transaction                        |
| hash                               | string    | Transaction hash                                                   |
| lt                                 | bigint    | Logical time of the transaction                                    |
| block\_workchain                   | int       | Workchain identifier of the block                                  |
| block\_shard                       | bigint    | Shard identifier of the block                                      |
| block\_seqno                       | int       | Sequence number of the block                                       |
| mc\_block\_seqno                   | int       | Masterchain block sequence number                                  |
| trace\_id                          | string    | Trace identifier for transaction tracking                          |
| prev\_trans\_hash                  | string    | Hash of the previous transaction                                   |
| prev\_trans\_lt                    | bigint    | Logical time of the previous transaction                           |
| now                                | int       | Unix timestamp of the transaction                                  |
| orig\_status                       | string    | Original status of the transaction                                 |
| end\_status                        | string    | Final status of the transaction                                    |
| total\_fees                        | bigint    | Total fees paid for the transaction                                |
| account\_state\_hash\_before       | string    | Hash of account state before transaction                           |
| account\_state\_hash\_after        | string    | Hash of account state after transaction                            |
| account\_state\_code\_hash\_before | string    | Hash of account state code before transaction                      |
| account\_state\_code\_hash\_after  | string    | Hash of account state code after transaction                       |
| account\_state\_balance\_before    | bigint    | Account balance before transaction                                 |
| account\_state\_balance\_after     | bigint    | Account balance after transaction                                  |
| descr                              | string    | Description of the transaction                                     |
| aborted                            | boolean   | Whether the transaction was aborted                                |
| destroyed                          | boolean   | Whether the account was destroyed                                  |
| credit\_first                      | boolean   | Whether credit was processed first                                 |
| is\_tock                           | boolean   | Whether the transaction is a tock                                  |
| installed                          | boolean   | Whether contract was installed                                     |
| storage\_fees\_collected           | bigint    | Storage fees collected                                             |
| storage\_fees\_due                 | bigint    | Storage fees due                                                   |
| storage\_status\_change            | string    | Change in storage status                                           |
| credit\_due\_fees\_collected       | bigint    | Credit fees collected                                              |
| credit                             | bigint    | Credit amount                                                      |
| compute\_skipped                   | boolean   | Whether computation was skipped                                    |
| skipped\_reason                    | string    | Reason for skipping computation                                    |
| compute\_success                   | boolean   | Whether computation was successful                                 |
| compute\_msg\_state\_used          | boolean   | Whether message state was used in computation                      |
| compute\_account\_activated        | boolean   | Whether account was activated during computation                   |
| compute\_gas\_fees                 | bigint    | Gas fees for computation                                           |
| compute\_gas\_used                 | bigint    | Amount of gas used in computation                                  |
| compute\_gas\_limit                | bigint    | Gas limit for computation                                          |
| compute\_gas\_credit               | bigint    | Gas credit for computation                                         |
| compute\_mode                      | int       | Computation mode                                                   |
| compute\_exit\_code                | int       | Exit code of computation                                           |
| compute\_exit\_arg                 | int       | Exit argument of computation                                       |
| compute\_vm\_steps                 | bigint    | Number of VM steps in computation                                  |
| compute\_vm\_init\_state\_hash     | string    | Hash of VM initial state                                           |
| compute\_vm\_final\_state\_hash    | string    | Hash of VM final state                                             |
| action\_success                    | boolean   | Whether action was successful                                      |
| action\_valid                      | boolean   | Whether action was valid                                           |
| action\_no\_funds                  | boolean   | Whether action failed due to insufficient funds                    |
| action\_status\_change             | string    | Change in action status                                            |
| action\_total\_fwd\_fees           | bigint    | Total forward fees for actions                                     |
| action\_total\_action\_fees        | bigint    | Total fees for actions                                             |
| action\_result\_code               | int       | Result code of action                                              |
| action\_result\_arg                | int       | Result argument of action                                          |
| action\_tot\_actions               | int       | Total number of actions                                            |
| action\_spec\_actions              | int       | Number of special actions                                          |
| action\_skipped\_actions           | int       | Number of skipped actions                                          |
| action\_msgs\_created              | int       | Number of messages created by action                               |
| action\_action\_list\_hash         | string    | Hash of action list                                                |
| action\_tot\_msg\_size\_cells      | bigint    | Total message size in cells                                        |
| action\_tot\_msg\_size\_bits       | bigint    | Total message size in bits                                         |
| bounce                             | string    | Whether the transaction bounced                                    |
| bounce\_msg\_size\_cells           | bigint    | Bounce message size in cells                                       |
| bounce\_msg\_size\_bits            | bigint    | Bounce message size in bits                                        |
| bounce\_req\_fwd\_fees             | bigint    | Required forward fees for bounce                                   |
| bounce\_msg\_fees                  | bigint    | Message fees for bounce                                            |
| bounce\_fwd\_fees                  | bigint    | Forward fees for bounce                                            |
| split\_info\_cur\_shard\_pfx\_len  | int       | Current shard prefix length for split                              |
| split\_info\_acc\_split\_depth     | int       | Account split depth                                                |
| split\_info\_this\_addr            | string    | This address in split                                              |
| split\_info\_sibling\_addr         | string    | Sibling address in split                                           |
| updated\_at                        | timestamp | Last time the record was updated                                   |
| ingested\_at                       | timestamp | Time when the record was ingested                                  |

## Table Sample

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