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

    Interface SignatureInfoWithError

    A signature info entry that may include a transaction error.

    interface SignatureInfoWithError {
        blockTime: number;
        error?: string | null;
        signature: string;
        slot: number;
    }
    Index

    Properties

    blockTime: number

    Unix timestamp in seconds of when the transaction was processed.

    error?: string | null

    Error message if the transaction failed; null for successful transactions.

    signature: string

    Base58-encoded transaction signature.

    slot: number

    Slot number in which the transaction was confirmed.