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

    Interface OfferCreateOpts

    OfferCreate (DEX): • sellAmount, buyAmount are each “Amount” (drops or IOU). • optional expiration, flags, memos.

    interface OfferCreateOpts {
        buyAmount: Amount;
        expiration?: number;
        flags?: IOfferCreateFlags;
        memos?: Memo[];
        sellAmount: Amount;
    }
    Index

    Properties

    buyAmount: Amount
    expiration?: number
    flags?: IOfferCreateFlags
    memos?: Memo[]
    sellAmount: Amount