| block_timestamp | TIMESTAMP_NTZ(9) | The time when the block that contains this transaction was included on the blockchain. |
| hash | VARCHAR(66) | Unique identifier of a transaction. |
| nonce | VARCHAR(16777216) | The transaction nonce, unique to the wallet |
| transaction_index | NUMBER(38,0) | The position of this transaction in the block that it belongs to. The first transaction has index 0. |
| from_address | VARCHAR(34) | The address of the sending party of this transaction. |
| from_address_evm | VARCHAR(42) | From address EVM of the transaction. |
| from_address_hex | VARCHAR(42) | Hex-encoded sender address (Tron base58 address decoded to hex). |
| to_address | VARCHAR(34) | The address of the receiving party of this transaction (could be a contract address). |
| to_address_evm | VARCHAR(42) | EVM-compatible 20-byte address derived from the destination, used on chains with dual addressing schemes. |
| to_address_hex | VARCHAR(42) | Hex-encoded recipient address (Tron base58 address decoded to hex). |
| value | VARCHAR(16777216) | The amount of ether sent in this transaction, in wei. |
| gas | NUMBER(38,0) | The maximum amount of gas allocated for this transaction in wei. |
| gas_price | NUMBER(38,0) | Cost per unit of gas specified by the transaction in wei. The higher the gas price, the higher chance of getting included in a block. |
| input | VARCHAR(16777216) | The data sent along with the transaction. |
| block_number | NUMBER(38,0) | The length of the chain, in blocks. |
| block_hash | VARCHAR(66) | Unique identifier of the block that includes this transaction. |
| max_fee_per_gas | NUMBER(38,0) | The maximum fee per gas that the transaction sender is willing to pay for this transaction (introduced in EIP1559) |
| max_priority_fee_per_gas | NUMBER(38,0) | The maximum fee per gas the transaction sender is willing to give to validators (Proof of Stake) or miners (Proof of Work) to incentivize them to include their transaction (introduced in EIP1559) |
| receipt_cumulative_gas_used | NUMBER(38,0) | The total amount of gas used when this transaction was executed in the block. |
| receipt_gas_used | NUMBER(38,0) | The total amount of gas consumed by a transaction as recorded in its receipt |
| receipt_effective_gas_price | NUMBER(38,0) | The sum of the base fee and tip paid per unit of gas. |
| receipt_contract_address | VARCHAR(34) | The contract address created, if the transaction was a contract creation, otherwise null. |
| receipt_contract_address_evm | VARCHAR(42) | Receipt contract address EVM of the transaction. |
| receipt_contract_address_hex | VARCHAR(42) | Receipt contract address hex of the transaction. |
| receipt_root | VARCHAR(66) | Transaction stateroot (pre Byzantium). |
| receipt_status | NUMBER(38,0) | Success status of the transaction. Either 1 (success) or 0 (failure). |
| log_count | NUMBER(38,0) | Number of event logs emitted in the transaction. |
| transaction_type | VARCHAR(16777216) | The integer of the transaction type, 0x0 for legacy transactions, 0x1 for access list types, 0x2 for dynamic fees. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of the entry creation. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of the entry update. |