| BLOCK_NUMBER | NUMBER | BLOCK_NUMBER column |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| VERSION | NUMBER | The version also know as the height of the transactions that have been executed on the Movement blockchain. The first transaction in the blockchain has a version of 0. The version number is incremented by 1 for each transaction that is executed on the blockchain. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. |
| SUCCESS | BOOLEAN | The boolean value indicating whether the transaction was successful or not. |
| TX_TYPE | TEXT | The type of the transaction. Values will be one of “blockmetadatatransaction”,“statecheckpointtransaction”,“user_transaction”. |
| SENDER | TEXT | Sender is the address of the originator account for a transaction. A transaction must be signed by the originator. |
| SIGNATURE | TEXT | A signature is the result of hashing the signing message with the client’s private key. By default Movement uses the Ed25519 scheme to generate the signature of the raw transaction. |
| PAYLOAD | VARIANT | The data that is being carried by a transaction. |
| PAYLOAD_FUNCTION | TEXT | The function that is being called in the transaction payload. |
| CHANGES | VARIANT | The changes that the transaction executed. |
| EVENTS | VARIANT | The events that the transaction executed. |
| GAS_UNIT_PRICE | NUMBER | The cost per unit of gas, determining the transaction fee paid by the sender for each unit of computational resource consumed |
| GAS_USED | NUMBER | The amount of gas used for the transaction |
| MAX_GAS_AMOUNT | NUMBER | The maximum amount of gas allocated for the execution of a transaction |
| EXPIRATION_TIMESTAMP_SECS | NUMBER | The time at which the transaction ceases to valid. |
| VM_STATUS | TEXT | For failed transactions, this fields provides context to why the transaction failed. For successful transactions, this field will be set to Executed successfully. |
| STATE_CHANGE_HASH | TEXT | STATE_CHANGE_HASH column |
| ACCUMULATOR_ROOT_HASH | TEXT | The root hash of a Merkle accumulator. |
| EVENT_ROOT_HASH | TEXT | The root hash for the event. |
| STATE_CHECKPOINT_HASH | TEXT | STATE_CHECKPOINT_HASH column |
| FACT_TRANSACTIONS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |