xrpl
    Preparing search index...

    Interface NFTHistoryTransaction

    interface NFTHistoryTransaction {
        ledger_index: number;
        meta: string | TransactionMetadata;
        tx?: Transaction & ResponseOnlyTxInfo;
        tx_blob?: string;
        validated: boolean;
    }
    Index

    Properties

    ledger_index: number

    The ledger index of the ledger version that included this transaction.

    meta: string | TransactionMetadata

    If binary is True, then this is a hex string of the transaction metadata. Otherwise, the transaction metadata is included in JSON format.

    tx?: Transaction & ResponseOnlyTxInfo

    JSON object defining the transaction.

    tx_blob?: string

    Unique hashed String representing the transaction.

    validated: boolean

    Whether or not the transaction is included in a validated ledger. Any transaction not yet in a validated ledger is subject to change.