aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface CoinWithAmountOrUndefined

    Represents a coin with an amount that can be undefined, typically for optional or deferred usage scenarios.

    interface CoinWithAmountOrUndefined {
        amount: number | undefined;
        coin: string;
    }
    Index
    amount: number | undefined

    The amount of the coin, which can be undefined.

    coin: string

    The coin type, e.g. "0x2::sui::SUI".