Return all Coin objects owned by an address.

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

Properties

Properties

cursor?: null | string

optional paging cursor

limit?: null | number

maximum number of items per page

owner: string

the owner's Sui address