Interface ResponseOnlyTxInfo

This information is added to Transactions in request responses, but is not part of the canonical Transaction information on ledger. These fields are denoted with lowercase letters to indicate this in the rippled responses.

interface ResponseOnlyTxInfo {
    date?: number;
    hash?: string;
    inLedger?: number;
    ledger_hash?: string;
    ledger_index?: number;
}

Properties

date?: number

The date/time when this transaction was included in a validated ledger.

hash?: string

An identifying hash value unique to this transaction, as a hex string.

inLedger?: number

Alias for ledger_index.

ledger_hash?: string

The hash of the ledger included this transaction.

ledger_index?: number

The sequence number of the ledger that included this transaction.