@lightprotocol/stateless.js - v0.23.1
    Preparing search index...

    Interface SignaturesForAddressInterfaceResult

    Result of getSignaturesForAddressInterface / getSignaturesForOwnerInterface.

    Design rationale:

    • signatures: Unified view, merged and deduplicated, sorted by slot desc
    • solana / compressed: Raw responses preserved for clients that need source-specific data
    • Allows callers to use the unified view OR drill into specific sources
    interface SignaturesForAddressInterfaceResult {
        signatures: UnifiedSignatureInfo[];
        solana: ConfirmedSignatureInfo[];
        compressed: SignatureWithMetadata[];
    }
    Index

    Properties

    signatures: UnifiedSignatureInfo[]

    Merged signatures from all sources, sorted by slot (descending)

    solana: ConfirmedSignatureInfo[]

    Raw signatures from Solana RPC

    compressed: SignatureWithMetadata[]

    Raw signatures from compression indexer