Helius SDK - v2.2.2
    Preparing search index...

    Type Alias AssetsByCreatorRequest

    Request parameters for getAssetsByCreator.

    type AssetsByCreatorRequest = {
        after?: string;
        before?: string;
        creatorAddress: string;
        limit?: number;
        onlyVerified?: boolean;
        options?: DisplayOptions;
        page?: number;
        sortBy?: AssetSortingRequest;
    }
    Index

    Properties

    after?: string

    The cursor for paginating forwards through the assets.

    before?: string

    The cursor for paginating backwards through the assets.

    creatorAddress: string

    The Solana wallet address of the creator to retrieve all digital assets for.

    limit?: number

    The maximum number of assets to return (max 1000).

    onlyVerified?: boolean

    Only return assets where the creator is verified.

    options?: DisplayOptions

    Display options controlling what extra data is returned.

    page?: number

    The page of results to return (1-indexed).

    The sorting options for the response.