| hash | VARCHAR(16777216) | The hash of the transaction |
| transaction_index | NUMBER(38,0) | Index of the transaction in the block |
| version | NUMBER(38,0) | Schema version discriminator. |
| type | VARCHAR(16777216) | The type of the change |
| sender | VARCHAR(16777216) | The account from which the transaction was sent |
| sequence_number | NUMBER(38,0) | The sequence of a transaction sent by the specific sender |
| success | BOOLEAN | Boolean flag indicating whether the transaction executed successfully. True = succeeded, false = failed or reverted. |
| payload | VARIANT | The data that is being carried by a transaction. |
| gas_unit_price | NUMBER(38,0) | The cost per unit of gas, determining the transaction fee paid by the sender for each unit of computational resource consumed |
| gas_used | NUMBER(38,0) | Actual number of gas units consumed by this transaction or trace. |
| max_gas_amount | NUMBER(38,0) | The maximum amount of gas allocated for the execution of a transaction |
| vm_status | VARCHAR(16777216) | Execution status from the Aptos Move VM (e.g., Executed, MoveAbort with abort code). |
| signature | VARIANT | The BLS signature that aggregates the signatures of individual validators. |
| expiration_timestamp_secs | NUMBER(38,0) | The timestamp indicating the expiration period of a transaction, specifying the time until which the transaction can be included in a block |
| events_count | NUMBER(38,0) | Number of events emitted by this transaction block. |
| changes_count | NUMBER(38,0) | Number of state changes (write set entries) produced by this Aptos transaction. |
| block_hash | VARCHAR(16777216) | Hash of the block containing the transaction |
| block_height | NUMBER(38,0) | Block height of the block containing the transaction |
| block_timestamp | TIMESTAMP_NTZ(9) | Block transaction of the block containing the transaction |
| state_change_hash | VARCHAR(16777216) | Hash of all state changes produced by this Aptos transaction. |
| accumulator_root_hash | VARCHAR(16777216) | Root hash of the Aptos transaction accumulator, committing all transactions up to this version. |
| event_root_hash | VARCHAR(16777216) | Root hash of all events emitted in this Aptos transaction. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of the entry creation |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of the entry update |