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

    Type Alias GetAssetBatchRequest

    Request parameters for getAssetBatch — fetch multiple assets by mint addresses.

    type GetAssetBatchRequest = {
        ids: string[];
        options?: {
            showCollectionMetadata?: boolean;
            showFungible?: boolean;
            showInscription?: boolean;
            showUnverifiedCollections?: boolean;
        };
    }
    Index

    Properties

    Properties

    ids: string[]

    Array of asset mint addresses.

    options?: {
        showCollectionMetadata?: boolean;
        showFungible?: boolean;
        showInscription?: boolean;
        showUnverifiedCollections?: boolean;
    }

    Type Declaration

    • OptionalshowCollectionMetadata?: boolean

      Displays metadata for the collection. Defaults to false.

    • OptionalshowFungible?: boolean

      Displays fungible tokens held by the owner. Defaults to false.

    • OptionalshowInscription?: boolean

      Displays inscription details of assets inscribed on-chain. Defaults to false.

    • OptionalshowUnverifiedCollections?: boolean

      Displays grouping information for unverified collections instead of skipping them. Defaults to false.