Return all Coin<coin_type> objects owned by an address.

interface GetCoinsParams {
    coinType?: null | string;
    cursor?: null | string;
    limit?: null | number;
    owner: string;
}

Properties

coinType?: null | string

optional type name for the coin (e.g., 0x168da5bf1f48dafc111b0a488fa454aca95e0b5e::usdc::USDC), default to 0x2::sui::SUI if not specified.

cursor?: null | string

optional paging cursor

limit?: null | number

maximum number of items per page

owner: string

the owner's Sui address