InnerInstruction constructor
const
InnerInstruction({
- required num index,
- 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,
});