A single decoded instruction.

1.0.0

interface ParsedInstruction {
    accounts: never[];
    dataBase64: string;
    dataHex: string;
    index: number;
    isInner: boolean;
    parentIndex?: number;
    programId: never;
    programName?: string;
}

Properties

accounts: never[]

Account pubkeys involved (base58).

dataBase64: string

Instruction data (base64).

dataHex: string

Raw instruction data (hex).

index: number

Instruction index within the transaction.

isInner: boolean

Whether this is an inner (CPI) instruction.

parentIndex?: number

Parent instruction index (for inner instructions).

programId: never

Program ID (base58).

programName?: string

Readable program name if recognized.