Interface GetAddressListsPayload

interface GetAddressListsPayload {
    listsToFetch: {
        fetchPrivateParams?: boolean;
        listId: string;
        viewsToFetch?: {
            bookmark: string;
            viewId: string;
            viewType: "listActivity";
        }[];
    }[];
}

Properties

Properties

listsToFetch: {
    fetchPrivateParams?: boolean;
    listId: string;
    viewsToFetch?: {
        bookmark: string;
        viewId: string;
        viewType: "listActivity";
    }[];
}[]

The lists and accompanyin details to fetch. Supports on-chain, off-chain, and reserved lists.

Type declaration

  • Optional fetchPrivateParams?: boolean

    Certain views and details are private. If you are the creator of the list, you can fetch these details. By default, we do not fetch them.

  • listId: string
  • Optional viewsToFetch?: {
        bookmark: string;
        viewId: string;
        viewType: "listActivity";
    }[]