CompiledInstruction class

Class representing a compiled instruction.

Constructors

CompiledInstruction({required int programIdIndex, required List<int> accounts, required List<int> data})
Constructor to create a CompiledInstruction instance.
CompiledInstruction.fromJson(Map<String, dynamic> json)
factory

Properties

accounts List<int>
Ordered indices into the transaction keys array indicating which accounts to pass to the program.
final
data List<int>
The program input data.
final
hashCode int
The hash code for this object.
no setterinherited
programIdIndex int
Index into the transaction keys array indicating the program account that executes this instruction.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Override the toString method to provide a string representation of the object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited