gill

ParsedAddressLookupTableInstruction

type ParsedAddressLookupTableInstruction<TProgram> = 
  | {
  instructionType: CreateLookupTable;
} & ParsedCreateLookupTableInstruction<TProgram>
  | {
  instructionType: FreezeLookupTable;
} & ParsedFreezeLookupTableInstruction<TProgram>
  | {
  instructionType: ExtendLookupTable;
} & ParsedExtendLookupTableInstruction<TProgram>
  | {
  instructionType: DeactivateLookupTable;
} & ParsedDeactivateLookupTableInstruction<TProgram>
  | {
  instructionType: CloseLookupTable;
} & ParsedCloseLookupTableInstruction<TProgram>;

Type Parameters

Type ParameterDefault type
TProgram extends string"AddressLookupTab1e1111111111111111111111111"

On this page