Table Columns

Unique Key: hash

Column NameData TypeDescription
hashVARCHARThe hash of the transaction, serving as its unique identifier. This is computed from the transaction data and signing key.
transaction_indexBIGINTThe position of this transaction within the ledger, indicating the order of transactions in the ledger.
transaction_resultVARCHARThe result code indicating whether the transaction succeeded or failed (e.g., “tesSUCCESS”, “tecPATH_DRY”, “tefPAST_SEQ”).
signing_pub_keyVARCHARThe public key used to sign this transaction, in hex format. This identifies the account that authorized the transaction.
accountVARCHARThe address that submitted this transaction. This is the account that pays the transaction fee.
feeVARCHARThe transaction fee in drops (1 XRP = 1,000,000 drops). This is the amount paid to the network for processing the transaction.
sequenceBIGINTThe sequence number of the account at the time this transaction was submitted. Each account’s transactions must have sequential sequence numbers.
transaction_typeVARCHARThe type of transaction (e.g., “Payment”, “OfferCreate”, “TrustSet”, “AccountSet”). Determines what the transaction does.
transaction_signatureVARCHARThe cryptographic signature that proves the transaction was authorized by the account owner.
flagsBIGINTTransaction flags that modify the behavior of the transaction. Different transaction types have different flag meanings.
last_ledger_sequenceVARCHARThe highest ledger sequence number this transaction can be included in. If not included by this ledger, the transaction expires.
transaction_dataVARIANTJSON object containing the transaction-specific fields and their values. The structure varies by transaction type.
ledger_indexBIGINTThe sequence number of the ledger that contains this transaction.
ledger_close_timeTIMESTAMP_NTZ(9)The timestamp when the ledger containing this transaction was closed.
ledger_hashVARCHARThe hash of the ledger header that contains this transaction.
ledger_entry_change_countBIGINTThe number of ledger entries that were modified by this transaction.
_created_atTIMESTAMP_NTZ(9)Timestamp when this record was created in the database.
_updated_atTIMESTAMP_NTZ(9)Timestamp when this record was last updated in the database.