xrpl
    Preparing search index...

    Interface NoRippleCheckResponse

    Response expected by a NoRippleCheckRequest.

    interface NoRippleCheckResponse {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: {
            ledger_current_index: number;
            problems: string[];
            transactions: (Transaction & ResponseOnlyTxInfo)[];
        };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: {
        ledger_current_index: number;
        problems: string[];
        transactions: (Transaction & ResponseOnlyTxInfo)[];
    }

    Type declaration

    • ledger_current_index: number

      The ledger index of the ledger used to calculate these results.

    • problems: string[]

      Array of strings with human-readable descriptions of the problems. This includes up to one entry if the account's Default Ripple setting is not as recommended, plus up to limit entries for trust lines whose no ripple setting is not as recommended.

    • transactions: (Transaction & ResponseOnlyTxInfo)[]

      If the request specified transactions as true, this is an array of JSON objects, each of which is the JSON form of a transaction that should fix one of the described problems. The length of this array is the same as the problems array, and each entry is intended to fix the problem described at the same index into that array.

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