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

    Interface CoinWithAmount

    Represents a coin with an amount in integer or floating form, typically used to specify a user’s holding or a transaction amount.

    interface CoinWithAmount {
        amount: number;
        coin: string;
    }
    Index
    amount: number

    The amount of the coin, typically expressed as an integer number of smallest units.

    coin: string

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