| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block began. |
| BLOCK_ID | NUMBER | Slot for which a block can be created. |
| TX_ID | TEXT | A unique key that identifies a transaction |
| INDEX | VARIANT | The order in which the transaction was executed in a given slot |
| RECENT_BLOCK_HASH | TEXT | Previous block’s hash value |
| SIGNERS | ARRAY | List of accounts that signed the transaction |
| FEE | NUMBER | Transaction fee (in lamports) |
| SUCCEEDED | BOOLEAN | True when a transaction is successful, otherwise false. |
| ACCOUNT_KEYS | ARRAY | List of accounts that are referenced by pre/post sol/token balances objects |
| PRE_BALANCES | ARRAY | List of pre-transaction balances for different accounts |
| POST_BALANCES | ARRAY | List of post-transaction balances for different accounts |
| PRE_TOKEN_BALANCES | ARRAY | List of pre-transaction token balances for different token accounts |
| POST_TOKEN_BALANCES | ARRAY | List of post-transaction token balances for different token accounts |
| INSTRUCTIONS | ARRAY | Specifies which program it is calling, which accounts it wants to read or modify, and additional data that serves as auxiliary input to the program |
| INNER_INSTRUCTIONS | ARRAY | A call from one smart contract program to another |
| LOG_MESSAGES | ARRAY | Array of log messages written by the program for this transaction |
| ADDRESS_TABLE_LOOKUPS | ARRAY | Array of lookup keys used associate additional account keys with the transactions. Valid for version > 0 transactions. |
| UNITS_CONSUMED | NUMBER | The number of compute units consumed by the program. |
| UNITS_LIMIT | NUMBER | The max number of compute units that can be consumed by the program. |
| TX_SIZE | NUMBER | The size of the transaction in bytes. |
| VERSION | TEXT | Transaction version, legacy version is listed as NULL or ‘legacy’ |
| FACT_TRANSACTIONS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which the record was initially created and inserted into this table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which this record was last modified by an internal process. |