Documentation

    Type Alias GetOwnedObjectsParams

    GetOwnedObjectsParams: {
        cursor?: string | null;
        limit?: number | null;
        owner: string;
        signal?: AbortSignal;
    } & SuiObjectResponseQuery

    Return the list of objects owned by an address. Note that if the address owns more than QUERY_MAX_RESULT_LIMIT objects, the pagination is not accurate, because previous page may have been updated when the next page is fetched. Please use suix_queryObjects if this is a concern.

    Type declaration

    • Optionalcursor?: string | null

      An optional paging cursor. If provided, the query will start from the next item after the specified cursor. Default to start from the first item if not specified.

    • Optionallimit?: number | null

      Max number of items returned per page, default to [QUERY_MAX_RESULT_LIMIT] if not specified.

    • owner: string

      the owner's Sui address

    • Optionalsignal?: AbortSignal
    MMNEPVFCICPMFPCPTTAAATR