@solana/web3.js
    Preparing search index...

    Type Alias PartiallyDecodedInstruction

    A partially decoded transaction instruction

    type PartiallyDecodedInstruction = {
        accounts: PublicKey[];
        data: string;
        programId: PublicKey;
    }
    Index
    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