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

    Type Alias GetAssetResponseList

    Paginated list of assets returned by DAS list endpoints.

    type GetAssetResponseList = {
        cursor?: string;
        grand_total?: number;
        items: GetAssetResponse[];
        last_indexed_slot?: number;
        limit: number;
        nativeBalance?: NativeBalanceInfo;
        page?: number;
        total: number;
    }
    Index

    Properties

    cursor?: string

    Cursor for the next page.

    grand_total?: number

    Total count across all pages (only present if showGrandTotal is set).

    The assets in this page.

    last_indexed_slot?: number

    All on-chain data up to and including this slot is guaranteed to have been indexed.

    limit: number

    The maximum number of assets requested.

    nativeBalance?: NativeBalanceInfo

    Native SOL balance info (only if showNativeBalance is set).

    page?: number

    The current page of results.

    total: number

    The total number of assets found.