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

    Interface GetSignaturesForAssetResponse

    Response from getSignaturesForAsset.

    interface GetSignaturesForAssetResponse {
        after?: string;
        before?: string;
        items: string[][];
        last_indexed_slot?: number;
        limit: number;
        page?: number;
        total: number;
    }
    Index

    Properties

    after?: string
    before?: string
    items: string[][]

    Array of [signature, operationType] tuples representing each transaction that affected this asset.

    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 transaction signatures requested per page.

    page?: number

    The current page of results.

    total: number

    The total number of transactions found in this asset's history.