RawPartiallyDecodedInstruction: Omit<PartiallyDecodedInstruction, "programId" | "accounts"> & {
    accounts: string[];
    programId: string;
}

Customisation of the solana PartiallyDecodedInstruction type by modifying the types of accounts array and the program address to strings, it defines the raw RPC response without any processing.

Generated using TypeDoc