Signature information returned by getSignaturesForAddress.

1.0.0

interface SignatureInfo {
    blockTime: null | UnixTimestamp;
    confirmationStatus: null | Commitment;
    err: unknown;
    memo: null | string;
    signature: never;
    slot: Slot;
}

Properties

blockTime: null | UnixTimestamp

Unix timestamp of the block.

confirmationStatus: null | Commitment

Confirmation status at query time.

err: unknown

Error if the transaction failed.

memo: null | string

Transaction memo (if present).

signature: never

Transaction signature (base58).

slot: Slot

Slot of the transaction.