gill

ParsedComputeBudgetInstruction

type ParsedComputeBudgetInstruction<TProgram> = 
  | {
  instructionType: RequestUnits;
} & ParsedRequestUnitsInstruction<TProgram>
  | {
  instructionType: RequestHeapFrame;
} & ParsedRequestHeapFrameInstruction<TProgram>
  | {
  instructionType: SetComputeUnitLimit;
} & ParsedSetComputeUnitLimitInstruction<TProgram>
  | {
  instructionType: SetComputeUnitPrice;
} & ParsedSetComputeUnitPriceInstruction<TProgram>
  | {
  instructionType: SetLoadedAccountsDataSizeLimit;
} & ParsedSetLoadedAccountsDataSizeLimitInstruction<TProgram>;

Type Parameters

Type ParameterDefault type
TProgram extends string"ComputeBudget111111111111111111111111111111"

On this page