@whetstone-research/doppler-sdk 1.0.37 → 1.0.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3798,7 +3798,15 @@ declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE = 6014;
3798
3798
  declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE = 6015;
3799
3799
  /** CosignerRequired: Cosigner approval is required */
3800
3800
  declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED = 6016;
3801
- type DopplerLaunchHookV2Error = typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT;
3801
+ /** InvalidCosignGateDisableBatch: Cosign gate disable batch must contain between 1 and 8 launches */
3802
+ declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_DISABLE_BATCH = 6017;
3803
+ /** DuplicateLaunch: Cosign gate disable batch contains a duplicate launch */
3804
+ declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__DUPLICATE_LAUNCH = 6018;
3805
+ /** InvalidCosignGateControl: Invalid cosign gate control account */
3806
+ declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_CONTROL = 6019;
3807
+ /** SelectiveCosignGateDisableUnsupported: Launch does not support selective cosign gate disablement */
3808
+ declare const DOPPLER_LAUNCH_HOOK_V2_ERROR__SELECTIVE_COSIGN_GATE_DISABLE_UNSUPPORTED = 6020;
3809
+ type DopplerLaunchHookV2Error = typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__DUPLICATE_LAUNCH | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_CONTROL | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_DISABLE_BATCH | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__SELECTIVE_COSIGN_GATE_DISABLE_UNSUPPORTED | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE | typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT;
3802
3810
  declare function getDopplerLaunchHookV2ErrorMessage(code: DopplerLaunchHookV2Error): string;
