Table description

Contains transaction details, linking to multiple operations within a transaction.

Column Descriptions

ColumnDescriptionType
closed_at_dateThe date when the transaction was closed.date
idThe unique identifier for the transaction.bigint
transaction_hashThe hash of the transaction, in binary format.varbinary
ledger_sequenceThe sequence number of the ledger in which the transaction is included.bigint
accountThe account address that originated the transaction.varchar
account_sequenceThe source account’s sequence number that this transaction consumed.bigint
max_feeThe maximum fee that the account was willing to pay for the transaction.bigint
operation_countThe number of operations contained within this transaction.bigint
created_atThe timestamp when the transaction was created.timestamp(3) with time zone
memo_typeThe type of memo attached to the transaction (e.g., text, id, hash).varchar
memoThe optional unstructured memo data attached to the transaction.varchar
time_boundsThe optional UNIX timestamp of the lower and upper bounds for when the transaction will be valid.varchar
successfulIndicates if the transaction succeeded.boolean
fee_chargedThe fee charged for executing the transaction.bigint
inner_transaction_hashThe hash of a transaction wrapped with its signatures for fee-bump transactions.varbinary
fee_accountThe account that paid for the transaction fees, which may differ from the originating account.varchar
new_max_feeThe maximum fee that the fee-payer is willing to pay for the transaction’s fees.bigint
account_muxedThe virtual account address under a traditional Stellar account (multiplexed account).varchar
fee_account_muxedThe virtual address of the fee-paying account if it is a multiplexed account.varchar
ledger_boundsOptional restrictions on the ledger range within which the transaction is valid.varchar
min_account_sequenceThe minimum account sequence number required for this transaction to be valid.bigint
min_account_sequence_ageThe minimum age (in seconds) of the sequence number.bigint
min_account_sequence_ledger_gapThe minimum number of ledgers between this transaction and the account’s last transaction.bigint
tx_envelopeThe raw XDR of the transaction that was submitted.varchar
tx_resultThe raw XDR of the transaction result after execution.varchar
tx_metaThe raw XDR of the ledger state changes based on the transaction.varchar
tx_fee_metaThe raw XDR of the fee changes associated with the transaction.varchar
extra_signersAny additional signers attached to the transaction (array of addresses).array(varchar)
resource_feeThe resource fee charged for executing the transaction.bigint
soroban_resources_instructionsThe number of instructions used in Soroban smart contracts during the transaction.bigint
soroban_resources_read_bytesThe number of bytes read during Soroban smart contract execution.bigint
soroban_resources_write_bytesThe number of bytes written during Soroban smart contract execution.bigint
closed_atThe timestamp when the transaction was closed.timestamp(3) with time zone
transaction_result_codeThe result code that includes error codes for failed transactions.varchar
inclusion_fee_bidThe fee bid by the account to include the transaction in the ledger.bigint
inclusion_fee_chargedThe actual fee charged for the transaction to be included in the ledger.bigint
resource_fee_refundThe refunded portion of the resource fee.bigint
non_refundable_resource_fee_chargedThe portion of the resource fee that is non-refundable.bigint
refundable_resource_fee_chargedThe portion of the resource fee that can be refunded.bigint
rent_fee_chargedThe fee charged for rent of contract storage or data resources.bigint
tx_signersThe array of signers involved in signing the transaction.array(varchar)
refundable_feeThe fee that can be refunded to the account based on transaction execution.bigint
updated_atThe time when the transaction record was last updated.timestamp(3) with time zone
ingested_atThe time when the transaction data was ingested into the system.timestamp(3) with time zone

Table Sample