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

    Interface GetSignaturesForAssetRequest

    Request parameters for getSignaturesForAsset.

    This method is specifically designed for compressed NFTs (cNFTs). For regular NFTs, use getSignaturesForAddress instead — the standard method does not work with compressed NFTs.

    interface GetSignaturesForAssetRequest {
        after?: string;
        before?: string;
        id: string;
        limit?: number;
        page: number;
    }
    Index

    Properties

    after?: string

    The cursor for paginating forwards through the signatures.

    before?: string

    The cursor for paginating backwards through the signatures.

    id: string

    The unique identifier (mint address) of the compressed NFT to retrieve transaction history for.

    limit?: number

    The maximum number of transaction signatures to return per request.

    page: number

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