Type alias PartiallyDecodedInstruction

PartiallyDecodedInstruction: {
    accounts: PublicKey[];
    data: string;
    programId: PublicKey;
}

A partially decoded transaction instruction

Type declaration

  • accounts: PublicKey[]

    Public keys of accounts passed to this instruction

  • data: string

    Raw base-58 instruction data

  • programId: PublicKey

    Program id called by this instruction

Generated using TypeDoc