3803
3811
  declare function isDopplerLaunchHookV2Error<TProgramErrorCode extends DopplerLaunchHookV2Error>(error: unknown, transactionMessage: {
3804
3812
  instructions: Record<number, {
@@ -3827,9 +3835,10 @@ declare function identifyDopplerLaunchHookV2Account(account: {
3827
3835
  } | ReadonlyUint8Array): DopplerLaunchHookV2Account;
3828
3836
  declare enum DopplerLaunchHookV2Instruction {
3829
3837
  AddCosigner = 0,
3830
- InitializeConfig = 1,
3831
- RemoveCosigner = 2,
3832
- SetAuthority = 3
3838
+ DisableCosignGates = 1,
3839
+ InitializeConfig = 2,
3840
+ RemoveCosigner = 3,
3841
+ SetAuthority = 4
3833
3842
  }
3834
3843
  declare function identifyDopplerLaunchHookV2Instruction(instruction: {
3835
3844
  data: ReadonlyUint8Array;
@@ -3837,6 +3846,8 @@ declare function identifyDopplerLaunchHookV2Instruction(instruction: {
3837
3846
  type ParsedDopplerLaunchHookV2Instruction<TProgram extends string = '7ZueM1Tef2QA5zrFtVJMDM8MFqkoeG8fog1mXPgmLGH1'> = ({
3838
3847
  instructionType: DopplerLaunchHookV2Instruction.AddCosigner;
3839
3848
  } & ParsedAddCosignerInstruction<TProgram>) | ({
3849
+ instructionType: DopplerLaunchHookV2Instruction.DisableCosignGates;
3850
+ } & ParsedDisableCosignGatesInstruction<TProgram>) | ({
3840
3851
  instructionType: DopplerLaunchHookV2Instruction.InitializeConfig;
3841
3852
  } & ParsedInitializeConfigInstruction<TProgram>) | ({
3842
3853
  instructionType: DopplerLaunchHookV2Instruction.RemoveCosigner;
@@ -3853,6 +3864,7 @@ type DopplerLaunchHookV2PluginAccounts = {
3853
3864
  };
3854
3865
  type DopplerLaunchHookV2PluginInstructions = {
3855
3866
  addCosigner: (input: AddCosignerAsyncInput) => ReturnType<typeof getAddCosignerInstructionAsync> & SelfPlanAndSendFunctions;
3867
+ disableCosignGates: (input: DisableCosignGatesAsyncInput) => ReturnType<typeof getDisableCosignGatesInstructionAsync> & SelfPlanAndSendFunctions;
3856
3868
  initializeConfig: (input: MakeOptional$3<InitializeConfigAsyncInput, 'payer'>) => ReturnType<typeof getInitializeConfigInstructionAsync> & SelfPlanAndSendFunctions;
3857
3869
  removeCosigner: (input: RemoveCosignerAsyncInput) => ReturnType<typeof getRemoveCosignerInstructionAsync> & SelfPlanAndSendFunctions;
3858
3870
  setAuthority: (input: SetAuthorityAsyncInput) => ReturnType<typeof getSetAuthorityInstructionAsync> & SelfPlanAndSendFunctions;
@@ -3914,6 +3926,61 @@ type ParsedAddCosignerInstruction<TProgram extends string = typeof DOPPLER_LAUNC
3914
3926
  };
3915
3927
  declare function parseAddCosignerInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedAddCosignerInstruction<TProgram, TAccountMetas>;
3916
3928
 
3929
+ /**
3930
+ * This code was AUTOGENERATED using the Codama library.
3931
+ * Please DO NOT EDIT THIS FILE, instead use visitors
3932
+ * to add features, then rerun Codama to update it.
3933
+ *
3934
+ * @see https://github.com/codama-idl/codama
3935
+ */
3936
+
3937
+ declare const DISABLE_COSIGN_GATES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
3938
+ declare function getDisableCosignGatesDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
3939
+ type DisableCosignGatesInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountAdminAuthority extends string | AccountMeta<string> = string, TAccountConfig extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
3940
+ TAccountAdminAuthority extends string ? WritableSignerAccount<TAccountAdminAuthority> & AccountSignerMeta<TAccountAdminAuthority> : TAccountAdminAuthority,
3941
+ TAccountConfig extends string ? ReadonlyAccount<TAccountConfig> : TAccountConfig,
3942
+ TAccountSystemProgram extends string ? ReadonlyAccount<TAccountSystemProgram> : TAccountSystemProgram,
3943
+ ...TRemainingAccounts
3944
+ ]>;
3945
+ type DisableCosignGatesInstructionData = {
3946
+ discriminator: ReadonlyUint8Array;
3947
+ launches: Array<Address>;
3948
+ };
3949
+ type DisableCosignGatesInstructionDataArgs = {
3950
+ launches: Array<Address>;
3951
+ };
3952
+ declare function getDisableCosignGatesInstructionDataEncoder(): Encoder<DisableCosignGatesInstructionDataArgs>;
3953
+ declare function getDisableCosignGatesInstructionDataDecoder(): Decoder<DisableCosignGatesInstructionData>;
3954
+ declare function getDisableCosignGatesInstructionDataCodec(): Codec<DisableCosignGatesInstructionDataArgs, DisableCosignGatesInstructionData>;
3955
+ type DisableCosignGatesAsyncInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string, TAccountSystemProgram extends string = string> = {
3956
+ adminAuthority: TransactionSigner<TAccountAdminAuthority>;
3957
+ config?: Address<TAccountConfig>;
3958
+ systemProgram?: Address<TAccountSystemProgram>;
3959
+ launches: DisableCosignGatesInstructionDataArgs['launches'];
3960
+ };
3961
+ declare function getDisableCosignGatesInstructionAsync<TAccountAdminAuthority extends string, TAccountConfig extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS>(input: DisableCosignGatesAsyncInput<TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram>, config?: {
3962
+ programAddress?: TProgramAddress;
3963
+ }): Promise<DisableCosignGatesInstruction<TProgramAddress, TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram>>;
3964
+ type DisableCosignGatesInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string, TAccountSystemProgram extends string = string> = {
3965
+ adminAuthority: TransactionSigner<TAccountAdminAuthority>;
3966
+ config: Address<TAccountConfig>;
3967
+ systemProgram?: Address<TAccountSystemProgram>;
3968
+ launches: DisableCosignGatesInstructionDataArgs['launches'];
3969
+ };
3970
+ declare function getDisableCosignGatesInstruction<TAccountAdminAuthority extends string, TAccountConfig extends string, TAccountSystemProgram extends string, TProgramAddress extends Address = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS>(input: DisableCosignGatesInput<TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram>, config?: {
3971
+ programAddress?: TProgramAddress;
3972
+ }): DisableCosignGatesInstruction<TProgramAddress, TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram>;
3973
+ type ParsedDisableCosignGatesInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
3974
+ programAddress: Address<TProgram>;
3975
+ accounts: {
3976
+ adminAuthority: TAccountMetas[0];
3977
+ config: TAccountMetas[1];
3978
+ systemProgram: TAccountMetas[2];
3979
+ };
3980
+ data: DisableCosignGatesInstructionData;
3981
+ };
3982
+ declare function parseDisableCosignGatesInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedDisableCosignGatesInstruction<TProgram, TAccountMetas>;
3983
+
3917
3984
  /**
3918
3985
  * This code was AUTOGENERATED using the Codama library.
3919
3986
  * Please DO NOT EDIT THIS FILE, instead use visitors
@@ -4103,6 +4170,23 @@ declare function getCosignerArgEncoder(): FixedSizeEncoder<CosignerArgArgs>;
4103
4170
  declare function getCosignerArgDecoder(): FixedSizeDecoder<CosignerArg>;
4104
4171
  declare function getCosignerArgCodec(): FixedSizeCodec<CosignerArgArgs, CosignerArg>;
4105
4172
 
4173
+ /**
4174
+ * This code was AUTOGENERATED using the Codama library.
4175
+ * Please DO NOT EDIT THIS FILE, instead use visitors
4176
+ * to add features, then rerun Codama to update it.
4177
+ *
4178
+ * @see https://github.com/codama-idl/codama
4179
+ */
4180
+
4181
+ type CosignGateDisabled = {
4182
+ launch: Address;
4183
+ control: Address;
4184
+ };
4185
+ type CosignGateDisabledArgs = CosignGateDisabled;
4186
+ declare function getCosignGateDisabledEncoder(): FixedSizeEncoder<CosignGateDisabledArgs>;
4187
+ declare function getCosignGateDisabledDecoder(): FixedSizeDecoder<CosignGateDisabled>;
4188
+ declare function getCosignGateDisabledCodec(): FixedSizeCodec<CosignGateDisabledArgs, CosignGateDisabled>;
4189
+
4106
4190
  /**
4107
4191
  * This code was AUTOGENERATED using the Codama library.
4108
4192
  * Please DO NOT EDIT THIS FILE, instead use visitors
@@ -4154,16 +4238,31 @@ type ResolvedManagedCosignerGateV2 = {
4154
4238
  declare function isResolvedManagedCosignerGateV2(value: unknown): value is ResolvedManagedCosignerGateV2;
4155
4239
  declare function resolveManagedCosignerGate(rpc: Rpc<GetAccountInfoApi>, input?: ResolveManagedCosignerGateV2Input): Promise<ResolvedManagedCosignerGateV2>;
4156
4240
 
4241
+ type PrepareDisableCosignGatesInput = {
4242
+ adminAuthority: TransactionSigner;
4243
+ launches: ReadonlyArray<Address>;
4244
+ config?: Address;
4245
+ programId?: Address;
4246
+ };
4247
+ type PrepareDisableCosignGatesResult = {
4248
+ instruction: Instruction;
4249
+ cosignGateControls: ReadonlyArray<Address>;
4250
+ };
4251
+ declare function prepareDisableCosignGates(input: PrepareDisableCosignGatesInput): Promise<PrepareDisableCosignGatesResult>;
4252
+
4157
4253
  declare const DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID: Address;
4158
4254
  declare const DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID: Address;
4159
4255
  declare const DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED = "doppler_launch_hook_v2";
4256
+ declare const DOPPLER_LAUNCH_HOOK_V2_COSIGN_GATE_CONTROL_SEED = "cosign_gate_control";
4160
4257
  declare const DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS = 32;
4258
+ declare const DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGN_GATE_DISABLES = 8;
4161
4259
  declare const DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC: Uint8Array<ArrayBuffer>;
4162
4260
  declare const DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION = 2;
4163
4261
  declare const DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN = 112;
4164
4262
  declare const DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE: number;
4165
4263
  declare const DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE: number;
4166
4264
  declare const DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION: number;
4265
+ declare const DOPPLER_LAUNCH_HOOK_V2_FEATURE_MANUAL_COSIGN_DISABLE: number;
4167
4266
  declare const DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK: number;
4168
4267
  declare const DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED = 0;
4169
4268
  declare const DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP = 1;
@@ -4192,15 +4291,17 @@ type DopplerLaunchHookV2RemainingAccounts = {
4192
4291
  };
4193
4292
  declare function encodeDopplerLaunchHookV2Payload(args?: DopplerLaunchHookV2PayloadArgs): Uint8Array;
4194
4293
  declare function decodeDopplerLaunchHookV2Payload(payload: ReadonlyUint8Array): DecodedDopplerLaunchHookV2Payload;
4195
- declare function getDopplerLaunchHookV2RemainingAccounts({ namespace, config, feeRehypothecationState, settlementSigner, cosigner, }: {
4294
+ declare function getDopplerLaunchHookV2RemainingAccounts({ namespace, config, feeRehypothecationState, settlementSigner, cosignGateControl, cosigner, }: {
4196
4295
  namespace: Address;
4197
4296
  config: Address;
4198
4297
  feeRehypothecationState?: Address;
4199
4298
  settlementSigner?: Address;
4299
+ cosignGateControl?: Address;
4200
4300
  cosigner?: AddressOrTransactionSigner;
4201
4301
  }): DopplerLaunchHookV2RemainingAccounts;
4202
4302
 
4203
4303
  declare function getDopplerLaunchHookV2ConfigAddress(programId?: Address): Promise<ProgramDerivedAddress>;
4304
+ declare function getDopplerLaunchHookV2CosignGateControlAddress(launch: Address, programId?: Address): Promise<ProgramDerivedAddress>;
4204
4305
 
4205
4306
  declare const index$7_ADD_COSIGNER_DISCRIMINATOR: typeof ADD_COSIGNER_DISCRIMINATOR;
4206
4307
  type index$7_AddCosignerAsyncInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string> = AddCosignerAsyncInput<TAccountAdminAuthority, TAccountConfig>;
@@ -4208,18 +4309,25 @@ type index$7_AddCosignerInput<TAccountAdminAuthority extends string = string, TA
4208
4309
  type index$7_AddCosignerInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountAdminAuthority extends string | AccountMeta<string> = string, TAccountConfig extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = AddCosignerInstruction<TProgram, TAccountAdminAuthority, TAccountConfig, TRemainingAccounts>;
4209
4310
  type index$7_AddCosignerInstructionData = AddCosignerInstructionData;
4210
4311
  type index$7_AddCosignerInstructionDataArgs = AddCosignerInstructionDataArgs;
4312
+ type index$7_CosignGateDisabled = CosignGateDisabled;
4313
+ type index$7_CosignGateDisabledArgs = CosignGateDisabledArgs;
4211
4314
  type index$7_CosignerArg = CosignerArg;
4212
4315
  type index$7_CosignerArgArgs = CosignerArgArgs;
4213
4316
  declare const index$7_DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID: typeof DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID;
4317
+ declare const index$7_DISABLE_COSIGN_GATES_DISCRIMINATOR: typeof DISABLE_COSIGN_GATES_DISCRIMINATOR;
4214
4318
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED: typeof DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED;
4319
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_COSIGN_GATE_CONTROL_SEED: typeof DOPPLER_LAUNCH_HOOK_V2_COSIGN_GATE_CONTROL_SEED;
4215
4320
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW;
4216
4321
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS;
4217
4322
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL;
4218
4323
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND;
4219
4324
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED;
4325
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__DUPLICATE_LAUNCH: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__DUPLICATE_LAUNCH;
4220
4326
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY;
4221
4327
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG;
4222
4328
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER;
4329
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_CONTROL: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_CONTROL;
4330
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_DISABLE_BATCH: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_DISABLE_BATCH;
4223
4331
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE;
4224
4332
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE;
4225
4333
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA;
@@ -4227,22 +4335,30 @@ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT: type
4227
4335
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD;
4228
4336
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE;
4229
4337
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT;
4338
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__SELECTIVE_COSIGN_GATE_DISABLE_UNSUPPORTED: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__SELECTIVE_COSIGN_GATE_DISABLE_UNSUPPORTED;
4230
4339
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE;
4231
4340
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT: typeof DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT;
4232
4341
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE: typeof DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE;
4233
4342
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE: typeof DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE;
4234
4343
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION: typeof DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION;
4344
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_MANUAL_COSIGN_DISABLE: typeof DOPPLER_LAUNCH_HOOK_V2_FEATURE_MANUAL_COSIGN_DISABLE;
4235
4345
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK: typeof DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK;
4236
4346
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED: typeof DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED;
4237
4347
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_SLOT: typeof DOPPLER_LAUNCH_HOOK_V2_GATE_SLOT;
4238
4348
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP: typeof DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP;
4239
4349
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS: typeof DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS;
4350
+ declare const index$7_DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGN_GATE_DISABLES: typeof DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGN_GATE_DISABLES;
4240
4351
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN: typeof DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN;
4241
4352
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC: typeof DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC;
4242
4353
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION: typeof DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION;
4243
4354
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS: typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS;
4244
4355
  declare const index$7_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID: typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID;
4245
4356
  type index$7_DecodedDopplerLaunchHookV2Payload = DecodedDopplerLaunchHookV2Payload;
4357
+ type index$7_DisableCosignGatesAsyncInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string, TAccountSystemProgram extends string = string> = DisableCosignGatesAsyncInput<TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram>;
4358
+ type index$7_DisableCosignGatesInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string, TAccountSystemProgram extends string = string> = DisableCosignGatesInput<TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram>;
4359
+ type index$7_DisableCosignGatesInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountAdminAuthority extends string | AccountMeta<string> = string, TAccountConfig extends string | AccountMeta<string> = string, TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TRemainingAccounts extends readonly AccountMeta<string>[] = []> = DisableCosignGatesInstruction<TProgram, TAccountAdminAuthority, TAccountConfig, TAccountSystemProgram, TRemainingAccounts>;
4360
+ type index$7_DisableCosignGatesInstructionData = DisableCosignGatesInstructionData;
4361
+ type index$7_DisableCosignGatesInstructionDataArgs = DisableCosignGatesInstructionDataArgs;
4246
4362
  type index$7_DopplerLaunchHookV2Account = DopplerLaunchHookV2Account;
4247
4363
  declare const index$7_DopplerLaunchHookV2Account: typeof DopplerLaunchHookV2Account;
4248
4364
  type index$7_DopplerLaunchHookV2Error = DopplerLaunchHookV2Error;
@@ -4265,10 +4381,13 @@ type index$7_InitializeConfigInstruction<TProgram extends string = typeof DOPPLE
4265
4381
  type index$7_InitializeConfigInstructionData = InitializeConfigInstructionData;
4266
4382
  type index$7_InitializeConfigInstructionDataArgs = InitializeConfigInstructionDataArgs;
4267
4383
  type index$7_ParsedAddCosignerInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = ParsedAddCosignerInstruction<TProgram, TAccountMetas>;
4384
+ type index$7_ParsedDisableCosignGatesInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = ParsedDisableCosignGatesInstruction<TProgram, TAccountMetas>;
4268
4385
  type index$7_ParsedDopplerLaunchHookV2Instruction<TProgram extends string = '7ZueM1Tef2QA5zrFtVJMDM8MFqkoeG8fog1mXPgmLGH1'> = ParsedDopplerLaunchHookV2Instruction<TProgram>;
4269
4386
  type index$7_ParsedInitializeConfigInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = ParsedInitializeConfigInstruction<TProgram, TAccountMetas>;
4270
4387
  type index$7_ParsedRemoveCosignerInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = ParsedRemoveCosignerInstruction<TProgram, TAccountMetas>;
4271
4388
  type index$7_ParsedSetAuthorityInstruction<TProgram extends string = typeof DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = ParsedSetAuthorityInstruction<TProgram, TAccountMetas>;
4389
+ type index$7_PrepareDisableCosignGatesInput = PrepareDisableCosignGatesInput;
4390
+ type index$7_PrepareDisableCosignGatesResult = PrepareDisableCosignGatesResult;
4272
4391
  declare const index$7_REMOVE_COSIGNER_DISCRIMINATOR: typeof REMOVE_COSIGNER_DISCRIMINATOR;
4273
4392
  type index$7_RemoveCosignerAsyncInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string> = RemoveCosignerAsyncInput<TAccountAdminAuthority, TAccountConfig>;
4274
4393
  type index$7_RemoveCosignerInput<TAccountAdminAuthority extends string = string, TAccountConfig extends string = string> = RemoveCosignerInput<TAccountAdminAuthority, TAccountConfig>;
@@ -4299,10 +4418,20 @@ declare const index$7_getAddCosignerInstructionAsync: typeof getAddCosignerInstr
4299
4418
  declare const index$7_getAddCosignerInstructionDataCodec: typeof getAddCosignerInstructionDataCodec;
4300
4419
  declare const index$7_getAddCosignerInstructionDataDecoder: typeof getAddCosignerInstructionDataDecoder;
4301
4420
  declare const index$7_getAddCosignerInstructionDataEncoder: typeof getAddCosignerInstructionDataEncoder;
4421
+ declare const index$7_getCosignGateDisabledCodec: typeof getCosignGateDisabledCodec;
4422
+ declare const index$7_getCosignGateDisabledDecoder: typeof getCosignGateDisabledDecoder;
4423
+ declare const index$7_getCosignGateDisabledEncoder: typeof getCosignGateDisabledEncoder;
4302
4424
  declare const index$7_getCosignerArgCodec: typeof getCosignerArgCodec;
4303
4425
  declare const index$7_getCosignerArgDecoder: typeof getCosignerArgDecoder;
4304
4426
  declare const index$7_getCosignerArgEncoder: typeof getCosignerArgEncoder;
4427
+ declare const index$7_getDisableCosignGatesDiscriminatorBytes: typeof getDisableCosignGatesDiscriminatorBytes;
4428
+ declare const index$7_getDisableCosignGatesInstruction: typeof getDisableCosignGatesInstruction;
4429
+ declare const index$7_getDisableCosignGatesInstructionAsync: typeof getDisableCosignGatesInstructionAsync;
4430
+ declare const index$7_getDisableCosignGatesInstructionDataCodec: typeof getDisableCosignGatesInstructionDataCodec;
4431
+ declare const index$7_getDisableCosignGatesInstructionDataDecoder: typeof getDisableCosignGatesInstructionDataDecoder;
4432
+ declare const index$7_getDisableCosignGatesInstructionDataEncoder: typeof getDisableCosignGatesInstructionDataEncoder;
4305
4433
  declare const index$7_getDopplerLaunchHookV2ConfigAddress: typeof getDopplerLaunchHookV2ConfigAddress;
4434
+ declare const index$7_getDopplerLaunchHookV2CosignGateControlAddress: typeof getDopplerLaunchHookV2CosignGateControlAddress;
4306
4435
  declare const index$7_getDopplerLaunchHookV2ErrorMessage: typeof getDopplerLaunchHookV2ErrorMessage;
4307
4436
  declare const index$7_getDopplerLaunchHookV2RemainingAccounts: typeof getDopplerLaunchHookV2RemainingAccounts;
4308
4437
  declare const index$7_getHookConfigCodec: typeof getHookConfigCodec;
@@ -4336,13 +4465,15 @@ declare const index$7_identifyDopplerLaunchHookV2Instruction: typeof identifyDop
4336
4465
  declare const index$7_isDopplerLaunchHookV2Error: typeof isDopplerLaunchHookV2Error;
4337
4466
  declare const index$7_isResolvedManagedCosignerGateV2: typeof isResolvedManagedCosignerGateV2;
4338
4467
  declare const index$7_parseAddCosignerInstruction: typeof parseAddCosignerInstruction;
4468
+ declare const index$7_parseDisableCosignGatesInstruction: typeof parseDisableCosignGatesInstruction;
4339
4469
  declare const index$7_parseDopplerLaunchHookV2Instruction: typeof parseDopplerLaunchHookV2Instruction;
4340
4470
  declare const index$7_parseInitializeConfigInstruction: typeof parseInitializeConfigInstruction;
4341
4471
  declare const index$7_parseRemoveCosignerInstruction: typeof parseRemoveCosignerInstruction;
4342
4472
  declare const index$7_parseSetAuthorityInstruction: typeof parseSetAuthorityInstruction;
4473
+ declare const index$7_prepareDisableCosignGates: typeof prepareDisableCosignGates;
4343
4474
  declare const index$7_resolveManagedCosignerGate: typeof resolveManagedCosignerGate;
4344
4475
  declare namespace index$7 {
4345
- export { index$7_ADD_COSIGNER_DISCRIMINATOR as ADD_COSIGNER_DISCRIMINATOR, type index$7_AddCosignerAsyncInput as AddCosignerAsyncInput, type index$7_AddCosignerInput as AddCosignerInput, type index$7_AddCosignerInstruction as AddCosignerInstruction, type index$7_AddCosignerInstructionData as AddCosignerInstructionData, type index$7_AddCosignerInstructionDataArgs as AddCosignerInstructionDataArgs, type index$7_CosignerArg as CosignerArg, type index$7_CosignerArgArgs as CosignerArgArgs, index$7_DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID as DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID, index$7_DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED as DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW as DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT as DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE as DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT as DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE as DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE as DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION as DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK as DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK, index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED as DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED, index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_SLOT as DOPPLER_LAUNCH_HOOK_V2_GATE_SLOT, index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP as DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP, index$7_DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS as DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS, index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN as DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN, index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC as DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC, index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION as DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION, index$7_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS as DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, index$7_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID as DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID, type index$7_DecodedDopplerLaunchHookV2Payload as DecodedDopplerLaunchHookV2Payload, index$7_DopplerLaunchHookV2Account as DopplerLaunchHookV2Account, type index$7_DopplerLaunchHookV2Error as DopplerLaunchHookV2Error, type index$7_DopplerLaunchHookV2GateArgs as DopplerLaunchHookV2GateArgs, index$7_DopplerLaunchHookV2Instruction as DopplerLaunchHookV2Instruction, type index$7_DopplerLaunchHookV2PayloadArgs as DopplerLaunchHookV2PayloadArgs, type index$7_DopplerLaunchHookV2Plugin as DopplerLaunchHookV2Plugin, type index$7_DopplerLaunchHookV2PluginAccounts as DopplerLaunchHookV2PluginAccounts, type index$7_DopplerLaunchHookV2PluginInstructions as DopplerLaunchHookV2PluginInstructions, type index$7_DopplerLaunchHookV2PluginRequirements as DopplerLaunchHookV2PluginRequirements, type index$7_DopplerLaunchHookV2RemainingAccounts as DopplerLaunchHookV2RemainingAccounts, index$7_HOOK_CONFIG_DISCRIMINATOR as HOOK_CONFIG_DISCRIMINATOR, type index$7_HookConfig as HookConfig, type index$7_HookConfigArgs as HookConfigArgs, index$7_INITIALIZE_CONFIG_DISCRIMINATOR as INITIALIZE_CONFIG_DISCRIMINATOR, type InitializeConfigArgs$1 as InitializeConfigArgs, type InitializeConfigArgsArgs$1 as InitializeConfigArgsArgs, type index$7_InitializeConfigAsyncInput as InitializeConfigAsyncInput, type index$7_InitializeConfigInput as InitializeConfigInput, type index$7_InitializeConfigInstruction as InitializeConfigInstruction, type index$7_InitializeConfigInstructionData as InitializeConfigInstructionData, type index$7_InitializeConfigInstructionDataArgs as InitializeConfigInstructionDataArgs, type index$7_ParsedAddCosignerInstruction as ParsedAddCosignerInstruction, type index$7_ParsedDopplerLaunchHookV2Instruction as ParsedDopplerLaunchHookV2Instruction, type index$7_ParsedInitializeConfigInstruction as ParsedInitializeConfigInstruction, type index$7_ParsedRemoveCosignerInstruction as ParsedRemoveCosignerInstruction, type index$7_ParsedSetAuthorityInstruction as ParsedSetAuthorityInstruction, index$7_REMOVE_COSIGNER_DISCRIMINATOR as REMOVE_COSIGNER_DISCRIMINATOR, type index$7_RemoveCosignerAsyncInput as RemoveCosignerAsyncInput, type index$7_RemoveCosignerInput as RemoveCosignerInput, type index$7_RemoveCosignerInstruction as RemoveCosignerInstruction, type index$7_RemoveCosignerInstructionData as RemoveCosignerInstructionData, type index$7_RemoveCosignerInstructionDataArgs as RemoveCosignerInstructionDataArgs, type index$7_ResolveManagedCosignerGateV2Input as ResolveManagedCosignerGateV2Input, type index$7_ResolvedManagedCosignerGateV2 as ResolvedManagedCosignerGateV2, index$7_SET_AUTHORITY_DISCRIMINATOR as SET_AUTHORITY_DISCRIMINATOR, type index$7_SetAuthorityArgs as SetAuthorityArgs, type index$7_SetAuthorityArgsArgs as SetAuthorityArgsArgs, type index$7_SetAuthorityAsyncInput as SetAuthorityAsyncInput, type index$7_SetAuthorityInput as SetAuthorityInput, type index$7_SetAuthorityInstruction as SetAuthorityInstruction, type index$7_SetAuthorityInstructionData as SetAuthorityInstructionData, type index$7_SetAuthorityInstructionDataArgs as SetAuthorityInstructionDataArgs, index$7_decodeDopplerLaunchHookV2Payload as decodeDopplerLaunchHookV2Payload, index$7_decodeHookConfig as decodeHookConfig, index$7_dopplerLaunchHookV2Program as dopplerLaunchHookV2Program, index$7_encodeDopplerLaunchHookV2Payload as encodeDopplerLaunchHookV2Payload, index$7_fetchAllHookConfig as fetchAllHookConfig, index$7_fetchAllMaybeHookConfig as fetchAllMaybeHookConfig, index$7_fetchHookConfig as fetchHookConfig, index$7_fetchMaybeHookConfig as fetchMaybeHookConfig, index$7_getAddCosignerDiscriminatorBytes as getAddCosignerDiscriminatorBytes, index$7_getAddCosignerInstruction as getAddCosignerInstruction, index$7_getAddCosignerInstructionAsync as getAddCosignerInstructionAsync, index$7_getAddCosignerInstructionDataCodec as getAddCosignerInstructionDataCodec, index$7_getAddCosignerInstructionDataDecoder as getAddCosignerInstructionDataDecoder, index$7_getAddCosignerInstructionDataEncoder as getAddCosignerInstructionDataEncoder, index$7_getCosignerArgCodec as getCosignerArgCodec, index$7_getCosignerArgDecoder as getCosignerArgDecoder, index$7_getCosignerArgEncoder as getCosignerArgEncoder, index$7_getDopplerLaunchHookV2ConfigAddress as getDopplerLaunchHookV2ConfigAddress, index$7_getDopplerLaunchHookV2ErrorMessage as getDopplerLaunchHookV2ErrorMessage, index$7_getDopplerLaunchHookV2RemainingAccounts as getDopplerLaunchHookV2RemainingAccounts, index$7_getHookConfigCodec as getHookConfigCodec, index$7_getHookConfigDecoder as getHookConfigDecoder, index$7_getHookConfigDiscriminatorBytes as getHookConfigDiscriminatorBytes, index$7_getHookConfigEncoder as getHookConfigEncoder, index$7_getHookConfigSize as getHookConfigSize, getInitializeConfigArgsCodec$1 as getInitializeConfigArgsCodec, getInitializeConfigArgsDecoder$1 as getInitializeConfigArgsDecoder, getInitializeConfigArgsEncoder$1 as getInitializeConfigArgsEncoder, index$7_getInitializeConfigDiscriminatorBytes as getInitializeConfigDiscriminatorBytes, index$7_getInitializeConfigInstruction as getInitializeConfigInstruction, index$7_getInitializeConfigInstructionAsync as getInitializeConfigInstructionAsync, index$7_getInitializeConfigInstructionDataCodec as getInitializeConfigInstructionDataCodec, index$7_getInitializeConfigInstructionDataDecoder as getInitializeConfigInstructionDataDecoder, index$7_getInitializeConfigInstructionDataEncoder as getInitializeConfigInstructionDataEncoder, index$7_getRemoveCosignerDiscriminatorBytes as getRemoveCosignerDiscriminatorBytes, index$7_getRemoveCosignerInstruction as getRemoveCosignerInstruction, index$7_getRemoveCosignerInstructionAsync as getRemoveCosignerInstructionAsync, index$7_getRemoveCosignerInstructionDataCodec as getRemoveCosignerInstructionDataCodec, index$7_getRemoveCosignerInstructionDataDecoder as getRemoveCosignerInstructionDataDecoder, index$7_getRemoveCosignerInstructionDataEncoder as getRemoveCosignerInstructionDataEncoder, index$7_getSetAuthorityArgsCodec as getSetAuthorityArgsCodec, index$7_getSetAuthorityArgsDecoder as getSetAuthorityArgsDecoder, index$7_getSetAuthorityArgsEncoder as getSetAuthorityArgsEncoder, index$7_getSetAuthorityDiscriminatorBytes as getSetAuthorityDiscriminatorBytes, index$7_getSetAuthorityInstruction as getSetAuthorityInstruction, index$7_getSetAuthorityInstructionAsync as getSetAuthorityInstructionAsync, index$7_getSetAuthorityInstructionDataCodec as getSetAuthorityInstructionDataCodec, index$7_getSetAuthorityInstructionDataDecoder as getSetAuthorityInstructionDataDecoder, index$7_getSetAuthorityInstructionDataEncoder as getSetAuthorityInstructionDataEncoder, index$7_identifyDopplerLaunchHookV2Account as identifyDopplerLaunchHookV2Account, index$7_identifyDopplerLaunchHookV2Instruction as identifyDopplerLaunchHookV2Instruction, index$7_isDopplerLaunchHookV2Error as isDopplerLaunchHookV2Error, index$7_isResolvedManagedCosignerGateV2 as isResolvedManagedCosignerGateV2, index$7_parseAddCosignerInstruction as parseAddCosignerInstruction, index$7_parseDopplerLaunchHookV2Instruction as parseDopplerLaunchHookV2Instruction, index$7_parseInitializeConfigInstruction as parseInitializeConfigInstruction, index$7_parseRemoveCosignerInstruction as parseRemoveCosignerInstruction, index$7_parseSetAuthorityInstruction as parseSetAuthorityInstruction, index$7_resolveManagedCosignerGate as resolveManagedCosignerGate };
4476
+ export { index$7_ADD_COSIGNER_DISCRIMINATOR as ADD_COSIGNER_DISCRIMINATOR, type index$7_AddCosignerAsyncInput as AddCosignerAsyncInput, type index$7_AddCosignerInput as AddCosignerInput, type index$7_AddCosignerInstruction as AddCosignerInstruction, type index$7_AddCosignerInstructionData as AddCosignerInstructionData, type index$7_AddCosignerInstructionDataArgs as AddCosignerInstructionDataArgs, type index$7_CosignGateDisabled as CosignGateDisabled, type index$7_CosignGateDisabledArgs as CosignGateDisabledArgs, type index$7_CosignerArg as CosignerArg, type index$7_CosignerArgArgs as CosignerArgArgs, index$7_DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID as DEVNET_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID, index$7_DISABLE_COSIGN_GATES_DISCRIMINATOR as DISABLE_COSIGN_GATES_DISCRIMINATOR, index$7_DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED as DOPPLER_LAUNCH_HOOK_V2_CONFIG_SEED, index$7_DOPPLER_LAUNCH_HOOK_V2_COSIGN_GATE_CONTROL_SEED as DOPPLER_LAUNCH_HOOK_V2_COSIGN_GATE_CONTROL_SEED, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW as DOPPLER_LAUNCH_HOOK_V2_ERROR__ARITHMETIC_OVERFLOW, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_ALREADY_EXISTS, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_LIST_FULL, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_NOT_FOUND, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED as DOPPLER_LAUNCH_HOOK_V2_ERROR__COSIGNER_REQUIRED, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__DUPLICATE_LAUNCH as DOPPLER_LAUNCH_HOOK_V2_ERROR__DUPLICATE_LAUNCH, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_AUTHORITY, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_CONFIG, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGNER, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_CONTROL as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_CONTROL, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_DISABLE_BATCH as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_COSIGN_GATE_DISABLE_BATCH, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_FEE_SCHEDULE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_INSTRUCTION_DATA, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_LAUNCH_CONTEXT, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_PAYLOAD, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE as DOPPLER_LAUNCH_HOOK_V2_ERROR__INVALID_REHYPE_STATE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT as DOPPLER_LAUNCH_HOOK_V2_ERROR__MISSING_ACCOUNT, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__SELECTIVE_COSIGN_GATE_DISABLE_UNSUPPORTED as DOPPLER_LAUNCH_HOOK_V2_ERROR__SELECTIVE_COSIGN_GATE_DISABLE_UNSUPPORTED, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE as DOPPLER_LAUNCH_HOOK_V2_ERROR__SETTLEMENT_INCOMPLETE, index$7_DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT as DOPPLER_LAUNCH_HOOK_V2_ERROR__UNEXPECTED_ACCOUNT, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE as DOPPLER_LAUNCH_HOOK_V2_FEATURE_COSIGN_GATE, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE as DOPPLER_LAUNCH_HOOK_V2_FEATURE_DYNAMIC_FEE, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION as DOPPLER_LAUNCH_HOOK_V2_FEATURE_FEE_REHYPOTHECATION, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_MANUAL_COSIGN_DISABLE as DOPPLER_LAUNCH_HOOK_V2_FEATURE_MANUAL_COSIGN_DISABLE, index$7_DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK as DOPPLER_LAUNCH_HOOK_V2_FEATURE_MASK, index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED as DOPPLER_LAUNCH_HOOK_V2_GATE_DISABLED, index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_SLOT as DOPPLER_LAUNCH_HOOK_V2_GATE_SLOT, index$7_DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP as DOPPLER_LAUNCH_HOOK_V2_GATE_UNIX_TIMESTAMP, index$7_DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS as DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGNERS, index$7_DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGN_GATE_DISABLES as DOPPLER_LAUNCH_HOOK_V2_MAX_COSIGN_GATE_DISABLES, index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN as DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_LEN, index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC as DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_MAGIC, index$7_DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION as DOPPLER_LAUNCH_HOOK_V2_PAYLOAD_VERSION, index$7_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS as DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ADDRESS, index$7_DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID as DOPPLER_LAUNCH_HOOK_V2_PROGRAM_ID, type index$7_DecodedDopplerLaunchHookV2Payload as DecodedDopplerLaunchHookV2Payload, type index$7_DisableCosignGatesAsyncInput as DisableCosignGatesAsyncInput, type index$7_DisableCosignGatesInput as DisableCosignGatesInput, type index$7_DisableCosignGatesInstruction as DisableCosignGatesInstruction, type index$7_DisableCosignGatesInstructionData as DisableCosignGatesInstructionData, type index$7_DisableCosignGatesInstructionDataArgs as DisableCosignGatesInstructionDataArgs, index$7_DopplerLaunchHookV2Account as DopplerLaunchHookV2Account, type index$7_DopplerLaunchHookV2Error as DopplerLaunchHookV2Error, type index$7_DopplerLaunchHookV2GateArgs as DopplerLaunchHookV2GateArgs, index$7_DopplerLaunchHookV2Instruction as DopplerLaunchHookV2Instruction, type index$7_DopplerLaunchHookV2PayloadArgs as DopplerLaunchHookV2PayloadArgs, type index$7_DopplerLaunchHookV2Plugin as DopplerLaunchHookV2Plugin, type index$7_DopplerLaunchHookV2PluginAccounts as DopplerLaunchHookV2PluginAccounts, type index$7_DopplerLaunchHookV2PluginInstructions as DopplerLaunchHookV2PluginInstructions, type index$7_DopplerLaunchHookV2PluginRequirements as DopplerLaunchHookV2PluginRequirements, type index$7_DopplerLaunchHookV2RemainingAccounts as DopplerLaunchHookV2RemainingAccounts, index$7_HOOK_CONFIG_DISCRIMINATOR as HOOK_CONFIG_DISCRIMINATOR, type index$7_HookConfig as HookConfig, type index$7_HookConfigArgs as HookConfigArgs, index$7_INITIALIZE_CONFIG_DISCRIMINATOR as INITIALIZE_CONFIG_DISCRIMINATOR, type InitializeConfigArgs$1 as InitializeConfigArgs, type InitializeConfigArgsArgs$1 as InitializeConfigArgsArgs, type index$7_InitializeConfigAsyncInput as InitializeConfigAsyncInput, type index$7_InitializeConfigInput as InitializeConfigInput, type index$7_InitializeConfigInstruction as InitializeConfigInstruction, type index$7_InitializeConfigInstructionData as InitializeConfigInstructionData, type index$7_InitializeConfigInstructionDataArgs as InitializeConfigInstructionDataArgs, type index$7_ParsedAddCosignerInstruction as ParsedAddCosignerInstruction, type index$7_ParsedDisableCosignGatesInstruction as ParsedDisableCosignGatesInstruction, type index$7_ParsedDopplerLaunchHookV2Instruction as ParsedDopplerLaunchHookV2Instruction, type index$7_ParsedInitializeConfigInstruction as ParsedInitializeConfigInstruction, type index$7_ParsedRemoveCosignerInstruction as ParsedRemoveCosignerInstruction, type index$7_ParsedSetAuthorityInstruction as ParsedSetAuthorityInstruction, type index$7_PrepareDisableCosignGatesInput as PrepareDisableCosignGatesInput, type index$7_PrepareDisableCosignGatesResult as PrepareDisableCosignGatesResult, index$7_REMOVE_COSIGNER_DISCRIMINATOR as REMOVE_COSIGNER_DISCRIMINATOR, type index$7_RemoveCosignerAsyncInput as RemoveCosignerAsyncInput, type index$7_RemoveCosignerInput as RemoveCosignerInput, type index$7_RemoveCosignerInstruction as RemoveCosignerInstruction, type index$7_RemoveCosignerInstructionData as RemoveCosignerInstructionData, type index$7_RemoveCosignerInstructionDataArgs as RemoveCosignerInstructionDataArgs, type index$7_ResolveManagedCosignerGateV2Input as ResolveManagedCosignerGateV2Input, type index$7_ResolvedManagedCosignerGateV2 as ResolvedManagedCosignerGateV2, index$7_SET_AUTHORITY_DISCRIMINATOR as SET_AUTHORITY_DISCRIMINATOR, type index$7_SetAuthorityArgs as SetAuthorityArgs, type index$7_SetAuthorityArgsArgs as SetAuthorityArgsArgs, type index$7_SetAuthorityAsyncInput as SetAuthorityAsyncInput, type index$7_SetAuthorityInput as SetAuthorityInput, type index$7_SetAuthorityInstruction as SetAuthorityInstruction, type index$7_SetAuthorityInstructionData as SetAuthorityInstructionData, type index$7_SetAuthorityInstructionDataArgs as SetAuthorityInstructionDataArgs, index$7_decodeDopplerLaunchHookV2Payload as decodeDopplerLaunchHookV2Payload, index$7_decodeHookConfig as decodeHookConfig, index$7_dopplerLaunchHookV2Program as dopplerLaunchHookV2Program, index$7_encodeDopplerLaunchHookV2Payload as encodeDopplerLaunchHookV2Payload, index$7_fetchAllHookConfig as fetchAllHookConfig, index$7_fetchAllMaybeHookConfig as fetchAllMaybeHookConfig, index$7_fetchHookConfig as fetchHookConfig, index$7_fetchMaybeHookConfig as fetchMaybeHookConfig, index$7_getAddCosignerDiscriminatorBytes as getAddCosignerDiscriminatorBytes, index$7_getAddCosignerInstruction as getAddCosignerInstruction, index$7_getAddCosignerInstructionAsync as getAddCosignerInstructionAsync, index$7_getAddCosignerInstructionDataCodec as getAddCosignerInstructionDataCodec, index$7_getAddCosignerInstructionDataDecoder as getAddCosignerInstructionDataDecoder, index$7_getAddCosignerInstructionDataEncoder as getAddCosignerInstructionDataEncoder, index$7_getCosignGateDisabledCodec as getCosignGateDisabledCodec, index$7_getCosignGateDisabledDecoder as getCosignGateDisabledDecoder, index$7_getCosignGateDisabledEncoder as getCosignGateDisabledEncoder, index$7_getCosignerArgCodec as getCosignerArgCodec, index$7_getCosignerArgDecoder as getCosignerArgDecoder, index$7_getCosignerArgEncoder as getCosignerArgEncoder, index$7_getDisableCosignGatesDiscriminatorBytes as getDisableCosignGatesDiscriminatorBytes, index$7_getDisableCosignGatesInstruction as getDisableCosignGatesInstruction, index$7_getDisableCosignGatesInstructionAsync as getDisableCosignGatesInstructionAsync, index$7_getDisableCosignGatesInstructionDataCodec as getDisableCosignGatesInstructionDataCodec, index$7_getDisableCosignGatesInstructionDataDecoder as getDisableCosignGatesInstructionDataDecoder, index$7_getDisableCosignGatesInstructionDataEncoder as getDisableCosignGatesInstructionDataEncoder, index$7_getDopplerLaunchHookV2ConfigAddress as getDopplerLaunchHookV2ConfigAddress, index$7_getDopplerLaunchHookV2CosignGateControlAddress as getDopplerLaunchHookV2CosignGateControlAddress, index$7_getDopplerLaunchHookV2ErrorMessage as getDopplerLaunchHookV2ErrorMessage, index$7_getDopplerLaunchHookV2RemainingAccounts as getDopplerLaunchHookV2RemainingAccounts, index$7_getHookConfigCodec as getHookConfigCodec, index$7_getHookConfigDecoder as getHookConfigDecoder, index$7_getHookConfigDiscriminatorBytes as getHookConfigDiscriminatorBytes, index$7_getHookConfigEncoder as getHookConfigEncoder, index$7_getHookConfigSize as getHookConfigSize, getInitializeConfigArgsCodec$1 as getInitializeConfigArgsCodec, getInitializeConfigArgsDecoder$1 as getInitializeConfigArgsDecoder, getInitializeConfigArgsEncoder$1 as getInitializeConfigArgsEncoder, index$7_getInitializeConfigDiscriminatorBytes as getInitializeConfigDiscriminatorBytes, index$7_getInitializeConfigInstruction as getInitializeConfigInstruction, index$7_getInitializeConfigInstructionAsync as getInitializeConfigInstructionAsync, index$7_getInitializeConfigInstructionDataCodec as getInitializeConfigInstructionDataCodec, index$7_getInitializeConfigInstructionDataDecoder as getInitializeConfigInstructionDataDecoder, index$7_getInitializeConfigInstructionDataEncoder as getInitializeConfigInstructionDataEncoder, index$7_getRemoveCosignerDiscriminatorBytes as getRemoveCosignerDiscriminatorBytes, index$7_getRemoveCosignerInstruction as getRemoveCosignerInstruction, index$7_getRemoveCosignerInstructionAsync as getRemoveCosignerInstructionAsync, index$7_getRemoveCosignerInstructionDataCodec as getRemoveCosignerInstructionDataCodec, index$7_getRemoveCosignerInstructionDataDecoder as getRemoveCosignerInstructionDataDecoder, index$7_getRemoveCosignerInstructionDataEncoder as getRemoveCosignerInstructionDataEncoder, index$7_getSetAuthorityArgsCodec as getSetAuthorityArgsCodec, index$7_getSetAuthorityArgsDecoder as getSetAuthorityArgsDecoder, index$7_getSetAuthorityArgsEncoder as getSetAuthorityArgsEncoder, index$7_getSetAuthorityDiscriminatorBytes as getSetAuthorityDiscriminatorBytes, index$7_getSetAuthorityInstruction as getSetAuthorityInstruction, index$7_getSetAuthorityInstructionAsync as getSetAuthorityInstructionAsync, index$7_getSetAuthorityInstructionDataCodec as getSetAuthorityInstructionDataCodec, index$7_getSetAuthorityInstructionDataDecoder as getSetAuthorityInstructionDataDecoder, index$7_getSetAuthorityInstructionDataEncoder as getSetAuthorityInstructionDataEncoder, index$7_identifyDopplerLaunchHookV2Account as identifyDopplerLaunchHookV2Account, index$7_identifyDopplerLaunchHookV2Instruction as identifyDopplerLaunchHookV2Instruction, index$7_isDopplerLaunchHookV2Error as isDopplerLaunchHookV2Error, index$7_isResolvedManagedCosignerGateV2 as isResolvedManagedCosignerGateV2, index$7_parseAddCosignerInstruction as parseAddCosignerInstruction, index$7_parseDisableCosignGatesInstruction as parseDisableCosignGatesInstruction, index$7_parseDopplerLaunchHookV2Instruction as parseDopplerLaunchHookV2Instruction, index$7_parseInitializeConfigInstruction as parseInitializeConfigInstruction, index$7_parseRemoveCosignerInstruction as parseRemoveCosignerInstruction, index$7_parseSetAuthorityInstruction as parseSetAuthorityInstruction, index$7_prepareDisableCosignGates as prepareDisableCosignGates, index$7_resolveManagedCosignerGate as resolveManagedCosignerGate };
4346
4477
  }
4347
4478
 
4348
4479
  /**
@@ -4514,7 +4645,6 @@ type InitializeRehypeArgs = {
4514
4645
  namespace: Address;
4515
4646
  launchId: ReadonlyUint8Array;
4516
4647
  buybackDestination: Address;
4517
- settlementAuthority: Address;
4518
4648
  routingMode: number;
4519
4649
  feeRouting: FeeRoutingMatrix;
4520
4650
  beneficiaries: Array<RehypeBeneficiaryInput>;
@@ -4523,7 +4653,6 @@ type InitializeRehypeArgsArgs = {
4523
4653
  namespace: Address;
4524
4654
  launchId: ReadonlyUint8Array;
4525
4655
  buybackDestination: Address;
4526
- settlementAuthority: Address;
4527
4656
  routingMode: number;
4528
4657
  feeRouting: FeeRoutingMatrixArgs;
4529
4658
  beneficiaries: Array<RehypeBeneficiaryInputArgs>;
@@ -5070,9 +5199,12 @@ type RehypeState = {
5070
5199
  beneficiaryCount: number;
5071
5200
  inflightKind: number;
5072
5201
  inflightDirection: number;
5073
- settlementAuthority: Address;
5202
+ /** Reserved bytes formerly used by the privileged settlement authority. */
5203
+ reservedSettlementAuthority: ReadonlyUint8Array;
5074
5204
  cumulativeRoutedBaseFees: bigint;
5075
5205
  cumulativeRoutedQuoteFees: bigint;
5206
+ settledInitializerBaseFees: bigint;
5207
+ settledInitializerQuoteFees: bigint;
5076
5208
  reserved: ReadonlyUint8Array;
5077
5209
  };
5078
5210
  type RehypeStateArgs = {
@@ -5101,9 +5233,12 @@ type RehypeStateArgs = {
5101
5233
  beneficiaryCount: number;
5102
5234
  inflightKind: number;
5103
5235
  inflightDirection: number;
5104
- settlementAuthority: Address;
5236
+ /** Reserved bytes formerly used by the privileged settlement authority. */
5237
+ reservedSettlementAuthority: ReadonlyUint8Array;
5105
5238
  cumulativeRoutedBaseFees: number | bigint;
5106
5239
  cumulativeRoutedQuoteFees: number | bigint;
5240
+ settledInitializerBaseFees: number | bigint;
5241
+ settledInitializerQuoteFees: number | bigint;
5107
5242
  reserved: ReadonlyUint8Array;
5108
5243
  };
5109
5244
  /** Gets the encoder for {@link RehypeStateArgs} account data. */
@@ -5246,8 +5381,8 @@ type DopplerRehypeRouterV1PluginInstructions = {
5246
5381
  claimFees: (input: MakeOptional$2<ClaimFeesAsyncInput$1, 'payer'>) => ReturnType<typeof getClaimFeesInstructionAsync$1> & SelfPlanAndSendFunctions;
5247
5382
  initializeRehype: (input: MakeOptional$2<InitializeRehypeAsyncInput, 'payer'>) => ReturnType<typeof getInitializeRehypeInstructionAsync> & SelfPlanAndSendFunctions;
5248
5383
  replaceBeneficiary: (input: ReplaceBeneficiaryAsyncInput) => ReturnType<typeof getReplaceBeneficiaryInstructionAsync> & SelfPlanAndSendFunctions;
5249
- settleFees: (input: SettleFeesAsyncInput) => ReturnType<typeof getSettleFeesInstructionAsync> & SelfPlanAndSendFunctions;
5250
- settleMigratedFees: (input: SettleMigratedFeesAsyncInput) => ReturnType<typeof getSettleMigratedFeesInstructionAsync> & SelfPlanAndSendFunctions;
5384
+ settleFees: (input: MakeOptional$2<SettleFeesAsyncInput, 'payer'>) => ReturnType<typeof getSettleFeesInstructionAsync> & SelfPlanAndSendFunctions;
5385
+ settleMigratedFees: (input: MakeOptional$2<SettleMigratedFeesAsyncInput, 'payer'>) => ReturnType<typeof getSettleMigratedFeesInstructionAsync> & SelfPlanAndSendFunctions;
5251
5386
  };
5252
5387
  type DopplerRehypeRouterV1PluginRequirements = ClientWithRpc<GetAccountInfoApi & GetMultipleAccountsApi> & ClientWithPayer & ClientWithTransactionPlanning & ClientWithTransactionSending;
5253
5388
  declare function dopplerRehypeRouterV1Program(): <T extends DopplerRehypeRouterV1PluginRequirements>(client: T) => T & {
@@ -5381,7 +5516,6 @@ type InitializeRehypeInstructionData = {
5381
5516
  namespace: Address;
5382
5517
  launchId: ReadonlyUint8Array;
5383
5518
  buybackDestination: Address;
5384
- settlementAuthority: Address;
5385
5519
  routingMode: number;
5386
5520
  feeRouting: FeeRoutingMatrix;
5387
5521
  beneficiaries: Array<RehypeBeneficiaryInput>;
@@ -5390,7 +5524,6 @@ type InitializeRehypeInstructionDataArgs = {
5390
5524
  namespace: Address;
5391
5525
  launchId: ReadonlyUint8Array;
5392
5526
  buybackDestination: Address;
5393
- settlementAuthority: Address;
5394
5527
  routingMode: number;
5395
5528
  feeRouting: FeeRoutingMatrixArgs;
5396
5529
  beneficiaries: Array<RehypeBeneficiaryInputArgs>;
@@ -5412,7 +5545,6 @@ type InitializeRehypeAsyncInput<TAccountPayer extends string = string, TAccountB
5412
5545
  namespace: InitializeRehypeInstructionDataArgs['namespace'];
5413
5546
  launchId: InitializeRehypeInstructionDataArgs['launchId'];
5414
5547
  buybackDestination: InitializeRehypeInstructionDataArgs['buybackDestination'];
5415
- settlementAuthority: InitializeRehypeInstructionDataArgs['settlementAuthority'];
5416
5548
  routingMode: InitializeRehypeInstructionDataArgs['routingMode'];
5417
5549
  feeRouting: InitializeRehypeInstructionDataArgs['feeRouting'];
5418
5550
  beneficiaries: InitializeRehypeInstructionDataArgs['beneficiaries'];
@@ -5434,7 +5566,6 @@ type InitializeRehypeInput<TAccountPayer extends string = string, TAccountBaseMi
5434
5566
  namespace: InitializeRehypeInstructionDataArgs['namespace'];
5435
5567
  launchId: InitializeRehypeInstructionDataArgs['launchId'];
5436
5568
  buybackDestination: InitializeRehypeInstructionDataArgs['buybackDestination'];
5437
- settlementAuthority: InitializeRehypeInstructionDataArgs['settlementAuthority'];
5438
5569
  routingMode: InitializeRehypeInstructionDataArgs['routingMode'];
5439
5570
  feeRouting: InitializeRehypeInstructionDataArgs['feeRouting'];
5440
5571
  beneficiaries: InitializeRehypeInstructionDataArgs['beneficiaries'];
@@ -5528,8 +5659,8 @@ declare function parseReplaceBeneficiaryInstruction<TProgram extends string, TAc
5528
5659
 
5529
5660
  declare const SETTLE_FEES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
5530
5661
  declare function getSettleFeesDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
5531
- type SettleFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountSettlementAuthority extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountBaseVault extends string | AccountMeta<string> = string, TAccountQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountSettlementSigner extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountNamespace extends string | AccountMeta<string> = string, TAccountHookConfig extends string | AccountMeta<string> = string, TAccountHookProgram extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountGateCosigner extends string | AccountMeta<string> = string, TAccountCosignGateControl extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
5532
- TAccountSettlementAuthority extends string ? WritableSignerAccount<TAccountSettlementAuthority> & AccountSignerMeta<TAccountSettlementAuthority> : TAccountSettlementAuthority,
5662
+ type SettleFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountBaseVault extends string | AccountMeta<string> = string, TAccountQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountSettlementSigner extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountNamespace extends string | AccountMeta<string> = string, TAccountHookConfig extends string | AccountMeta<string> = string, TAccountHookProgram extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountGateCosigner extends string | AccountMeta<string> = string, TAccountCosignGateControl extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
5663
+ TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
5533
5664
  TAccountInitializerProgram extends string ? ReadonlyAccount<TAccountInitializerProgram> : TAccountInitializerProgram,
5534
5665
  TAccountInitializerConfig extends string ? ReadonlyAccount<TAccountInitializerConfig> : TAccountInitializerConfig,
5535
5666
  TAccountLaunch extends string ? WritableAccount<TAccountLaunch> : TAccountLaunch,
@@ -5570,8 +5701,8 @@ type SettleFeesInstructionDataArgs = {
5570
5701
  declare function getSettleFeesInstructionDataEncoder(): FixedSizeEncoder<SettleFeesInstructionDataArgs>;
5571
5702
  declare function getSettleFeesInstructionDataDecoder(): FixedSizeDecoder<SettleFeesInstructionData>;
5572
5703
  declare function getSettleFeesInstructionDataCodec(): FixedSizeCodec<SettleFeesInstructionDataArgs, SettleFeesInstructionData>;
5573
- type SettleFeesAsyncInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = {
5574
- settlementAuthority: TransactionSigner<TAccountSettlementAuthority>;
5704
+ type SettleFeesAsyncInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = {
5705
+ payer: TransactionSigner<TAccountPayer>;
5575
5706
  initializerProgram?: Address<TAccountInitializerProgram>;
5576
5707
  initializerConfig: Address<TAccountInitializerConfig>;
5577
5708
  launch: Address<TAccountLaunch>;
@@ -5601,11 +5732,11 @@ type SettleFeesAsyncInput<TAccountSettlementAuthority extends string = string, T
5601
5732
  minBaseToQuoteOut: SettleFeesInstructionDataArgs['minBaseToQuoteOut'];
5602
5733
  minQuoteToBaseOut: SettleFeesInstructionDataArgs['minQuoteToBaseOut'];
5603
5734
  };
5604
- declare function getSettleFeesInstructionAsync<TAccountSettlementAuthority extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountBaseVault extends string, TAccountQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountSettlementSigner extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountNamespace extends string, TAccountHookConfig extends string, TAccountHookProgram extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountGateCosigner extends string, TAccountCosignGateControl extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleFeesAsyncInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>, config?: {
5735
+ declare function getSettleFeesInstructionAsync<TAccountPayer extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountBaseVault extends string, TAccountQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountSettlementSigner extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountNamespace extends string, TAccountHookConfig extends string, TAccountHookProgram extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountGateCosigner extends string, TAccountCosignGateControl extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleFeesAsyncInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>, config?: {
5605
5736
  programAddress?: TProgramAddress;
5606
- }): Promise<SettleFeesInstruction<TProgramAddress, TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>>;
5607
- type SettleFeesInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = {
5608
- settlementAuthority: TransactionSigner<TAccountSettlementAuthority>;
5737
+ }): Promise<SettleFeesInstruction<TProgramAddress, TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>>;
5738
+ type SettleFeesInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = {
5739
+ payer: TransactionSigner<TAccountPayer>;
5609
5740
  initializerProgram?: Address<TAccountInitializerProgram>;
5610
5741
  initializerConfig: Address<TAccountInitializerConfig>;
5611
5742
  launch: Address<TAccountLaunch>;
@@ -5635,13 +5766,13 @@ type SettleFeesInput<TAccountSettlementAuthority extends string = string, TAccou
5635
5766
  minBaseToQuoteOut: SettleFeesInstructionDataArgs['minBaseToQuoteOut'];
5636
5767
  minQuoteToBaseOut: SettleFeesInstructionDataArgs['minQuoteToBaseOut'];
5637
5768
  };
5638
- declare function getSettleFeesInstruction<TAccountSettlementAuthority extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountBaseVault extends string, TAccountQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountSettlementSigner extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountNamespace extends string, TAccountHookConfig extends string, TAccountHookProgram extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountGateCosigner extends string, TAccountCosignGateControl extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleFeesInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>, config?: {
5769
+ declare function getSettleFeesInstruction<TAccountPayer extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountBaseVault extends string, TAccountQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountSettlementSigner extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountNamespace extends string, TAccountHookConfig extends string, TAccountHookProgram extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountGateCosigner extends string, TAccountCosignGateControl extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleFeesInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>, config?: {
5639
5770
  programAddress?: TProgramAddress;
5640
- }): SettleFeesInstruction<TProgramAddress, TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>;
5771
+ }): SettleFeesInstruction<TProgramAddress, TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>;
5641
5772
  type ParsedSettleFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
5642
5773
  programAddress: Address<TProgram>;
5643
5774
  accounts: {
5644
- settlementAuthority: TAccountMetas[0];
5775
+ payer: TAccountMetas[0];
5645
5776
  initializerProgram: TAccountMetas[1];
5646
5777
  initializerConfig: TAccountMetas[2];
5647
5778
  launch: TAccountMetas[3];
@@ -5683,8 +5814,8 @@ declare function parseSettleFeesInstruction<TProgram extends string, TAccountMet
5683
5814
 
5684
5815
  declare const SETTLE_MIGRATED_FEES_DISCRIMINATOR: Uint8Array<ArrayBuffer>;
5685
5816
  declare function getSettleMigratedFeesDiscriminatorBytes(): ReadonlyUint8Array<ArrayBuffer>;
5686
- type SettleMigratedFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountSettlementAuthority extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountLaunchBaseVault extends string | AccountMeta<string> = string, TAccountLaunchQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountCpmmProgram extends string | AccountMeta<string> = '9PSxVPoPfnbZ8Q1uQhgS6ZxvBjFboZtebNsu34umxkgQ', TAccountCpmmConfig extends string | AccountMeta<string> = string, TAccountPool extends string | AccountMeta<string> = string, TAccountPoolAuthority extends string | AccountMeta<string> = string, TAccountPoolVault0 extends string | AccountMeta<string> = string, TAccountPoolVault1 extends string | AccountMeta<string> = string, TAccountProtocolFeePosition extends string | AccountMeta<string> = string, TAccountRouterLpPosition extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountOracle extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
5687
- TAccountSettlementAuthority extends string ? WritableSignerAccount<TAccountSettlementAuthority> & AccountSignerMeta<TAccountSettlementAuthority> : TAccountSettlementAuthority,
5817
+ type SettleMigratedFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountLaunchBaseVault extends string | AccountMeta<string> = string, TAccountLaunchQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountCpmmProgram extends string | AccountMeta<string> = '9PSxVPoPfnbZ8Q1uQhgS6ZxvBjFboZtebNsu34umxkgQ', TAccountCpmmConfig extends string | AccountMeta<string> = string, TAccountPool extends string | AccountMeta<string> = string, TAccountPoolAuthority extends string | AccountMeta<string> = string, TAccountPoolVault0 extends string | AccountMeta<string> = string, TAccountPoolVault1 extends string | AccountMeta<string> = string, TAccountProtocolFeePosition extends string | AccountMeta<string> = string, TAccountRouterLpPosition extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountOracle extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[
5818
+ TAccountPayer extends string ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<TAccountPayer> : TAccountPayer,
5688
5819
  TAccountInitializerProgram extends string ? ReadonlyAccount<TAccountInitializerProgram> : TAccountInitializerProgram,
5689
5820
  TAccountInitializerConfig extends string ? ReadonlyAccount<TAccountInitializerConfig> : TAccountInitializerConfig,
5690
5821
  TAccountLaunch extends string ? WritableAccount<TAccountLaunch> : TAccountLaunch,
@@ -5732,8 +5863,8 @@ type SettleMigratedFeesInstructionDataArgs = {
5732
5863
  declare function getSettleMigratedFeesInstructionDataEncoder(): Encoder<SettleMigratedFeesInstructionDataArgs>;
5733
5864
  declare function getSettleMigratedFeesInstructionDataDecoder(): Decoder<SettleMigratedFeesInstructionData>;
5734
5865
  declare function getSettleMigratedFeesInstructionDataCodec(): Codec<SettleMigratedFeesInstructionDataArgs, SettleMigratedFeesInstructionData>;
5735
- type SettleMigratedFeesAsyncInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = {
5736
- settlementAuthority: TransactionSigner<TAccountSettlementAuthority>;
5866
+ type SettleMigratedFeesAsyncInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = {
5867
+ payer: TransactionSigner<TAccountPayer>;
5737
5868
  initializerProgram?: Address<TAccountInitializerProgram>;
5738
5869
  initializerConfig: Address<TAccountInitializerConfig>;
5739
5870
  launch: Address<TAccountLaunch>;
@@ -5768,11 +5899,11 @@ type SettleMigratedFeesAsyncInput<TAccountSettlementAuthority extends string = s
5768
5899
  lpRebalance: SettleMigratedFeesInstructionDataArgs['lpRebalance'];
5769
5900
  minLpSharesOut: SettleMigratedFeesInstructionDataArgs['minLpSharesOut'];
5770
5901
  };
5771
- declare function getSettleMigratedFeesInstructionAsync<TAccountSettlementAuthority extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountLaunchBaseVault extends string, TAccountLaunchQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountCpmmProgram extends string, TAccountCpmmConfig extends string, TAccountPool extends string, TAccountPoolAuthority extends string, TAccountPoolVault0 extends string, TAccountPoolVault1 extends string, TAccountProtocolFeePosition extends string, TAccountRouterLpPosition extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountOracle extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleMigratedFeesAsyncInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>, config?: {
5902
+ declare function getSettleMigratedFeesInstructionAsync<TAccountPayer extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountLaunchBaseVault extends string, TAccountLaunchQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountCpmmProgram extends string, TAccountCpmmConfig extends string, TAccountPool extends string, TAccountPoolAuthority extends string, TAccountPoolVault0 extends string, TAccountPoolVault1 extends string, TAccountProtocolFeePosition extends string, TAccountRouterLpPosition extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountOracle extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleMigratedFeesAsyncInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>, config?: {
5772
5903
  programAddress?: TProgramAddress;
5773
- }): Promise<SettleMigratedFeesInstruction<TProgramAddress, TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>>;
5774
- type SettleMigratedFeesInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = {
5775
- settlementAuthority: TransactionSigner<TAccountSettlementAuthority>;
5904
+ }): Promise<SettleMigratedFeesInstruction<TProgramAddress, TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>>;
5905
+ type SettleMigratedFeesInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = {
5906
+ payer: TransactionSigner<TAccountPayer>;
5776
5907
  initializerProgram?: Address<TAccountInitializerProgram>;
5777
5908
  initializerConfig: Address<TAccountInitializerConfig>;
5778
5909
  launch: Address<TAccountLaunch>;
@@ -5807,13 +5938,13 @@ type SettleMigratedFeesInput<TAccountSettlementAuthority extends string = string
5807
5938
  lpRebalance: SettleMigratedFeesInstructionDataArgs['lpRebalance'];
5808
5939
  minLpSharesOut: SettleMigratedFeesInstructionDataArgs['minLpSharesOut'];
5809
5940
  };
5810
- declare function getSettleMigratedFeesInstruction<TAccountSettlementAuthority extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountLaunchBaseVault extends string, TAccountLaunchQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountCpmmProgram extends string, TAccountCpmmConfig extends string, TAccountPool extends string, TAccountPoolAuthority extends string, TAccountPoolVault0 extends string, TAccountPoolVault1 extends string, TAccountProtocolFeePosition extends string, TAccountRouterLpPosition extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountOracle extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleMigratedFeesInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>, config?: {
5941
+ declare function getSettleMigratedFeesInstruction<TAccountPayer extends string, TAccountInitializerProgram extends string, TAccountInitializerConfig extends string, TAccountLaunch extends string, TAccountLaunchFeeState extends string, TAccountLaunchAuthority extends string, TAccountBaseMint extends string, TAccountQuoteMint extends string, TAccountLaunchBaseVault extends string, TAccountLaunchQuoteVault extends string, TAccountRehypeState extends string, TAccountRehypeAuthority extends string, TAccountRouterBaseAta extends string, TAccountRouterQuoteAta extends string, TAccountBuybackDestination extends string, TAccountBuybackBaseAta extends string, TAccountBuybackQuoteAta extends string, TAccountCpmmProgram extends string, TAccountCpmmConfig extends string, TAccountPool extends string, TAccountPoolAuthority extends string, TAccountPoolVault0 extends string, TAccountPoolVault1 extends string, TAccountProtocolFeePosition extends string, TAccountRouterLpPosition extends string, TAccountBaseTokenProgram extends string, TAccountQuoteTokenProgram extends string, TAccountAssociatedTokenProgram extends string, TAccountSystemProgram extends string, TAccountOracle extends string, TProgramAddress extends Address = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS>(input: SettleMigratedFeesInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>, config?: {
5811
5942
  programAddress?: TProgramAddress;
5812
- }): SettleMigratedFeesInstruction<TProgramAddress, TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>;
5943
+ }): SettleMigratedFeesInstruction<TProgramAddress, TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>;
5813
5944
  type ParsedSettleMigratedFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
5814
5945
  programAddress: Address<TProgram>;
5815
5946
  accounts: {
5816
- settlementAuthority: TAccountMetas[0];
5947
+ payer: TAccountMetas[0];
5817
5948
  initializerProgram: TAccountMetas[1];
5818
5949
  initializerConfig: TAccountMetas[2];
5819
5950
  launch: TAccountMetas[3];
@@ -5939,16 +6070,16 @@ declare const index$6_SETTLE_FEES_DISCRIMINATOR: typeof SETTLE_FEES_DISCRIMINATO
5939
6070
  declare const index$6_SETTLE_MIGRATED_FEES_DISCRIMINATOR: typeof SETTLE_MIGRATED_FEES_DISCRIMINATOR;
5940
6071
  type index$6_SettleFeesArgs = SettleFeesArgs;
5941
6072
  type index$6_SettleFeesArgsArgs = SettleFeesArgsArgs;
5942
- type index$6_SettleFeesAsyncInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = SettleFeesAsyncInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>;
5943
- type index$6_SettleFeesInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = SettleFeesInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>;
5944
- type index$6_SettleFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountSettlementAuthority extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountBaseVault extends string | AccountMeta<string> = string, TAccountQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountSettlementSigner extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountNamespace extends string | AccountMeta<string> = string, TAccountHookConfig extends string | AccountMeta<string> = string, TAccountHookProgram extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountGateCosigner extends string | AccountMeta<string> = string, TAccountCosignGateControl extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = SettleFeesInstruction<TProgram, TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl, TRemainingAccounts>;
6073
+ type index$6_SettleFeesAsyncInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = SettleFeesAsyncInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>;
6074
+ type index$6_SettleFeesInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountBaseVault extends string = string, TAccountQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountSettlementSigner extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountNamespace extends string = string, TAccountHookConfig extends string = string, TAccountHookProgram extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountGateCosigner extends string = string, TAccountCosignGateControl extends string = string> = SettleFeesInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl>;
6075
+ type index$6_SettleFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountBaseVault extends string | AccountMeta<string> = string, TAccountQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountSettlementSigner extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountNamespace extends string | AccountMeta<string> = string, TAccountHookConfig extends string | AccountMeta<string> = string, TAccountHookProgram extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountGateCosigner extends string | AccountMeta<string> = string, TAccountCosignGateControl extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = SettleFeesInstruction<TProgram, TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountBaseVault, TAccountQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountSettlementSigner, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountNamespace, TAccountHookConfig, TAccountHookProgram, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountGateCosigner, TAccountCosignGateControl, TRemainingAccounts>;
5945
6076
  type index$6_SettleFeesInstructionData = SettleFeesInstructionData;
5946
6077
  type index$6_SettleFeesInstructionDataArgs = SettleFeesInstructionDataArgs;
5947
6078
  type index$6_SettleMigratedFeesArgs = SettleMigratedFeesArgs;
5948
6079
  type index$6_SettleMigratedFeesArgsArgs = SettleMigratedFeesArgsArgs;
5949
- type index$6_SettleMigratedFeesAsyncInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = SettleMigratedFeesAsyncInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>;
5950
- type index$6_SettleMigratedFeesInput<TAccountSettlementAuthority extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = SettleMigratedFeesInput<TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>;
5951
- type index$6_SettleMigratedFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountSettlementAuthority extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountLaunchBaseVault extends string | AccountMeta<string> = string, TAccountLaunchQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountCpmmProgram extends string | AccountMeta<string> = '9PSxVPoPfnbZ8Q1uQhgS6ZxvBjFboZtebNsu34umxkgQ', TAccountCpmmConfig extends string | AccountMeta<string> = string, TAccountPool extends string | AccountMeta<string> = string, TAccountPoolAuthority extends string | AccountMeta<string> = string, TAccountPoolVault0 extends string | AccountMeta<string> = string, TAccountPoolVault1 extends string | AccountMeta<string> = string, TAccountProtocolFeePosition extends string | AccountMeta<string> = string, TAccountRouterLpPosition extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountOracle extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = SettleMigratedFeesInstruction<TProgram, TAccountSettlementAuthority, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle, TRemainingAccounts>;
6080
+ type index$6_SettleMigratedFeesAsyncInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = SettleMigratedFeesAsyncInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>;
6081
+ type index$6_SettleMigratedFeesInput<TAccountPayer extends string = string, TAccountInitializerProgram extends string = string, TAccountInitializerConfig extends string = string, TAccountLaunch extends string = string, TAccountLaunchFeeState extends string = string, TAccountLaunchAuthority extends string = string, TAccountBaseMint extends string = string, TAccountQuoteMint extends string = string, TAccountLaunchBaseVault extends string = string, TAccountLaunchQuoteVault extends string = string, TAccountRehypeState extends string = string, TAccountRehypeAuthority extends string = string, TAccountRouterBaseAta extends string = string, TAccountRouterQuoteAta extends string = string, TAccountBuybackDestination extends string = string, TAccountBuybackBaseAta extends string = string, TAccountBuybackQuoteAta extends string = string, TAccountCpmmProgram extends string = string, TAccountCpmmConfig extends string = string, TAccountPool extends string = string, TAccountPoolAuthority extends string = string, TAccountPoolVault0 extends string = string, TAccountPoolVault1 extends string = string, TAccountProtocolFeePosition extends string = string, TAccountRouterLpPosition extends string = string, TAccountBaseTokenProgram extends string = string, TAccountQuoteTokenProgram extends string = string, TAccountAssociatedTokenProgram extends string = string, TAccountSystemProgram extends string = string, TAccountOracle extends string = string> = SettleMigratedFeesInput<TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle>;
6082
+ type index$6_SettleMigratedFeesInstruction<TProgram extends string = typeof DOPPLER_REHYPE_ROUTER_V1_PROGRAM_ADDRESS, TAccountPayer extends string | AccountMeta<string> = string, TAccountInitializerProgram extends string | AccountMeta<string> = '4h3Dqyo5qmteJoMxXt3tdtfXELDB6pdRTPU9mWruiKp1', TAccountInitializerConfig extends string | AccountMeta<string> = string, TAccountLaunch extends string | AccountMeta<string> = string, TAccountLaunchFeeState extends string | AccountMeta<string> = string, TAccountLaunchAuthority extends string | AccountMeta<string> = string, TAccountBaseMint extends string | AccountMeta<string> = string, TAccountQuoteMint extends string | AccountMeta<string> = string, TAccountLaunchBaseVault extends string | AccountMeta<string> = string, TAccountLaunchQuoteVault extends string | AccountMeta<string> = string, TAccountRehypeState extends string | AccountMeta<string> = string, TAccountRehypeAuthority extends string | AccountMeta<string> = string, TAccountRouterBaseAta extends string | AccountMeta<string> = string, TAccountRouterQuoteAta extends string | AccountMeta<string> = string, TAccountBuybackDestination extends string | AccountMeta<string> = string, TAccountBuybackBaseAta extends string | AccountMeta<string> = string, TAccountBuybackQuoteAta extends string | AccountMeta<string> = string, TAccountCpmmProgram extends string | AccountMeta<string> = '9PSxVPoPfnbZ8Q1uQhgS6ZxvBjFboZtebNsu34umxkgQ', TAccountCpmmConfig extends string | AccountMeta<string> = string, TAccountPool extends string | AccountMeta<string> = string, TAccountPoolAuthority extends string | AccountMeta<string> = string, TAccountPoolVault0 extends string | AccountMeta<string> = string, TAccountPoolVault1 extends string | AccountMeta<string> = string, TAccountProtocolFeePosition extends string | AccountMeta<string> = string, TAccountRouterLpPosition extends string | AccountMeta<string> = string, TAccountBaseTokenProgram extends string | AccountMeta<string> = string, TAccountQuoteTokenProgram extends string | AccountMeta<string> = string, TAccountAssociatedTokenProgram extends string | AccountMeta<string> = 'ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL', TAccountSystemProgram extends string | AccountMeta<string> = '11111111111111111111111111111111', TAccountOracle extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = SettleMigratedFeesInstruction<TProgram, TAccountPayer, TAccountInitializerProgram, TAccountInitializerConfig, TAccountLaunch, TAccountLaunchFeeState, TAccountLaunchAuthority, TAccountBaseMint, TAccountQuoteMint, TAccountLaunchBaseVault, TAccountLaunchQuoteVault, TAccountRehypeState, TAccountRehypeAuthority, TAccountRouterBaseAta, TAccountRouterQuoteAta, TAccountBuybackDestination, TAccountBuybackBaseAta, TAccountBuybackQuoteAta, TAccountCpmmProgram, TAccountCpmmConfig, TAccountPool, TAccountPoolAuthority, TAccountPoolVault0, TAccountPoolVault1, TAccountProtocolFeePosition, TAccountRouterLpPosition, TAccountBaseTokenProgram, TAccountQuoteTokenProgram, TAccountAssociatedTokenProgram, TAccountSystemProgram, TAccountOracle, TRemainingAccounts>;
5952
6083
  type index$6_SettleMigratedFeesInstructionData = SettleMigratedFeesInstructionData;
5953
6084
  type index$6_SettleMigratedFeesInstructionDataArgs = SettleMigratedFeesInstructionDataArgs;
5954
6085
  declare const index$6_decodeAmmConfig: typeof decodeAmmConfig;
@@ -8157,7 +8288,6 @@ type PrepareFeeRehypothecationLaunchInput = PrepareLaunchBaseInput & {
8157
8288
  payer: TransactionSigner;
8158
8289
  authority: TransactionSigner;
8159
8290
  buybackDestination: Address;
8160
- settlementAuthority: Address;
8161
8291
  beneficiaries: ReadonlyArray<RehypeBeneficiaryInputArgs>;
8162
8292
  strategy: FeeRehypothecationStrategy;
8163
8293
  dynamicFee?: DynamicFeeScheduleArgs | null;
@@ -8219,7 +8349,7 @@ type FeeRehypothecationRpc = Rpc<GetAccountInfoApi & GetMultipleAccountsApi>;
8219
8349
  type PrepareFeeRehypothecationSettlementInput = {
8220
8350
  rpc: FeeRehypothecationRpc;
8221
8351
  launch: Address;
8222
- settlementAuthority: TransactionSigner;
8352
+ payer: TransactionSigner;
8223
8353
  deployment?: SolanaFeeRehypothecationDeployment;
8224
8354
  slippageBps?: number;
8225
8355
  minBaseToQuoteOut?: bigint;
@@ -10115,11 +10245,46 @@ type ParsedRegisterEntryInstruction<TProgram extends string = typeof PREDICTION_
10115
10245
  };
10116
10246
  declare function parseRegisterEntryInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedRegisterEntryInstruction<TProgram, TAccountMetas>;
10117
10247
 
10248
+ type PrepareClaimAndCloseInput = {
10249
+ market: Address;
10250
+ potVault: Address;
10251
+ winnerMint: Address;
10252
+ quoteMint: Address;
10253
+ claimer: TransactionSigner;
10254
+ payer: TransactionSigner;
10255
+ /** Full balance of the claimer's outcome ATA. */
10256
+ outcomeTokenBalance: bigint;
10257
+ /** Receives the outcome ATA's recovered rent. Defaults to the payer. */
10258
+ rentDestination?: Address;
10259
+ baseTokenProgram?: Address;
10260
+ quoteTokenProgram?: Address;
10261
+ associatedTokenProgram?: Address;
10262
+ systemProgram?: Address;
10263
+ predictionMigratorProgram?: Address;
10264
+ };
10265
+ type PrepareClaimAndCloseResult = {
10266
+ outcomeTokenAccount: Address;
10267
+ quoteTokenAccount: Address;
10268
+ createQuoteTokenAccountInstruction: Instruction;
10269
+ claimInstruction: Instruction;
10270
+ closeOutcomeTokenAccountInstruction: Instruction;
10271
+ instructions: Instruction[];
10272
+ };
10273
+ /**
10274
+ * Prepares an atomic prediction-market claim followed by closing the emptied outcome ATA.
10275
+ *
10276
+ * The close fails and rolls back the transaction unless `outcomeTokenBalance` matches the
10277
+ * account's full balance. Only close after the market no longer needs later `claim(0)` harvests;
10278
+ * the on-chain claim path requires this ATA even when no additional outcome tokens are burned.
10279
+ */
10280
+ declare function prepareClaimAndClose(input: PrepareClaimAndCloseInput): Promise<PrepareClaimAndCloseResult>;
10281
+
10118
10282
  declare function getPredictionMarketAddress(oracleState: Address, quoteMint: Address, programId?: Address): Promise<ProgramDerivedAddress>;
10119
10283
  declare function getPredictionMarketAuthorityAddress(market: Address, programId?: Address): Promise<ProgramDerivedAddress>;
10120
10284
  declare function getPredictionPotVaultAddress(market: Address, programId?: Address): Promise<ProgramDerivedAddress>;
10121
10285
  declare function getPredictionEntryAddress(market: Address, entryId: ReadonlyUint8Array | Uint8Array, programId?: Address): Promise<ProgramDerivedAddress>;
10122
10286
  declare function getPredictionEntryByMintAddress(market: Address, mint: Address, programId?: Address): Promise<ProgramDerivedAddress>;
10287
+ declare function getPredictionClaimReceiptAddress(market: Address, claimer: Address, programId?: Address): Promise<ProgramDerivedAddress>;
10123
10288
 
10124
10289
  declare const index$1_CLAIM_DISCRIMINATOR: typeof CLAIM_DISCRIMINATOR;
10125
10290
  declare const index$1_CLAIM_RECEIPT_DISCRIMINATOR: typeof CLAIM_RECEIPT_DISCRIMINATOR;
@@ -10197,6 +10362,8 @@ type index$1_PredictionMigratorPlugin = PredictionMigratorPlugin;
10197
10362
  type index$1_PredictionMigratorPluginAccounts = PredictionMigratorPluginAccounts;
10198
10363
  type index$1_PredictionMigratorPluginInstructions = PredictionMigratorPluginInstructions;
10199
10364
  type index$1_PredictionMigratorPluginRequirements = PredictionMigratorPluginRequirements;
10365
+ type index$1_PrepareClaimAndCloseInput = PrepareClaimAndCloseInput;
10366
+ type index$1_PrepareClaimAndCloseResult = PrepareClaimAndCloseResult;
10200
10367
  type index$1_PreviewPayoutIfWinnerArgs = PreviewPayoutIfWinnerArgs;
10201
10368
  type index$1_PreviewPayoutIfWinnerArgsArgs = PreviewPayoutIfWinnerArgsArgs;
10202
10369
  type index$1_PreviewPayoutIfWinnerInput<TAccountMarket extends string = string, TAccountCandidateMint extends string = string> = PreviewPayoutIfWinnerInput<TAccountMarket, TAccountCandidateMint>;
@@ -10303,6 +10470,7 @@ declare const index$1_getMigrateEntryInstructionDataEncoder: typeof getMigrateEn
10303
10470
  declare const index$1_getPayloadBufCodec: typeof getPayloadBufCodec;
10304
10471
  declare const index$1_getPayloadBufDecoder: typeof getPayloadBufDecoder;
10305
10472
  declare const index$1_getPayloadBufEncoder: typeof getPayloadBufEncoder;
10473
+ declare const index$1_getPredictionClaimReceiptAddress: typeof getPredictionClaimReceiptAddress;
10306
10474
  declare const index$1_getPredictionEntryAddress: typeof getPredictionEntryAddress;
10307
10475
  declare const index$1_getPredictionEntryByMintAddress: typeof getPredictionEntryByMintAddress;
10308
10476
  declare const index$1_getPredictionMarketAddress: typeof getPredictionMarketAddress;
@@ -10338,8 +10506,9 @@ declare const index$1_parsePredictionMigratorInstruction: typeof parsePrediction
10338
10506
  declare const index$1_parsePreviewPayoutIfWinnerInstruction: typeof parsePreviewPayoutIfWinnerInstruction;
10339
10507
  declare const index$1_parseRegisterEntryInstruction: typeof parseRegisterEntryInstruction;
10340
10508
  declare const index$1_predictionMigratorProgram: typeof predictionMigratorProgram;
10509
+ declare const index$1_prepareClaimAndClose: typeof prepareClaimAndClose;
10341
10510
  declare namespace index$1 {
10342
- export { index$1_CLAIM_DISCRIMINATOR as CLAIM_DISCRIMINATOR, index$1_CLAIM_RECEIPT_DISCRIMINATOR as CLAIM_RECEIPT_DISCRIMINATOR, type index$1_ClaimAsyncInput as ClaimAsyncInput, type index$1_ClaimInput as ClaimInput, type index$1_ClaimInstruction as ClaimInstruction, type index$1_ClaimInstructionData as ClaimInstructionData, type index$1_ClaimInstructionDataArgs as ClaimInstructionDataArgs, type index$1_ClaimReceipt as ClaimReceipt, type index$1_ClaimReceiptArgs as ClaimReceiptArgs, index$1_ENTRY_BY_MINT_DISCRIMINATOR as ENTRY_BY_MINT_DISCRIMINATOR, index$1_ENTRY_DISCRIMINATOR as ENTRY_DISCRIMINATOR, type index$1_Entry as Entry, type index$1_EntryArgs as EntryArgs, type index$1_EntryByMint as EntryByMint, type index$1_EntryByMintArgs as EntryByMintArgs, type index$1_EntryMigrated as EntryMigrated, type index$1_EntryMigratedArgs as EntryMigratedArgs, type index$1_EntryRegistered as EntryRegistered, type index$1_EntryRegisteredArgs as EntryRegisteredArgs, index$1_INIT_CONFIG_DISCRIMINATOR as INIT_CONFIG_DISCRIMINATOR, type index$1_InitConfig as InitConfig, type index$1_InitConfigArgs as InitConfigArgs, index$1_LAUNCH_DISCRIMINATOR as LAUNCH_DISCRIMINATOR, type index$1_Launch as Launch, type index$1_LaunchArgs as LaunchArgs, index$1_MARKET_DISCRIMINATOR as MARKET_DISCRIMINATOR, index$1_MIGRATE_ENTRY_DISCRIMINATOR as MIGRATE_ENTRY_DISCRIMINATOR, type index$1_Market as Market, type index$1_MarketArgs as MarketArgs, type index$1_MarketCreated as MarketCreated, type index$1_MarketCreatedArgs as MarketCreatedArgs, type index$1_MarketResolved as MarketResolved, type index$1_MarketResolvedArgs as MarketResolvedArgs, type index$1_MigrateEntryArgs as MigrateEntryArgs, type index$1_MigrateEntryArgsArgs as MigrateEntryArgsArgs, type index$1_MigrateEntryAsyncInput as MigrateEntryAsyncInput, type index$1_MigrateEntryInput as MigrateEntryInput, type index$1_MigrateEntryInstruction as MigrateEntryInstruction, type index$1_MigrateEntryInstructionData as MigrateEntryInstructionData, type index$1_MigrateEntryInstructionDataArgs as MigrateEntryInstructionDataArgs, ORACLE_STATE_DISCRIMINATOR$1 as ORACLE_STATE_DISCRIMINATOR, type OracleState$1 as OracleState, type OracleStateArgs$1 as OracleStateArgs, index$1_PREDICTION_MIGRATOR_ERROR__CLAIMABLE_SUPPLY_ALREADY_SET as PREDICTION_MIGRATOR_ERROR__CLAIMABLE_SUPPLY_ALREADY_SET, index$1_PREDICTION_MIGRATOR_ERROR__ENTRY_ALREADY_MIGRATED as PREDICTION_MIGRATOR_ERROR__ENTRY_ALREADY_MIGRATED, index$1_PREDICTION_MIGRATOR_ERROR__INSUFFICIENT_BALANCE as PREDICTION_MIGRATOR_ERROR__INSUFFICIENT_BALANCE, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_ENTRY_ID as PREDICTION_MIGRATOR_ERROR__INVALID_ENTRY_ID, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_INPUT as PREDICTION_MIGRATOR_ERROR__INVALID_INPUT, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_MARKET as PREDICTION_MIGRATOR_ERROR__INVALID_MARKET, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_MINT as PREDICTION_MIGRATOR_ERROR__INVALID_MINT, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_ORACLE as PREDICTION_MIGRATOR_ERROR__INVALID_ORACLE, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_VAULT as PREDICTION_MIGRATOR_ERROR__INVALID_VAULT, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_WINNER_MINT as PREDICTION_MIGRATOR_ERROR__INVALID_WINNER_MINT, index$1_PREDICTION_MIGRATOR_ERROR__MARKET_NOT_RESOLVED as PREDICTION_MIGRATOR_ERROR__MARKET_NOT_RESOLVED, index$1_PREDICTION_MIGRATOR_ERROR__MATH_OVERFLOW as PREDICTION_MIGRATOR_ERROR__MATH_OVERFLOW, index$1_PREDICTION_MIGRATOR_ERROR__NO_PENDING_REWARDS as PREDICTION_MIGRATOR_ERROR__NO_PENDING_REWARDS, index$1_PREDICTION_MIGRATOR_ERROR__ORACLE_NOT_FINALIZED as PREDICTION_MIGRATOR_ERROR__ORACLE_NOT_FINALIZED, index$1_PREDICTION_MIGRATOR_ERROR__QUOTE_MINT_MISMATCH as PREDICTION_MIGRATOR_ERROR__QUOTE_MINT_MISMATCH, index$1_PREDICTION_MIGRATOR_ERROR__UNAUTHORIZED as PREDICTION_MIGRATOR_ERROR__UNAUTHORIZED, index$1_PREDICTION_MIGRATOR_ERROR__WINNING_ENTRY_NOT_MIGRATED as PREDICTION_MIGRATOR_ERROR__WINNING_ENTRY_NOT_MIGRATED, index$1_PREDICTION_MIGRATOR_ERROR__ZERO_CLAIMABLE_SUPPLY as PREDICTION_MIGRATOR_ERROR__ZERO_CLAIMABLE_SUPPLY, index$1_PREDICTION_MIGRATOR_PROGRAM_ADDRESS as PREDICTION_MIGRATOR_PROGRAM_ADDRESS, index$1_PREVIEW_PAYOUT_IF_WINNER_DISCRIMINATOR as PREVIEW_PAYOUT_IF_WINNER_DISCRIMINATOR, type index$1_ParsedClaimInstruction as ParsedClaimInstruction, type index$1_ParsedMigrateEntryInstruction as ParsedMigrateEntryInstruction, type index$1_ParsedPredictionMigratorInstruction as ParsedPredictionMigratorInstruction, type index$1_ParsedPreviewPayoutIfWinnerInstruction as ParsedPreviewPayoutIfWinnerInstruction, type index$1_ParsedRegisterEntryInstruction as ParsedRegisterEntryInstruction, type index$1_PayloadBuf as PayloadBuf, type index$1_PayloadBufArgs as PayloadBufArgs, index$1_PredictionMigratorAccount as PredictionMigratorAccount, type index$1_PredictionMigratorError as PredictionMigratorError, index$1_PredictionMigratorInstruction as PredictionMigratorInstruction, type index$1_PredictionMigratorPlugin as PredictionMigratorPlugin, type index$1_PredictionMigratorPluginAccounts as PredictionMigratorPluginAccounts, type index$1_PredictionMigratorPluginInstructions as PredictionMigratorPluginInstructions, type index$1_PredictionMigratorPluginRequirements as PredictionMigratorPluginRequirements, type index$1_PreviewPayoutIfWinnerArgs as PreviewPayoutIfWinnerArgs, type index$1_PreviewPayoutIfWinnerArgsArgs as PreviewPayoutIfWinnerArgsArgs, type index$1_PreviewPayoutIfWinnerInput as PreviewPayoutIfWinnerInput, type index$1_PreviewPayoutIfWinnerInstruction as PreviewPayoutIfWinnerInstruction, type index$1_PreviewPayoutIfWinnerInstructionData as PreviewPayoutIfWinnerInstructionData, type index$1_PreviewPayoutIfWinnerInstructionDataArgs as PreviewPayoutIfWinnerInstructionDataArgs, index$1_REGISTER_ENTRY_DISCRIMINATOR as REGISTER_ENTRY_DISCRIMINATOR, type index$1_RegisterEntryArgs as RegisterEntryArgs, type index$1_RegisterEntryArgsArgs as RegisterEntryArgsArgs, type index$1_RegisterEntryAsyncInput as RegisterEntryAsyncInput, type index$1_RegisterEntryInput as RegisterEntryInput, type index$1_RegisterEntryInstruction as RegisterEntryInstruction, type index$1_RegisterEntryInstructionData as RegisterEntryInstructionData, type index$1_RegisterEntryInstructionDataArgs as RegisterEntryInstructionDataArgs, type index$1_RewardsClaimed as RewardsClaimed, type index$1_RewardsClaimedArgs as RewardsClaimedArgs, index$1_decodeClaimReceipt as decodeClaimReceipt, index$1_decodeEntry as decodeEntry, index$1_decodeEntryByMint as decodeEntryByMint, index$1_decodeInitConfig as decodeInitConfig, index$1_decodeLaunch as decodeLaunch, index$1_decodeMarket as decodeMarket, decodeOracleState$1 as decodeOracleState, index$1_fetchAllClaimReceipt as fetchAllClaimReceipt, index$1_fetchAllEntry as fetchAllEntry, index$1_fetchAllEntryByMint as fetchAllEntryByMint, index$1_fetchAllInitConfig as fetchAllInitConfig, index$1_fetchAllLaunch as fetchAllLaunch, index$1_fetchAllMarket as fetchAllMarket, index$1_fetchAllMaybeClaimReceipt as fetchAllMaybeClaimReceipt, index$1_fetchAllMaybeEntry as fetchAllMaybeEntry, index$1_fetchAllMaybeEntryByMint as fetchAllMaybeEntryByMint, index$1_fetchAllMaybeInitConfig as fetchAllMaybeInitConfig, index$1_fetchAllMaybeLaunch as fetchAllMaybeLaunch, index$1_fetchAllMaybeMarket as fetchAllMaybeMarket, fetchAllMaybeOracleState$1 as fetchAllMaybeOracleState, fetchAllOracleState$1 as fetchAllOracleState, index$1_fetchClaimReceipt as fetchClaimReceipt, index$1_fetchEntry as fetchEntry, index$1_fetchEntryByMint as fetchEntryByMint, index$1_fetchInitConfig as fetchInitConfig, index$1_fetchLaunch as fetchLaunch, index$1_fetchMarket as fetchMarket, index$1_fetchMaybeClaimReceipt as fetchMaybeClaimReceipt, index$1_fetchMaybeEntry as fetchMaybeEntry, index$1_fetchMaybeEntryByMint as fetchMaybeEntryByMint, index$1_fetchMaybeInitConfig as fetchMaybeInitConfig, index$1_fetchMaybeLaunch as fetchMaybeLaunch, index$1_fetchMaybeMarket as fetchMaybeMarket, fetchMaybeOracleState$1 as fetchMaybeOracleState, fetchOracleState$1 as fetchOracleState, index$1_getClaimDiscriminatorBytes as getClaimDiscriminatorBytes, index$1_getClaimInstruction as getClaimInstruction, index$1_getClaimInstructionAsync as getClaimInstructionAsync, index$1_getClaimInstructionDataCodec as getClaimInstructionDataCodec, index$1_getClaimInstructionDataDecoder as getClaimInstructionDataDecoder, index$1_getClaimInstructionDataEncoder as getClaimInstructionDataEncoder, index$1_getClaimReceiptCodec as getClaimReceiptCodec, index$1_getClaimReceiptDecoder as getClaimReceiptDecoder, index$1_getClaimReceiptDiscriminatorBytes as getClaimReceiptDiscriminatorBytes, index$1_getClaimReceiptEncoder as getClaimReceiptEncoder, index$1_getClaimReceiptSize as getClaimReceiptSize, index$1_getEntryByMintCodec as getEntryByMintCodec, index$1_getEntryByMintDecoder as getEntryByMintDecoder, index$1_getEntryByMintDiscriminatorBytes as getEntryByMintDiscriminatorBytes, index$1_getEntryByMintEncoder as getEntryByMintEncoder, index$1_getEntryByMintSize as getEntryByMintSize, index$1_getEntryCodec as getEntryCodec, index$1_getEntryDecoder as getEntryDecoder, index$1_getEntryDiscriminatorBytes as getEntryDiscriminatorBytes, index$1_getEntryEncoder as getEntryEncoder, index$1_getEntryMigratedCodec as getEntryMigratedCodec, index$1_getEntryMigratedDecoder as getEntryMigratedDecoder, index$1_getEntryMigratedEncoder as getEntryMigratedEncoder, index$1_getEntryRegisteredCodec as getEntryRegisteredCodec, index$1_getEntryRegisteredDecoder as getEntryRegisteredDecoder, index$1_getEntryRegisteredEncoder as getEntryRegisteredEncoder, index$1_getEntrySize as getEntrySize, index$1_getInitConfigCodec as getInitConfigCodec, index$1_getInitConfigDecoder as getInitConfigDecoder, index$1_getInitConfigDiscriminatorBytes as getInitConfigDiscriminatorBytes, index$1_getInitConfigEncoder as getInitConfigEncoder, index$1_getInitConfigSize as getInitConfigSize, index$1_getLaunchCodec as getLaunchCodec, index$1_getLaunchDecoder as getLaunchDecoder, index$1_getLaunchDiscriminatorBytes as getLaunchDiscriminatorBytes, index$1_getLaunchEncoder as getLaunchEncoder, index$1_getLaunchSize as getLaunchSize, index$1_getMarketCodec as getMarketCodec, index$1_getMarketCreatedCodec as getMarketCreatedCodec, index$1_getMarketCreatedDecoder as getMarketCreatedDecoder, index$1_getMarketCreatedEncoder as getMarketCreatedEncoder, index$1_getMarketDecoder as getMarketDecoder, index$1_getMarketDiscriminatorBytes as getMarketDiscriminatorBytes, index$1_getMarketEncoder as getMarketEncoder, index$1_getMarketResolvedCodec as getMarketResolvedCodec, index$1_getMarketResolvedDecoder as getMarketResolvedDecoder, index$1_getMarketResolvedEncoder as getMarketResolvedEncoder, index$1_getMarketSize as getMarketSize, index$1_getMigrateEntryArgsCodec as getMigrateEntryArgsCodec, index$1_getMigrateEntryArgsDecoder as getMigrateEntryArgsDecoder, index$1_getMigrateEntryArgsEncoder as getMigrateEntryArgsEncoder, index$1_getMigrateEntryDiscriminatorBytes as getMigrateEntryDiscriminatorBytes, index$1_getMigrateEntryInstruction as getMigrateEntryInstruction, index$1_getMigrateEntryInstructionAsync as getMigrateEntryInstructionAsync, index$1_getMigrateEntryInstructionDataCodec as getMigrateEntryInstructionDataCodec, index$1_getMigrateEntryInstructionDataDecoder as getMigrateEntryInstructionDataDecoder, index$1_getMigrateEntryInstructionDataEncoder as getMigrateEntryInstructionDataEncoder, getOracleStateCodec$1 as getOracleStateCodec, getOracleStateDecoder$1 as getOracleStateDecoder, getOracleStateDiscriminatorBytes$1 as getOracleStateDiscriminatorBytes, getOracleStateEncoder$1 as getOracleStateEncoder, getOracleStateSize$1 as getOracleStateSize, index$1_getPayloadBufCodec as getPayloadBufCodec, index$1_getPayloadBufDecoder as getPayloadBufDecoder, index$1_getPayloadBufEncoder as getPayloadBufEncoder, index$1_getPredictionEntryAddress as getPredictionEntryAddress, index$1_getPredictionEntryByMintAddress as getPredictionEntryByMintAddress, index$1_getPredictionMarketAddress as getPredictionMarketAddress, index$1_getPredictionMarketAuthorityAddress as getPredictionMarketAuthorityAddress, index$1_getPredictionMigratorErrorMessage as getPredictionMigratorErrorMessage, index$1_getPredictionPotVaultAddress as getPredictionPotVaultAddress, index$1_getPreviewPayoutIfWinnerArgsCodec as getPreviewPayoutIfWinnerArgsCodec, index$1_getPreviewPayoutIfWinnerArgsDecoder as getPreviewPayoutIfWinnerArgsDecoder, index$1_getPreviewPayoutIfWinnerArgsEncoder as getPreviewPayoutIfWinnerArgsEncoder, index$1_getPreviewPayoutIfWinnerDiscriminatorBytes as getPreviewPayoutIfWinnerDiscriminatorBytes, index$1_getPreviewPayoutIfWinnerInstruction as getPreviewPayoutIfWinnerInstruction, index$1_getPreviewPayoutIfWinnerInstructionDataCodec as getPreviewPayoutIfWinnerInstructionDataCodec, index$1_getPreviewPayoutIfWinnerInstructionDataDecoder as getPreviewPayoutIfWinnerInstructionDataDecoder, index$1_getPreviewPayoutIfWinnerInstructionDataEncoder as getPreviewPayoutIfWinnerInstructionDataEncoder, index$1_getRegisterEntryArgsCodec as getRegisterEntryArgsCodec, index$1_getRegisterEntryArgsDecoder as getRegisterEntryArgsDecoder, index$1_getRegisterEntryArgsEncoder as getRegisterEntryArgsEncoder, index$1_getRegisterEntryDiscriminatorBytes as getRegisterEntryDiscriminatorBytes, index$1_getRegisterEntryInstruction as getRegisterEntryInstruction, index$1_getRegisterEntryInstructionAsync as getRegisterEntryInstructionAsync, index$1_getRegisterEntryInstructionDataCodec as getRegisterEntryInstructionDataCodec, index$1_getRegisterEntryInstructionDataDecoder as getRegisterEntryInstructionDataDecoder, index$1_getRegisterEntryInstructionDataEncoder as getRegisterEntryInstructionDataEncoder, index$1_getRewardsClaimedCodec as getRewardsClaimedCodec, index$1_getRewardsClaimedDecoder as getRewardsClaimedDecoder, index$1_getRewardsClaimedEncoder as getRewardsClaimedEncoder, index$1_identifyPredictionMigratorAccount as identifyPredictionMigratorAccount, index$1_identifyPredictionMigratorInstruction as identifyPredictionMigratorInstruction, index$1_isPredictionMigratorError as isPredictionMigratorError, index$1_parseClaimInstruction as parseClaimInstruction, index$1_parseMigrateEntryInstruction as parseMigrateEntryInstruction, index$1_parsePredictionMigratorInstruction as parsePredictionMigratorInstruction, index$1_parsePreviewPayoutIfWinnerInstruction as parsePreviewPayoutIfWinnerInstruction, index$1_parseRegisterEntryInstruction as parseRegisterEntryInstruction, index$1_predictionMigratorProgram as predictionMigratorProgram };
10511
+ export { index$1_CLAIM_DISCRIMINATOR as CLAIM_DISCRIMINATOR, index$1_CLAIM_RECEIPT_DISCRIMINATOR as CLAIM_RECEIPT_DISCRIMINATOR, type index$1_ClaimAsyncInput as ClaimAsyncInput, type index$1_ClaimInput as ClaimInput, type index$1_ClaimInstruction as ClaimInstruction, type index$1_ClaimInstructionData as ClaimInstructionData, type index$1_ClaimInstructionDataArgs as ClaimInstructionDataArgs, type index$1_ClaimReceipt as ClaimReceipt, type index$1_ClaimReceiptArgs as ClaimReceiptArgs, index$1_ENTRY_BY_MINT_DISCRIMINATOR as ENTRY_BY_MINT_DISCRIMINATOR, index$1_ENTRY_DISCRIMINATOR as ENTRY_DISCRIMINATOR, type index$1_Entry as Entry, type index$1_EntryArgs as EntryArgs, type index$1_EntryByMint as EntryByMint, type index$1_EntryByMintArgs as EntryByMintArgs, type index$1_EntryMigrated as EntryMigrated, type index$1_EntryMigratedArgs as EntryMigratedArgs, type index$1_EntryRegistered as EntryRegistered, type index$1_EntryRegisteredArgs as EntryRegisteredArgs, index$1_INIT_CONFIG_DISCRIMINATOR as INIT_CONFIG_DISCRIMINATOR, type index$1_InitConfig as InitConfig, type index$1_InitConfigArgs as InitConfigArgs, index$1_LAUNCH_DISCRIMINATOR as LAUNCH_DISCRIMINATOR, type index$1_Launch as Launch, type index$1_LaunchArgs as LaunchArgs, index$1_MARKET_DISCRIMINATOR as MARKET_DISCRIMINATOR, index$1_MIGRATE_ENTRY_DISCRIMINATOR as MIGRATE_ENTRY_DISCRIMINATOR, type index$1_Market as Market, type index$1_MarketArgs as MarketArgs, type index$1_MarketCreated as MarketCreated, type index$1_MarketCreatedArgs as MarketCreatedArgs, type index$1_MarketResolved as MarketResolved, type index$1_MarketResolvedArgs as MarketResolvedArgs, type index$1_MigrateEntryArgs as MigrateEntryArgs, type index$1_MigrateEntryArgsArgs as MigrateEntryArgsArgs, type index$1_MigrateEntryAsyncInput as MigrateEntryAsyncInput, type index$1_MigrateEntryInput as MigrateEntryInput, type index$1_MigrateEntryInstruction as MigrateEntryInstruction, type index$1_MigrateEntryInstructionData as MigrateEntryInstructionData, type index$1_MigrateEntryInstructionDataArgs as MigrateEntryInstructionDataArgs, ORACLE_STATE_DISCRIMINATOR$1 as ORACLE_STATE_DISCRIMINATOR, type OracleState$1 as OracleState, type OracleStateArgs$1 as OracleStateArgs, index$1_PREDICTION_MIGRATOR_ERROR__CLAIMABLE_SUPPLY_ALREADY_SET as PREDICTION_MIGRATOR_ERROR__CLAIMABLE_SUPPLY_ALREADY_SET, index$1_PREDICTION_MIGRATOR_ERROR__ENTRY_ALREADY_MIGRATED as PREDICTION_MIGRATOR_ERROR__ENTRY_ALREADY_MIGRATED, index$1_PREDICTION_MIGRATOR_ERROR__INSUFFICIENT_BALANCE as PREDICTION_MIGRATOR_ERROR__INSUFFICIENT_BALANCE, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_ENTRY_ID as PREDICTION_MIGRATOR_ERROR__INVALID_ENTRY_ID, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_INPUT as PREDICTION_MIGRATOR_ERROR__INVALID_INPUT, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_MARKET as PREDICTION_MIGRATOR_ERROR__INVALID_MARKET, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_MINT as PREDICTION_MIGRATOR_ERROR__INVALID_MINT, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_ORACLE as PREDICTION_MIGRATOR_ERROR__INVALID_ORACLE, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_VAULT as PREDICTION_MIGRATOR_ERROR__INVALID_VAULT, index$1_PREDICTION_MIGRATOR_ERROR__INVALID_WINNER_MINT as PREDICTION_MIGRATOR_ERROR__INVALID_WINNER_MINT, index$1_PREDICTION_MIGRATOR_ERROR__MARKET_NOT_RESOLVED as PREDICTION_MIGRATOR_ERROR__MARKET_NOT_RESOLVED, index$1_PREDICTION_MIGRATOR_ERROR__MATH_OVERFLOW as PREDICTION_MIGRATOR_ERROR__MATH_OVERFLOW, index$1_PREDICTION_MIGRATOR_ERROR__NO_PENDING_REWARDS as PREDICTION_MIGRATOR_ERROR__NO_PENDING_REWARDS, index$1_PREDICTION_MIGRATOR_ERROR__ORACLE_NOT_FINALIZED as PREDICTION_MIGRATOR_ERROR__ORACLE_NOT_FINALIZED, index$1_PREDICTION_MIGRATOR_ERROR__QUOTE_MINT_MISMATCH as PREDICTION_MIGRATOR_ERROR__QUOTE_MINT_MISMATCH, index$1_PREDICTION_MIGRATOR_ERROR__UNAUTHORIZED as PREDICTION_MIGRATOR_ERROR__UNAUTHORIZED, index$1_PREDICTION_MIGRATOR_ERROR__WINNING_ENTRY_NOT_MIGRATED as PREDICTION_MIGRATOR_ERROR__WINNING_ENTRY_NOT_MIGRATED, index$1_PREDICTION_MIGRATOR_ERROR__ZERO_CLAIMABLE_SUPPLY as PREDICTION_MIGRATOR_ERROR__ZERO_CLAIMABLE_SUPPLY, index$1_PREDICTION_MIGRATOR_PROGRAM_ADDRESS as PREDICTION_MIGRATOR_PROGRAM_ADDRESS, index$1_PREVIEW_PAYOUT_IF_WINNER_DISCRIMINATOR as PREVIEW_PAYOUT_IF_WINNER_DISCRIMINATOR, type index$1_ParsedClaimInstruction as ParsedClaimInstruction, type index$1_ParsedMigrateEntryInstruction as ParsedMigrateEntryInstruction, type index$1_ParsedPredictionMigratorInstruction as ParsedPredictionMigratorInstruction, type index$1_ParsedPreviewPayoutIfWinnerInstruction as ParsedPreviewPayoutIfWinnerInstruction, type index$1_ParsedRegisterEntryInstruction as ParsedRegisterEntryInstruction, type index$1_PayloadBuf as PayloadBuf, type index$1_PayloadBufArgs as PayloadBufArgs, index$1_PredictionMigratorAccount as PredictionMigratorAccount, type index$1_PredictionMigratorError as PredictionMigratorError, index$1_PredictionMigratorInstruction as PredictionMigratorInstruction, type index$1_PredictionMigratorPlugin as PredictionMigratorPlugin, type index$1_PredictionMigratorPluginAccounts as PredictionMigratorPluginAccounts, type index$1_PredictionMigratorPluginInstructions as PredictionMigratorPluginInstructions, type index$1_PredictionMigratorPluginRequirements as PredictionMigratorPluginRequirements, type index$1_PrepareClaimAndCloseInput as PrepareClaimAndCloseInput, type index$1_PrepareClaimAndCloseResult as PrepareClaimAndCloseResult, type index$1_PreviewPayoutIfWinnerArgs as PreviewPayoutIfWinnerArgs, type index$1_PreviewPayoutIfWinnerArgsArgs as PreviewPayoutIfWinnerArgsArgs, type index$1_PreviewPayoutIfWinnerInput as PreviewPayoutIfWinnerInput, type index$1_PreviewPayoutIfWinnerInstruction as PreviewPayoutIfWinnerInstruction, type index$1_PreviewPayoutIfWinnerInstructionData as PreviewPayoutIfWinnerInstructionData, type index$1_PreviewPayoutIfWinnerInstructionDataArgs as PreviewPayoutIfWinnerInstructionDataArgs, index$1_REGISTER_ENTRY_DISCRIMINATOR as REGISTER_ENTRY_DISCRIMINATOR, type index$1_RegisterEntryArgs as RegisterEntryArgs, type index$1_RegisterEntryArgsArgs as RegisterEntryArgsArgs, type index$1_RegisterEntryAsyncInput as RegisterEntryAsyncInput, type index$1_RegisterEntryInput as RegisterEntryInput, type index$1_RegisterEntryInstruction as RegisterEntryInstruction, type index$1_RegisterEntryInstructionData as RegisterEntryInstructionData, type index$1_RegisterEntryInstructionDataArgs as RegisterEntryInstructionDataArgs, type index$1_RewardsClaimed as RewardsClaimed, type index$1_RewardsClaimedArgs as RewardsClaimedArgs, index$1_decodeClaimReceipt as decodeClaimReceipt, index$1_decodeEntry as decodeEntry, index$1_decodeEntryByMint as decodeEntryByMint, index$1_decodeInitConfig as decodeInitConfig, index$1_decodeLaunch as decodeLaunch, index$1_decodeMarket as decodeMarket, decodeOracleState$1 as decodeOracleState, index$1_fetchAllClaimReceipt as fetchAllClaimReceipt, index$1_fetchAllEntry as fetchAllEntry, index$1_fetchAllEntryByMint as fetchAllEntryByMint, index$1_fetchAllInitConfig as fetchAllInitConfig, index$1_fetchAllLaunch as fetchAllLaunch, index$1_fetchAllMarket as fetchAllMarket, index$1_fetchAllMaybeClaimReceipt as fetchAllMaybeClaimReceipt, index$1_fetchAllMaybeEntry as fetchAllMaybeEntry, index$1_fetchAllMaybeEntryByMint as fetchAllMaybeEntryByMint, index$1_fetchAllMaybeInitConfig as fetchAllMaybeInitConfig, index$1_fetchAllMaybeLaunch as fetchAllMaybeLaunch, index$1_fetchAllMaybeMarket as fetchAllMaybeMarket, fetchAllMaybeOracleState$1 as fetchAllMaybeOracleState, fetchAllOracleState$1 as fetchAllOracleState, index$1_fetchClaimReceipt as fetchClaimReceipt, index$1_fetchEntry as fetchEntry, index$1_fetchEntryByMint as fetchEntryByMint, index$1_fetchInitConfig as fetchInitConfig, index$1_fetchLaunch as fetchLaunch, index$1_fetchMarket as fetchMarket, index$1_fetchMaybeClaimReceipt as fetchMaybeClaimReceipt, index$1_fetchMaybeEntry as fetchMaybeEntry, index$1_fetchMaybeEntryByMint as fetchMaybeEntryByMint, index$1_fetchMaybeInitConfig as fetchMaybeInitConfig, index$1_fetchMaybeLaunch as fetchMaybeLaunch, index$1_fetchMaybeMarket as fetchMaybeMarket, fetchMaybeOracleState$1 as fetchMaybeOracleState, fetchOracleState$1 as fetchOracleState, index$1_getClaimDiscriminatorBytes as getClaimDiscriminatorBytes, index$1_getClaimInstruction as getClaimInstruction, index$1_getClaimInstructionAsync as getClaimInstructionAsync, index$1_getClaimInstructionDataCodec as getClaimInstructionDataCodec, index$1_getClaimInstructionDataDecoder as getClaimInstructionDataDecoder, index$1_getClaimInstructionDataEncoder as getClaimInstructionDataEncoder, index$1_getClaimReceiptCodec as getClaimReceiptCodec, index$1_getClaimReceiptDecoder as getClaimReceiptDecoder, index$1_getClaimReceiptDiscriminatorBytes as getClaimReceiptDiscriminatorBytes, index$1_getClaimReceiptEncoder as getClaimReceiptEncoder, index$1_getClaimReceiptSize as getClaimReceiptSize, index$1_getEntryByMintCodec as getEntryByMintCodec, index$1_getEntryByMintDecoder as getEntryByMintDecoder, index$1_getEntryByMintDiscriminatorBytes as getEntryByMintDiscriminatorBytes, index$1_getEntryByMintEncoder as getEntryByMintEncoder, index$1_getEntryByMintSize as getEntryByMintSize, index$1_getEntryCodec as getEntryCodec, index$1_getEntryDecoder as getEntryDecoder, index$1_getEntryDiscriminatorBytes as getEntryDiscriminatorBytes, index$1_getEntryEncoder as getEntryEncoder, index$1_getEntryMigratedCodec as getEntryMigratedCodec, index$1_getEntryMigratedDecoder as getEntryMigratedDecoder, index$1_getEntryMigratedEncoder as getEntryMigratedEncoder, index$1_getEntryRegisteredCodec as getEntryRegisteredCodec, index$1_getEntryRegisteredDecoder as getEntryRegisteredDecoder, index$1_getEntryRegisteredEncoder as getEntryRegisteredEncoder, index$1_getEntrySize as getEntrySize, index$1_getInitConfigCodec as getInitConfigCodec, index$1_getInitConfigDecoder as getInitConfigDecoder, index$1_getInitConfigDiscriminatorBytes as getInitConfigDiscriminatorBytes, index$1_getInitConfigEncoder as getInitConfigEncoder, index$1_getInitConfigSize as getInitConfigSize, index$1_getLaunchCodec as getLaunchCodec, index$1_getLaunchDecoder as getLaunchDecoder, index$1_getLaunchDiscriminatorBytes as getLaunchDiscriminatorBytes, index$1_getLaunchEncoder as getLaunchEncoder, index$1_getLaunchSize as getLaunchSize, index$1_getMarketCodec as getMarketCodec, index$1_getMarketCreatedCodec as getMarketCreatedCodec, index$1_getMarketCreatedDecoder as getMarketCreatedDecoder, index$1_getMarketCreatedEncoder as getMarketCreatedEncoder, index$1_getMarketDecoder as getMarketDecoder, index$1_getMarketDiscriminatorBytes as getMarketDiscriminatorBytes, index$1_getMarketEncoder as getMarketEncoder, index$1_getMarketResolvedCodec as getMarketResolvedCodec, index$1_getMarketResolvedDecoder as getMarketResolvedDecoder, index$1_getMarketResolvedEncoder as getMarketResolvedEncoder, index$1_getMarketSize as getMarketSize, index$1_getMigrateEntryArgsCodec as getMigrateEntryArgsCodec, index$1_getMigrateEntryArgsDecoder as getMigrateEntryArgsDecoder, index$1_getMigrateEntryArgsEncoder as getMigrateEntryArgsEncoder, index$1_getMigrateEntryDiscriminatorBytes as getMigrateEntryDiscriminatorBytes, index$1_getMigrateEntryInstruction as getMigrateEntryInstruction, index$1_getMigrateEntryInstructionAsync as getMigrateEntryInstructionAsync, index$1_getMigrateEntryInstructionDataCodec as getMigrateEntryInstructionDataCodec, index$1_getMigrateEntryInstructionDataDecoder as getMigrateEntryInstructionDataDecoder, index$1_getMigrateEntryInstructionDataEncoder as getMigrateEntryInstructionDataEncoder, getOracleStateCodec$1 as getOracleStateCodec, getOracleStateDecoder$1 as getOracleStateDecoder, getOracleStateDiscriminatorBytes$1 as getOracleStateDiscriminatorBytes, getOracleStateEncoder$1 as getOracleStateEncoder, getOracleStateSize$1 as getOracleStateSize, index$1_getPayloadBufCodec as getPayloadBufCodec, index$1_getPayloadBufDecoder as getPayloadBufDecoder, index$1_getPayloadBufEncoder as getPayloadBufEncoder, index$1_getPredictionClaimReceiptAddress as getPredictionClaimReceiptAddress, index$1_getPredictionEntryAddress as getPredictionEntryAddress, index$1_getPredictionEntryByMintAddress as getPredictionEntryByMintAddress, index$1_getPredictionMarketAddress as getPredictionMarketAddress, index$1_getPredictionMarketAuthorityAddress as getPredictionMarketAuthorityAddress, index$1_getPredictionMigratorErrorMessage as getPredictionMigratorErrorMessage, index$1_getPredictionPotVaultAddress as getPredictionPotVaultAddress, index$1_getPreviewPayoutIfWinnerArgsCodec as getPreviewPayoutIfWinnerArgsCodec, index$1_getPreviewPayoutIfWinnerArgsDecoder as getPreviewPayoutIfWinnerArgsDecoder, index$1_getPreviewPayoutIfWinnerArgsEncoder as getPreviewPayoutIfWinnerArgsEncoder, index$1_getPreviewPayoutIfWinnerDiscriminatorBytes as getPreviewPayoutIfWinnerDiscriminatorBytes, index$1_getPreviewPayoutIfWinnerInstruction as getPreviewPayoutIfWinnerInstruction, index$1_getPreviewPayoutIfWinnerInstructionDataCodec as getPreviewPayoutIfWinnerInstructionDataCodec, index$1_getPreviewPayoutIfWinnerInstructionDataDecoder as getPreviewPayoutIfWinnerInstructionDataDecoder, index$1_getPreviewPayoutIfWinnerInstructionDataEncoder as getPreviewPayoutIfWinnerInstructionDataEncoder, index$1_getRegisterEntryArgsCodec as getRegisterEntryArgsCodec, index$1_getRegisterEntryArgsDecoder as getRegisterEntryArgsDecoder, index$1_getRegisterEntryArgsEncoder as getRegisterEntryArgsEncoder, index$1_getRegisterEntryDiscriminatorBytes as getRegisterEntryDiscriminatorBytes, index$1_getRegisterEntryInstruction as getRegisterEntryInstruction, index$1_getRegisterEntryInstructionAsync as getRegisterEntryInstructionAsync, index$1_getRegisterEntryInstructionDataCodec as getRegisterEntryInstructionDataCodec, index$1_getRegisterEntryInstructionDataDecoder as getRegisterEntryInstructionDataDecoder, index$1_getRegisterEntryInstructionDataEncoder as getRegisterEntryInstructionDataEncoder, index$1_getRewardsClaimedCodec as getRewardsClaimedCodec, index$1_getRewardsClaimedDecoder as getRewardsClaimedDecoder, index$1_getRewardsClaimedEncoder as getRewardsClaimedEncoder, index$1_identifyPredictionMigratorAccount as identifyPredictionMigratorAccount, index$1_identifyPredictionMigratorInstruction as identifyPredictionMigratorInstruction, index$1_isPredictionMigratorError as isPredictionMigratorError, index$1_parseClaimInstruction as parseClaimInstruction, index$1_parseMigrateEntryInstruction as parseMigrateEntryInstruction, index$1_parsePredictionMigratorInstruction as parsePredictionMigratorInstruction, index$1_parsePreviewPayoutIfWinnerInstruction as parsePreviewPayoutIfWinnerInstruction, index$1_parseRegisterEntryInstruction as parseRegisterEntryInstruction, index$1_predictionMigratorProgram as predictionMigratorProgram, index$1_prepareClaimAndClose as prepareClaimAndClose };
10343
10512
  }
10344
10513
 
10345
10514
  /**