Interface LedgerQueueData

interface LedgerQueueData {
    account: string;
    auth_change?: boolean;
    fee?: string;
    fee_level?: string;
    last_result?: string;
    max_spend_drops?: string;
    preflight_result: string;
    retries_remaining: number;
    tx:
        | LedgerModifiedOfferCreateTransaction
        | TransactionAndMetadata<Transaction>
        | { tx_blob: string };
}

Properties

account: string
auth_change?: boolean
fee?: string
fee_level?: string
last_result?: string
max_spend_drops?: string
preflight_result: string
retries_remaining: number
tx:
    | LedgerModifiedOfferCreateTransaction
    | TransactionAndMetadata<Transaction>
    | { tx_blob: string }