| transaction_hash | hex string | The hash that identifies the transaction |
| block_hash | hex string, null | The block hash that the transaction is in |
| block_number | integer, null | The block number that the transaction is in |
| transaction_index | integer | |
| transaction_status | REVERTED, PENDING , ACCEPTED_ON_L2, ACCEPTED_ON_L1 | Where the transaction is in the finality lifecycle, will always be REVERTED if failed |
| transaction_finality_status | ACCEPTED_ON_L2, ACCEPTED_ON_L1 | Where the transaction is in the finality lifecycle |
| transaction_execution_status | REVERTED, SUCCEEDED | Indicates the status of the transaction execution |
| transaction_type | INVOKE_FUNCTION, DECLARE, DEPLOY, L1_HANDLER, DEPLOY_ACCOUNT | Type of Transaction |
| version | integer | Version of Transaction |
| signature | hex string array, null | The signature that validates the transaction |
| max_fee | integer, null | The maximum gas fee the transaction can pay, units in eth wei |
| actual_fee | integer, null | The actual gas fee the transaction paid, units in eth wei |
| nonce | integer, null | The contract nonce of the transaction |
| contract_address | hex string, null | The contract address that this transaction was executed from |
| entry_point_selector | hex string, null | The function called in the transaction |
| entry_point_type | EXTERNAL, L1_HANDLER, null | Type of entry point executed |
| calldata | hex string array, null | The input data of the functions in the transaction |
| class_hash | hex string, null | The class hash that this transaction was executed from |
| sender_address | hex string, null | The address that sent the transaction |
| constructor_calldata | hex string array, null | The input data of the constructor in transaction |
| contract_address_salt | integer, null | |
| timestamp | integer | Unix timestamp in seconds for when the transaction was executed |
| number_of_events | integer | Number of events in the transaction |
| revert_error | string, null | Error message if the transaction reverted |
| account_calls | List of Call Objects | Account calls found in this transaction |