InnerInstruction constructor

const InnerInstruction({
  1. required num index,
  2. required List<MessageInstruction> instructions,
})

The Solana runtime records the cross-program instructions that are invoked during transaction processing and makes these available for greater transparency of what was executed on-chain per transaction instruction.

Implementation

const InnerInstruction({
  required this.index,
  required this.instructions,
});