RawParsedMessage: Omit<ParsedMessage, "accountKeys" | "instructions" | "addressTableLookups"> & {
    accountKeys: RawMessageAccount[];
    addressTableLookups?: RawParsedAddressTableLookup[] | null;
    instructions: SolanaRawInstruction[];
}

Customisation of the solana ParsedMessage type by modifying accountKeys, instructions and addressTableLookups properties to define the raw RPC response without any processing.

Generated using TypeDoc