Fireblocks XRP SDK - v1.0.0
    Preparing search index...

    Interface TrustSetOpts

    Options for setting or modifying a trust line on the XRPL.

    • limitAmount: the IssuedCurrencyAmount defining the counterparty and currency (e.g. { currency: "USD", issuer: "rCounterpartyAddress...", value: "100" }). The SDK’s own classicAddress is the Account executing the TrustSet.
    • flags: optional ITrustSetFlags (e.g. tfSetNoRipple, tfClearFreeze, tfSetfAuth, etc.).
    • qualityIn / qualityOut: optional integer >0 (1..2^32-1).
    • memos, destinationTag, invoiceId: optional for on‐chain tagging.
    interface TrustSetOpts {
        flags?: ITrustSetFlags;
        limitAmount: IssuedCurrencyAmount;
        memos?: Memo[];
        qualityIn?: number;
        qualityOut?: number;
    }
    Index

    Properties

    flags?: ITrustSetFlags

    Optional flags: e.g. tfSetNoRipple, tfSetFreeze, tfSetfAuth, etc.

    limitAmount: IssuedCurrencyAmount

    How much of the IOU you’re willing to trust (or modify).

    memos?: Memo[]

    Optional memos to attach.

    qualityIn?: number

    Optional integer 1..2^32-1.

    qualityOut?: number

    Optional integer 1..2^32-1.