RawConfirmedTransactionMeta: Omit<ParsedTransactionMeta, "innerInstructions" | "loadedAddresses"> & {
    innerInstructions?: RawInnerInstructionList[] | null;
    loadedAddresses?: RawLoadedAddresses | null;
}

Customisation of the solana ParsedTransactionMeta type by modifying the innerInstructions and readonly loadedAddresses to define the raw RPC response without any processing.

Generated using TypeDoc