Parameters for fetching assets by creator.

1.0.0

interface GetAssetsByCreatorParams {
    after?: string;
    before?: string;
    creatorAddress: never;
    cursor?: string;
    limit?: number;
    onlyVerified?: boolean;
    page?: number;
    showCollectionMetadata?: boolean;
    showUnverifiedCollections?: boolean;
    sortBy?: {
        sortBy: DasSortBy;
        sortDirection: DasSortDirection;
    };
}

Properties

after?: string
before?: string
creatorAddress: never
cursor?: string
limit?: number
onlyVerified?: boolean
page?: number
showCollectionMetadata?: boolean
showUnverifiedCollections?: boolean
sortBy?: {
    sortBy: DasSortBy;
    sortDirection: DasSortDirection;
}