Type alias TransactionResponse

TransactionResponse: {
    blockTime?: number | null;
    meta: ConfirmedTransactionMeta | null;
    slot: number;
    transaction: {
        message: Message;
        signatures: string[];
    };
}

A processed transaction from the RPC API

Type declaration

  • Optional blockTime?: number | null

    The unix timestamp of when the transaction was processed

  • meta: ConfirmedTransactionMeta | null

    Metadata produced from the transaction

  • slot: number

    The slot during which the transaction was processed

  • transaction: {
        message: Message;
        signatures: string[];
    }

    The transaction

    • message: Message

      The transaction message

    • signatures: string[]

      The transaction signatures

Generated using TypeDoc