interface SolTransaction {
    accountData: SolAccountData[];
    description: string;
    events: Record<string, any>;
    fee: number;
    feePayer: string;
    instructions: SolInstruction[];
    nativeTransfers: SolNativeTransfer[];
    signature: string;
    slot: number;
    source: string;
    timestamp: number;
    tokenTransfers: any[];
    transactionError: any;
    type: string;
}

Properties

accountData: SolAccountData[]
description: string
events: Record<string, any>
fee: number
feePayer: string
instructions: SolInstruction[]
nativeTransfers: SolNativeTransfer[]
signature: string
slot: number
source: string
timestamp: number
tokenTransfers: any[]
transactionError: any
type: string