Helius SDK - v2.2.2
    Preparing search index...

    Interface EnhancedInstruction

    A parsed instruction within an enhanced transaction.

    interface EnhancedInstruction {
        innerInstructions?: EnhancedInstruction[];
        parsed?: Record<string, unknown>;
        programId: string;
        programName?: string;
    }
    Index

    Properties

    innerInstructions?: EnhancedInstruction[]

    CPI inner instructions.

    parsed?: Record<string, unknown>

    Parsed instruction data (program-specific).

    programId: string

    Program ID that executed this instruction.

    programName?: string

    Human-readable program name (e.g. "SYSTEM_PROGRAM").