xrpl
    Preparing search index...

    Interface TxResponse<T>

    Response expected from a TxRequest.

    interface TxResponse<T extends BaseTransaction = Transaction> {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: BaseTxResult<2, T> & { tx_json: T };
        searched_all?: boolean;
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: BaseTxResult<2, T> & { tx_json: T }
    searched_all?: boolean

    If true, the server was able to search all of the specified ledger versions, and the transaction was in none of them. If false, the server did not have all of the specified ledger versions available, so it is not sure. If one of them might contain the transaction.

    status?: string
    type: string
    warning?: "load"
    warnings?: ResponseWarning[]