Parameters for fetching assets by group (e.g. collection).

1.0.0

interface GetAssetsByGroupParams {
    after?: string;
    before?: string;
    cursor?: string;
    groupKey: string;
    groupValue: string;
    limit?: number;
    page?: number;
    showCollectionMetadata?: boolean;
    showFungible?: boolean;
    showUnverifiedCollections?: boolean;
    sortBy?: {
        sortBy: DasSortBy;
        sortDirection: DasSortDirection;
    };
}

Properties

after?: string
before?: string
cursor?: string
groupKey: string
groupValue: string
limit?: number
page?: number
showCollectionMetadata?: boolean
showFungible?: boolean
showUnverifiedCollections?: boolean
sortBy?: {
    sortBy: DasSortBy;
    sortDirection: DasSortDirection;
}