@neutral-trade/sdk 1.0.3 → 1.0.4
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.
- package/dist/generated/index.d.mts +2 -2
- package/dist/generated/index.mjs +2 -2
- package/dist/{generated-Dz86hd_Y.mjs → generated-PNArbjle.mjs} +178 -63
- package/dist/idl/index.d.mts +164 -4
- package/dist/idl/index.mjs +168 -49
- package/dist/{index-CCGD4ixE.d.mts → index-CVQfAU4i.d.mts} +72 -29
- package/dist/index.d.mts +241 -15
- package/dist/index.mjs +520 -25
- package/package.json +1 -1
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
import { Account, AccountMeta, AccountSignerMeta, Address, ClientWithPayer, ClientWithRpc, ClientWithTransactionPlanning, ClientWithTransactionSending, Codec, Decoder, EncodedAccount, Encoder, ExtendedClient, FetchAccountConfig, FetchAccountsConfig, FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder, GetAccountInfoApi, GetMultipleAccountsApi, Instruction, InstructionWithAccounts, InstructionWithData, MaybeAccount, MaybeEncodedAccount, ProgramDerivedAddress, ReadonlyAccount, ReadonlySignerAccount, ReadonlyUint8Array, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, SolanaError, TransactionSigner, WritableAccount, WritableSignerAccount, fetchEncodedAccount, fetchEncodedAccounts } from "@solana/kit";
|
|
2
2
|
import { SelfFetchFunctions, SelfPlanAndSendFunctions } from "@solana/program-client-core";
|
|
3
3
|
|
|
4
|
-
//#region src/generated/
|
|
4
|
+
//#region src/generated/types/referralTier.d.ts
|
|
5
5
|
|
|
6
|
+
type ReferralTier = {
|
|
7
|
+
threshold: bigint;
|
|
8
|
+
pfeeBps: number;
|
|
9
|
+
mfeeBps: number;
|
|
10
|
+
};
|
|
11
|
+
type ReferralTierArgs = {
|
|
12
|
+
threshold: number | bigint;
|
|
13
|
+
pfeeBps: number;
|
|
14
|
+
mfeeBps: number;
|
|
15
|
+
};
|
|
16
|
+
declare function getReferralTierEncoder(): FixedSizeEncoder<ReferralTierArgs>;
|
|
17
|
+
declare function getReferralTierDecoder(): FixedSizeDecoder<ReferralTier>;
|
|
18
|
+
declare function getReferralTierCodec(): FixedSizeCodec<ReferralTierArgs, ReferralTier>;
|
|
19
|
+
//#endregion
|
|
20
|
+
//#region src/generated/accounts/bundle.d.ts
|
|
6
21
|
declare const BUNDLE_DISCRIMINATOR: ReadonlyUint8Array;
|
|
7
22
|
declare function getBundleDiscriminatorBytes(): ReadonlyUint8Array;
|
|
8
23
|
type Bundle = {
|
|
@@ -37,10 +52,10 @@ type Bundle = {
|
|
|
37
52
|
withdrawalRedemptionRequestCutoffTs: bigint;
|
|
38
53
|
withdrawalRedemptionUnlockCurrentCycleTs: bigint;
|
|
39
54
|
withdrawalRedemptionUnlockNextCycleTs: bigint;
|
|
40
|
-
referralPfeeBps: number;
|
|
41
|
-
referralMfeeBps: number;
|
|
42
55
|
referrerEnabled: boolean;
|
|
43
56
|
referrerMinDepositAmount: bigint;
|
|
57
|
+
referralTiers: Array<ReferralTier>;
|
|
58
|
+
tierCount: number;
|
|
44
59
|
padding: ReadonlyUint8Array;
|
|
45
60
|
};
|
|
46
61
|
type BundleArgs = {
|
|
@@ -74,10 +89,10 @@ type BundleArgs = {
|
|
|
74
89
|
withdrawalRedemptionRequestCutoffTs: number | bigint;
|
|
75
90
|
withdrawalRedemptionUnlockCurrentCycleTs: number | bigint;
|
|
76
91
|
withdrawalRedemptionUnlockNextCycleTs: number | bigint;
|
|
77
|
-
referralPfeeBps: number;
|
|
78
|
-
referralMfeeBps: number;
|
|
79
92
|
referrerEnabled: boolean;
|
|
80
93
|
referrerMinDepositAmount: number | bigint;
|
|
94
|
+
referralTiers: Array<ReferralTierArgs>;
|
|
95
|
+
tierCount: number;
|
|
81
96
|
padding: ReadonlyUint8Array;
|
|
82
97
|
};
|
|
83
98
|
/** Gets the encoder for {@link BundleArgs} account data. */
|
|
@@ -239,6 +254,7 @@ type ReferrerAccount = {
|
|
|
239
254
|
estimatedPendingWithdrawalValue: bigint;
|
|
240
255
|
withdrawalAvailableTimestamp: bigint;
|
|
241
256
|
lastWithdrawalProcessTimestamp: bigint;
|
|
257
|
+
referredNetDeposits: bigint;
|
|
242
258
|
padding: ReadonlyUint8Array;
|
|
243
259
|
};
|
|
244
260
|
type ReferrerAccountArgs = {
|
|
@@ -255,6 +271,7 @@ type ReferrerAccountArgs = {
|
|
|
255
271
|
estimatedPendingWithdrawalValue: number | bigint;
|
|
256
272
|
withdrawalAvailableTimestamp: number | bigint;
|
|
257
273
|
lastWithdrawalProcessTimestamp: number | bigint;
|
|
274
|
+
referredNetDeposits: number | bigint;
|
|
258
275
|
padding: ReadonlyUint8Array;
|
|
259
276
|
};
|
|
260
277
|
/** Gets the encoder for {@link ReferrerAccountArgs} account data. */
|
|
@@ -333,9 +350,6 @@ type UserBundleAccount = {
|
|
|
333
350
|
switchTargetBundle: Address;
|
|
334
351
|
switchCreatedAt: bigint;
|
|
335
352
|
referrer: Address;
|
|
336
|
-
referralPfeeBps: number;
|
|
337
|
-
referralMfeeBps: number;
|
|
338
|
-
referralFlags: number;
|
|
339
353
|
padding: ReadonlyUint8Array;
|
|
340
354
|
};
|
|
341
355
|
type UserBundleAccountArgs = {
|
|
@@ -366,9 +380,6 @@ type UserBundleAccountArgs = {
|
|
|
366
380
|
switchTargetBundle: Address;
|
|
367
381
|
switchCreatedAt: number | bigint;
|
|
368
382
|
referrer: Address;
|
|
369
|
-
referralPfeeBps: number;
|
|
370
|
-
referralMfeeBps: number;
|
|
371
|
-
referralFlags: number;
|
|
372
383
|
padding: ReadonlyUint8Array;
|
|
373
384
|
};
|
|
374
385
|
/** Gets the encoder for {@link UserBundleAccountArgs} account data. */
|
|
@@ -572,7 +583,9 @@ declare const NTBUNDLE_ERROR__REFERRER_SHARES_ZERO = 6090;
|
|
|
572
583
|
declare const NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION = 6091;
|
|
573
584
|
/** ReferrerDepositTooLow: Referrer deposit too low */
|
|
574
585
|
declare const NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW = 6092;
|
|
575
|
-
|
|
586
|
+
/** InvalidReferralTierConfig: Invalid referral tier configuration */
|
|
587
|
+
declare const NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG = 6093;
|
|
588
|
+
type NtbundleError = typeof NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO | typeof NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS | typeof NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO | typeof NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX | typeof NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED | typeof NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED | typeof NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER | typeof NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO | typeof NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO | typeof NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED | typeof NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED | typeof NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST | typeof NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST | typeof NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND | typeof NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE | typeof NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE | typeof NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE | typeof NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE | typeof NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE | typeof NTBUNDLE_ERROR__INSUFFICIENT_FUNDS | typeof NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE | typeof NTBUNDLE_ERROR__INVALID_ALLOCATIONS | typeof NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS | typeof NTBUNDLE_ERROR__INVALID_ASSET_PRECISION | typeof NTBUNDLE_ERROR__INVALID_FEE_SPLIT | typeof NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER | typeof NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER | typeof NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE | typeof NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT | typeof NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR | typeof NTBUNDLE_ERROR__INVALID_RECEIVER | typeof NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG | typeof NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG | typeof NTBUNDLE_ERROR__INVALID_TWAP_PERIOD | typeof NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG | typeof NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG | typeof NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT | typeof NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD | typeof NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY | typeof NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE | typeof NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO | typeof NTBUNDLE_ERROR__MANAGER_SHARES_ZERO | typeof NTBUNDLE_ERROR__MATH_ERROR | typeof NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED | typeof NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET | typeof NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST | typeof NTBUNDLE_ERROR__NETTING_ALREADY_DONE | typeof NTBUNDLE_ERROR__NETTING_NOT_DONE | typeof NTBUNDLE_ERROR__NO_PENDING_SWITCH | typeof NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS | typeof NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL | typeof NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR | typeof NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR | typeof NTBUNDLE_ERROR__ORACLE_NOT_UPDATED | typeof NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT | typeof NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS | typeof NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY | typeof NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO | typeof NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS | typeof NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS | typeof NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST | typeof NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS | typeof NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO | typeof NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER | typeof NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED | typeof NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED | typeof NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO | typeof NTBUNDLE_ERROR__REFERRAL_ALREADY_SET | typeof NTBUNDLE_ERROR__REFERRALS_DISABLED | typeof NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH | typeof NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING | typeof NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW | typeof NTBUNDLE_ERROR__REFERRER_SHARES_ZERO | typeof NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED | typeof NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID | typeof NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED | typeof NTBUNDLE_ERROR__STRATEGY_DISABLED | typeof NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE | typeof NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH | typeof NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH | typeof NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING | typeof NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE | typeof NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS | typeof NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT | typeof NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION | typeof NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR | typeof NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION | typeof NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION | typeof NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION | typeof NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS | typeof NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY | typeof NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY | typeof NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED | typeof NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET;
|
|
576
589
|
declare function getNtbundleErrorMessage(code: NtbundleError): string;
|
|
577
590
|
declare function isNtbundleError<TProgramErrorCode extends NtbundleError>(error: unknown, transactionMessage: {
|
|
578
591
|
instructions: Record<number, {
|
|
@@ -812,16 +825,17 @@ declare enum NtbundleInstruction {
|
|
|
812
825
|
SetOracleBuffer = 36,
|
|
813
826
|
SetOracleMaxAge = 37,
|
|
814
827
|
SetOracleUpdateTimeLimit = 38,
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
828
|
+
SetReferralTierConfig = 39,
|
|
829
|
+
SetReferrerActive = 40,
|
|
830
|
+
SetReferrerConfig = 41,
|
|
831
|
+
SetReferrerRateOverride = 42,
|
|
832
|
+
SetUserFeeOverride = 43,
|
|
833
|
+
SetUserReferrer = 44,
|
|
834
|
+
SetUserWithdrawalTimingOverride = 45,
|
|
835
|
+
SetWithdrawalRedemptionSchedule = 46,
|
|
836
|
+
StartDistribution = 47,
|
|
837
|
+
UpdateAllocations = 48,
|
|
838
|
+
UpdateOracle = 49,
|
|
825
839
|
}
|
|
826
840
|
declare function identifyNtbundleInstruction(instruction: {
|
|
827
841
|
data: ReadonlyUint8Array;
|
|
@@ -905,6 +919,8 @@ type ParsedNtbundleInstruction<TProgram extends string = "BUNDDh4P5XviMm1f3gCvnq
|
|
|
905
919
|
} & ParsedSetOracleMaxAgeInstruction<TProgram>) | ({
|
|
906
920
|
instructionType: NtbundleInstruction.SetOracleUpdateTimeLimit;
|
|
907
921
|
} & ParsedSetOracleUpdateTimeLimitInstruction<TProgram>) | ({
|
|
922
|
+
instructionType: NtbundleInstruction.SetReferralTierConfig;
|
|
923
|
+
} & ParsedSetReferralTierConfigInstruction<TProgram>) | ({
|
|
908
924
|
instructionType: NtbundleInstruction.SetReferrerActive;
|
|
909
925
|
} & ParsedSetReferrerActiveInstruction<TProgram>) | ({
|
|
910
926
|
instructionType: NtbundleInstruction.SetReferrerConfig;
|
|
@@ -984,6 +1000,7 @@ type NtbundlePluginInstructions = {
|
|
|
984
1000
|
setOracleBuffer: (input: SetOracleBufferInput) => ReturnType<typeof getSetOracleBufferInstruction> & SelfPlanAndSendFunctions;
|
|
985
1001
|
setOracleMaxAge: (input: SetOracleMaxAgeInput) => ReturnType<typeof getSetOracleMaxAgeInstruction> & SelfPlanAndSendFunctions;
|
|
986
1002
|
setOracleUpdateTimeLimit: (input: SetOracleUpdateTimeLimitInput) => ReturnType<typeof getSetOracleUpdateTimeLimitInstruction> & SelfPlanAndSendFunctions;
|
|
1003
|
+
setReferralTierConfig: (input: SetReferralTierConfigInput) => ReturnType<typeof getSetReferralTierConfigInstruction> & SelfPlanAndSendFunctions;
|
|
987
1004
|
setReferrerActive: (input: SetReferrerActiveInput) => ReturnType<typeof getSetReferrerActiveInstruction> & SelfPlanAndSendFunctions;
|
|
988
1005
|
setReferrerConfig: (input: SetReferrerConfigInput) => ReturnType<typeof getSetReferrerConfigInstruction> & SelfPlanAndSendFunctions;
|
|
989
1006
|
setReferrerRateOverride: (input: SetReferrerRateOverrideInput) => ReturnType<typeof getSetReferrerRateOverrideInstruction> & SelfPlanAndSendFunctions;
|
|
@@ -3032,6 +3049,38 @@ type ParsedSetOracleUpdateTimeLimitInstruction<TProgram extends string = typeof
|
|
|
3032
3049
|
};
|
|
3033
3050
|
declare function parseSetOracleUpdateTimeLimitInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedSetOracleUpdateTimeLimitInstruction<TProgram, TAccountMetas>;
|
|
3034
3051
|
//#endregion
|
|
3052
|
+
//#region src/generated/instructions/setReferralTierConfig.d.ts
|
|
3053
|
+
declare const SET_REFERRAL_TIER_CONFIG_DISCRIMINATOR: ReadonlyUint8Array;
|
|
3054
|
+
declare function getSetReferralTierConfigDiscriminatorBytes(): ReadonlyUint8Array;
|
|
3055
|
+
type SetReferralTierConfigInstruction<TProgram extends string = typeof NTBUNDLE_PROGRAM_ADDRESS, TAccountManager extends string | AccountMeta<string> = string, TAccountBundleAccount extends string | AccountMeta<string> = string, TRemainingAccounts extends readonly AccountMeta<string>[] = []> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[TAccountManager extends string ? WritableSignerAccount<TAccountManager> & AccountSignerMeta<TAccountManager> : TAccountManager, TAccountBundleAccount extends string ? WritableAccount<TAccountBundleAccount> : TAccountBundleAccount, ...TRemainingAccounts]>;
|
|
3056
|
+
type SetReferralTierConfigInstructionData = {
|
|
3057
|
+
discriminator: ReadonlyUint8Array;
|
|
3058
|
+
referralTiers: Array<ReferralTier>;
|
|
3059
|
+
};
|
|
3060
|
+
type SetReferralTierConfigInstructionDataArgs = {
|
|
3061
|
+
referralTiers: Array<ReferralTierArgs>;
|
|
3062
|
+
};
|
|
3063
|
+
declare function getSetReferralTierConfigInstructionDataEncoder(): Encoder<SetReferralTierConfigInstructionDataArgs>;
|
|
3064
|
+
declare function getSetReferralTierConfigInstructionDataDecoder(): Decoder<SetReferralTierConfigInstructionData>;
|
|
3065
|
+
declare function getSetReferralTierConfigInstructionDataCodec(): Codec<SetReferralTierConfigInstructionDataArgs, SetReferralTierConfigInstructionData>;
|
|
3066
|
+
type SetReferralTierConfigInput<TAccountManager extends string = string, TAccountBundleAccount extends string = string> = {
|
|
3067
|
+
manager: TransactionSigner<TAccountManager>;
|
|
3068
|
+
bundleAccount: Address<TAccountBundleAccount>;
|
|
3069
|
+
referralTiers: SetReferralTierConfigInstructionDataArgs["referralTiers"];
|
|
3070
|
+
};
|
|
3071
|
+
declare function getSetReferralTierConfigInstruction<TAccountManager extends string, TAccountBundleAccount extends string, TProgramAddress extends Address = typeof NTBUNDLE_PROGRAM_ADDRESS>(input: SetReferralTierConfigInput<TAccountManager, TAccountBundleAccount>, config?: {
|
|
3072
|
+
programAddress?: TProgramAddress;
|
|
3073
|
+
}): SetReferralTierConfigInstruction<TProgramAddress, TAccountManager, TAccountBundleAccount>;
|
|
3074
|
+
type ParsedSetReferralTierConfigInstruction<TProgram extends string = typeof NTBUNDLE_PROGRAM_ADDRESS, TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[]> = {
|
|
3075
|
+
programAddress: Address<TProgram>;
|
|
3076
|
+
accounts: {
|
|
3077
|
+
manager: TAccountMetas[0];
|
|
3078
|
+
bundleAccount: TAccountMetas[1];
|
|
3079
|
+
};
|
|
3080
|
+
data: SetReferralTierConfigInstructionData;
|
|
3081
|
+
};
|
|
3082
|
+
declare function parseSetReferralTierConfigInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedSetReferralTierConfigInstruction<TProgram, TAccountMetas>;
|
|
3083
|
+
//#endregion
|
|
3035
3084
|
//#region src/generated/instructions/setReferrerActive.d.ts
|
|
3036
3085
|
declare const SET_REFERRER_ACTIVE_DISCRIMINATOR: ReadonlyUint8Array;
|
|
3037
3086
|
declare function getSetReferrerActiveDiscriminatorBytes(): ReadonlyUint8Array;
|
|
@@ -3073,14 +3122,10 @@ type SetReferrerConfigInstruction<TProgram extends string = typeof NTBUNDLE_PROG
|
|
|
3073
3122
|
type SetReferrerConfigInstructionData = {
|
|
3074
3123
|
discriminator: ReadonlyUint8Array;
|
|
3075
3124
|
referrerEnabled: boolean;
|
|
3076
|
-
referralPfeeBps: number;
|
|
3077
|
-
referralMfeeBps: number;
|
|
3078
3125
|
referrerMinDepositAmount: bigint;
|
|
3079
3126
|
};
|
|
3080
3127
|
type SetReferrerConfigInstructionDataArgs = {
|
|
3081
3128
|
referrerEnabled: boolean;
|
|
3082
|
-
referralPfeeBps: number;
|
|
3083
|
-
referralMfeeBps: number;
|
|
3084
3129
|
referrerMinDepositAmount: number | bigint;
|
|
3085
3130
|
};
|
|
3086
3131
|
declare function getSetReferrerConfigInstructionDataEncoder(): FixedSizeEncoder<SetReferrerConfigInstructionDataArgs>;
|
|
@@ -3090,8 +3135,6 @@ type SetReferrerConfigInput<TAccountManager extends string = string, TAccountBun
|
|
|
3090
3135
|
manager: TransactionSigner<TAccountManager>;
|
|
3091
3136
|
bundleAccount: Address<TAccountBundleAccount>;
|
|
3092
3137
|
referrerEnabled: SetReferrerConfigInstructionDataArgs["referrerEnabled"];
|
|
3093
|
-
referralPfeeBps: SetReferrerConfigInstructionDataArgs["referralPfeeBps"];
|
|
3094
|
-
referralMfeeBps: SetReferrerConfigInstructionDataArgs["referralMfeeBps"];
|
|
3095
3138
|
referrerMinDepositAmount: SetReferrerConfigInstructionDataArgs["referrerMinDepositAmount"];
|
|
3096
3139
|
};
|
|
3097
3140
|
declare function getSetReferrerConfigInstruction<TAccountManager extends string, TAccountBundleAccount extends string, TProgramAddress extends Address = typeof NTBUNDLE_PROGRAM_ADDRESS>(input: SetReferrerConfigInput<TAccountManager, TAccountBundleAccount>, config?: {
|
|
@@ -3486,4 +3529,4 @@ type ParsedUpdateOracleInstruction<TProgram extends string = typeof NTBUNDLE_PRO
|
|
|
3486
3529
|
};
|
|
3487
3530
|
declare function parseUpdateOracleInstruction<TProgram extends string, TAccountMetas extends readonly AccountMeta[]>(instruction: Instruction<TProgram> & InstructionWithAccounts<TAccountMetas> & InstructionWithData<ReadonlyUint8Array>): ParsedUpdateOracleInstruction<TProgram, TAccountMetas>;
|
|
3488
3531
|
//#endregion
|
|
3489
|
-
export { getSetWithdrawalRedemptionScheduleInstructionDataEncoder as $, getRefundDepositInstructionDataCodec as $a, InitializeBundleMasterAccountInstructionData as $c, ADD_STRATEGY_DISCRIMINATOR as $d, findPendingBundleAssetAuthorityPda as $f, BUNDLE_TEMP_DATA_DISCRIMINATOR as $h, getRequestDepositInstructionDataEncoder as $i, EnableStrategyInput as $l, getNtbundleErrorMessage as $m, SetOracleBufferInstructionData as $n, getProcessReferrerWithdrawalInstruction as $o, NTBUNDLE_ERROR__MANAGER_SHARES_ZERO as $p, getSetFeesInstructionDataEncoder as $r, ParsedNetPendingTransactionsInstruction as $s, getSetReferrerRateOverrideInstructionDataEncoder as $t, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR as $u, START_DISTRIBUTION_DISCRIMINATOR as A, REGISTER_REFERRER_DISCRIMINATOR as Aa, getManagerWithdrawInstructionAsync as Ac, ChangeBundleMasterAdminInstructionDataArgs as Ad, TargetPendingBundleAssetAuthoritySeeds as Af, fetchAllMaybeBundleCreatorAccount as Ag, decodeReferrerAccount as Ah, RequestWithdrawalInput as Ai, getInitializeBundleDiscriminatorBytes as Al, NTBUNDLE_ERROR__REFERRER_SHARES_ZERO as Am, SetOracleUpdateTimeLimitInstructionDataArgs as An, parseProcessWithdrawalInstruction as Ao, NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE as Ap, parseSetMaxDepositAmountInstruction as Ar, getPerformRefillInstructionDataDecoder as As, SET_USER_FEE_OVERRIDE_DISCRIMINATOR as At, CloseUserBundleAccountInstructionDataArgs as Au, getStartDistributionInstructionDataDecoder as B, getRegisterReferrerInstructionDataDecoder as Ba, InitializePermissionedBundleDepositorInstructionDataArgs as Bc, ApplyFeesToUserAsyncInput as Bd, SourceOracleDataSeeds as Bf, BundleArgs as Bg, ORACLE_DATA_DISCRIMINATOR as Bh, parseRequestWithdrawalInstruction as Bi, EndDistributionInstruction as Bl, NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS as Bm, SetOracleMaxAgeInstruction as Bn, getProcessSwitchInstructionAsync as Bo, NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE as Bp, getSetKeeperInstructionDataDecoder as Br, getPauseDepositsWithdrawalsDiscriminatorBytes as Bs, getSetUserFeeOverrideInstructionDataDecoder as Bt, ClearUserWithdrawalTimingOverrideAsyncInput as Bu, getUpdateAllocationsInstruction as C, getRemoveStrategyInstruction as Ca, ManagerWithdrawInput as Cc, getChangeManagerInstructionDataEncoder as Cd, identifyNtbundleInstruction as Cf, getBundleMasterAccountEncoder as Cg, getStrategyDecoder as Ch, getSetBundleCreatorInstructionDataCodec as Ci, INITIALIZE_BUNDLE_DISCRIMINATOR as Cl, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED as Cm, getSetReferrerActiveInstructionDataEncoder as Cn, ProcessWithdrawalInstructionDataArgs as Co, NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED as Cp, SetMaxDepositAmountInstructionData as Cr, PerformRefillInstruction as Cs, getSetUserReferrerInstruction as Ct, getDistributeToReceiversInstructionDataEncoder as Cu, getUpdateAllocationsInstructionDataEncoder as D, getRemoveStrategyInstructionDataEncoder as Da, ParsedManagerWithdrawInstruction as Dc, ChangeBundleMasterAdminInput as Dd, findUserBundleAccountPda as Df, BundleCreatorAccountArgs as Dg, REFERRER_ACCOUNT_DISCRIMINATOR as Dh, ParsedRequestWithdrawalInstruction as Di, InitializeBundleInstructionData as Dl, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH as Dm, SetOracleUpdateTimeLimitInput as Dn, getProcessWithdrawalInstructionDataCodec as Do, NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE as Dp, getSetMaxDepositAmountInstructionDataCodec as Dr, getPerformRefillInstruction as Ds, getSetUserReferrerInstructionDataEncoder as Dt, CloseUserBundleAccountInput as Du, getUpdateAllocationsInstructionDataDecoder as E, getRemoveStrategyInstructionDataDecoder as Ea, ManagerWithdrawInstructionDataArgs as Ec, ChangeBundleMasterAdminAsyncInput as Ed, UserBundleAccountSeeds as Ef, BundleCreatorAccount as Eg, getStrategySize as Eh, parseSetBundleCreatorInstruction as Ei, InitializeBundleInstruction as El, NTBUNDLE_ERROR__REFERRAL_ALREADY_SET as Em, SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR as En, getProcessWithdrawalInstructionAsync as Eo, NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND as Ep, getSetMaxDepositAmountInstruction as Er, getPerformRefillDiscriminatorBytes as Es, getSetUserReferrerInstructionDataDecoder as Et, CloseUserBundleAccountAsyncInput as Eu, StartDistributionInstructionDataArgs as F, RegisterReferrerInstructionDataArgs as Fa, INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR as Fc, getChangeBundleMasterAdminInstructionDataCodec as Fd, findTargetBundleTempDataPda as Ff, getBundleCreatorAccountDiscriminatorBytes as Fg, getReferrerAccountCodec as Fh, getRequestWithdrawalInstruction as Fi, getInitializeBundleInstructionDataEncoder as Fl, NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE as Fm, getSetOracleUpdateTimeLimitInstructionDataEncoder as Fn, ProcessSwitchInstruction as Fo, NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS as Fp, SetKeeperInstructionData as Fr, PauseDepositsWithdrawalsAsyncInput as Fs, SetUserFeeOverrideInstructionDataArgs as Ft, getCloseUserBundleAccountInstructionDataCodec as Fu, SetWithdrawalRedemptionScheduleInput as G, RefundDepositAsyncInput as Ga, getInitializePermissionedBundleDepositorInstructionDataCodec as Gc, ParsedApplyFeesToUserInstruction as Gd, findSourceBundleAssetAuthorityPda as Gf, fetchMaybeBundle as Gg, fetchAllOracleData as Gh, RequestDepositInstruction as Gi, getEndDistributionInstruction as Gl, NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION as Gm, getSetOracleMaxAgeInstructionDataCodec as Gn, PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR as Go, NTBUNDLE_ERROR__INVALID_TWAP_PERIOD as Gp, SetFeesInput as Gr, getPauseDepositsWithdrawalsInstructionDataEncoder as Gs, SetReferrerRateOverrideInput as Gt, ParsedClearUserWithdrawalTimingOverrideInstruction as Gu, parseStartDistributionInstruction as H, parseRegisterReferrerInstruction as Ha, getInitializePermissionedBundleDepositorDiscriminatorBytes as Hc, ApplyFeesToUserInstruction as Hd, SourceBundleTempDataSeeds as Hf, fetchAllBundle as Hg, OracleDataArgs as Hh, REQUEST_DEPOSIT_DISCRIMINATOR as Hi, EndDistributionInstructionDataArgs as Hl, NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION as Hm, SetOracleMaxAgeInstructionDataArgs as Hn, getProcessSwitchInstructionDataDecoder as Ho, NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR as Hp, parseSetKeeperInstruction as Hr, getPauseDepositsWithdrawalsInstructionAsync as Hs, parseSetUserFeeOverrideInstruction as Ht, ClearUserWithdrawalTimingOverrideInstruction as Hu, getStartDistributionDiscriminatorBytes as I, getRegisterReferrerDiscriminatorBytes as Ia, InitializePermissionedBundleDepositorAsyncInput as Ic, getChangeBundleMasterAdminInstructionDataDecoder as Id, StrategyAccountSeeds as If, getBundleCreatorAccountEncoder as Ig, getReferrerAccountDecoder as Ih, getRequestWithdrawalInstructionAsync as Ii, parseInitializeBundleInstruction as Il, NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH as Im, parseSetOracleUpdateTimeLimitInstruction as In, ProcessSwitchInstructionData as Io, NTBUNDLE_ERROR__INVALID_ASSET_PRECISION as Ip, SetKeeperInstructionDataArgs as Ir, PauseDepositsWithdrawalsInput as Is, getSetUserFeeOverrideDiscriminatorBytes as It, getCloseUserBundleAccountInstructionDataDecoder as Iu, SetWithdrawalRedemptionScheduleInstructionDataArgs as J, RefundDepositInstructionData as Ja, parseInitializePermissionedBundleDepositorInstruction as Jc, getApplyFeesToUserInstructionAsync as Jd, ReferrerUserBundleAccountSeeds as Jf, getBundleDiscriminatorBytes as Jg, getOracleDataCodec as Jh, getRequestDepositDiscriminatorBytes as Ji, getEndDistributionInstructionDataDecoder as Jl, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY as Jm, parseSetOracleMaxAgeInstruction as Jn, ProcessReferrerWithdrawalInput as Jo, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT as Jp, SetFeesInstructionDataArgs as Jr, NetPendingTransactionsAsyncInput as Js, SetReferrerRateOverrideInstructionDataArgs as Jt, getClearUserWithdrawalTimingOverrideInstructionAsync as Ju, SetWithdrawalRedemptionScheduleInstruction as K, RefundDepositInput as Ka, getInitializePermissionedBundleDepositorInstructionDataDecoder as Kc, getApplyFeesToUserDiscriminatorBytes as Kd, RequestBundleSwitchUserBundleAccountSeeds as Kf, getBundleCodec as Kg, fetchMaybeOracleData as Kh, RequestDepositInstructionData as Ki, getEndDistributionInstructionAsync as Kl, NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION as Km, getSetOracleMaxAgeInstructionDataDecoder as Kn, ParsedProcessReferrerWithdrawalInstruction as Ko, NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG as Kp, SetFeesInstruction as Kr, parsePauseDepositsWithdrawalsInstruction as Ks, SetReferrerRateOverrideInstruction as Kt, getClearUserWithdrawalTimingOverrideDiscriminatorBytes as Ku, getStartDistributionInstruction as L, getRegisterReferrerInstruction as La, InitializePermissionedBundleDepositorInput as Lc, getChangeBundleMasterAdminInstructionDataEncoder as Ld, findStrategyAccountPda as Lf, getBundleCreatorAccountSize as Lg, getReferrerAccountDiscriminatorBytes as Lh, getRequestWithdrawalInstructionDataCodec as Li, END_DISTRIBUTION_DISCRIMINATOR as Ll, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING as Lm, ParsedSetOracleMaxAgeInstruction as Ln, ProcessSwitchInstructionDataArgs as Lo, NTBUNDLE_ERROR__INVALID_FEE_SPLIT as Lp, getSetKeeperDiscriminatorBytes as Lr, PauseDepositsWithdrawalsInstruction as Ls, getSetUserFeeOverrideInstruction as Lt, getCloseUserBundleAccountInstructionDataEncoder as Lu, StartDistributionInput as M, RegisterReferrerInput as Ma, getManagerWithdrawInstructionDataDecoder as Mc, getChangeBundleMasterAdminDiscriminatorBytes as Md, TargetOracleDataSeeds as Mf, fetchMaybeBundleCreatorAccount as Mg, fetchAllReferrerAccount as Mh, RequestWithdrawalInstructionData as Mi, getInitializeBundleInstructionAsync as Ml, NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID as Mm, getSetOracleUpdateTimeLimitInstruction as Mn, ParsedProcessSwitchInstruction as Mo, NTBUNDLE_ERROR__INSUFFICIENT_FUNDS as Mp, SET_KEEPER_DISCRIMINATOR as Mr, parsePerformRefillInstruction as Ms, SetUserFeeOverrideInput as Mt, getCloseUserBundleAccountDiscriminatorBytes as Mu, StartDistributionInstruction as N, RegisterReferrerInstruction as Na, getManagerWithdrawInstructionDataEncoder as Nc, getChangeBundleMasterAdminInstruction as Nd, findTargetOracleDataPda as Nf, getBundleCreatorAccountCodec as Ng, fetchMaybeReferrerAccount as Nh, RequestWithdrawalInstructionDataArgs as Ni, getInitializeBundleInstructionDataCodec as Nl, NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED as Nm, getSetOracleUpdateTimeLimitInstructionDataCodec as Nn, ProcessSwitchAsyncInput as No, NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE as Np, SetKeeperInput as Nr, PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR as Ns, SetUserFeeOverrideInstruction as Nt, getCloseUserBundleAccountInstruction as Nu, parseUpdateAllocationsInstruction as O, parseRemoveStrategyInstruction as Oa, getManagerWithdrawDiscriminatorBytes as Oc, ChangeBundleMasterAdminInstruction as Od, TargetUserBundleAccountSeeds as Of, decodeBundleCreatorAccount as Og, ReferrerAccount as Oh, REQUEST_WITHDRAWAL_DISCRIMINATOR as Oi, InitializeBundleInstructionDataArgs as Ol, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING as Om, SetOracleUpdateTimeLimitInstruction as On, getProcessWithdrawalInstructionDataDecoder as Oo, NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE as Op, getSetMaxDepositAmountInstructionDataDecoder as Or, getPerformRefillInstructionAsync as Os, parseSetUserReferrerInstruction as Ot, CloseUserBundleAccountInstruction as Ou, StartDistributionInstructionData as P, RegisterReferrerInstructionData as Pa, parseManagerWithdrawInstruction as Pc, getChangeBundleMasterAdminInstructionAsync as Pd, TargetBundleTempDataSeeds as Pf, getBundleCreatorAccountDecoder as Pg, fetchReferrerAccount as Ph, getRequestWithdrawalDiscriminatorBytes as Pi, getInitializeBundleInstructionDataDecoder as Pl, NTBUNDLE_ERROR__STRATEGY_DISABLED as Pm, getSetOracleUpdateTimeLimitInstructionDataDecoder as Pn, ProcessSwitchInput as Po, NTBUNDLE_ERROR__INVALID_ALLOCATIONS as Pp, SetKeeperInstruction as Pr, ParsedPauseDepositsWithdrawalsInstruction as Ps, SetUserFeeOverrideInstructionData as Pt, getCloseUserBundleAccountInstructionAsync as Pu, getSetWithdrawalRedemptionScheduleInstructionDataDecoder as Q, getRefundDepositInstructionAsync as Qa, InitializeBundleMasterAccountInstruction as Qc, parseApplyFeesToUserInstruction as Qd, PendingBundleAssetAuthoritySeeds as Qf, getOracleDataSize as Qh, getRequestDepositInstructionDataDecoder as Qi, EnableStrategyAsyncInput as Ql, NtbundleError as Qm, SetOracleBufferInstruction as Qn, getProcessReferrerWithdrawalDiscriminatorBytes as Qo, NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO as Qp, getSetFeesInstructionDataDecoder as Qr, NetPendingTransactionsInstructionDataArgs as Qs, getSetReferrerRateOverrideInstructionDataDecoder as Qt, parseClearUserWithdrawalTimingOverrideInstruction as Qu, getStartDistributionInstructionAsync as R, getRegisterReferrerInstructionAsync as Ra, InitializePermissionedBundleDepositorInstruction as Rc, parseChangeBundleMasterAdminInstruction as Rd, SourceUserBundleAccountSeeds as Rf, BUNDLE_DISCRIMINATOR as Rg, getReferrerAccountEncoder as Rh, getRequestWithdrawalInstructionDataDecoder as Ri, EndDistributionAsyncInput as Rl, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH as Rm, SET_ORACLE_MAX_AGE_DISCRIMINATOR as Rn, getProcessSwitchDiscriminatorBytes as Ro, NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER as Rp, getSetKeeperInstruction as Rr, PauseDepositsWithdrawalsInstructionData as Rs, getSetUserFeeOverrideInstructionAsync as Rt, parseCloseUserBundleAccountInstruction as Ru, getUpdateAllocationsDiscriminatorBytes as S, getRemoveStrategyDiscriminatorBytes as Sa, ManagerWithdrawAsyncInput as Sc, getChangeManagerInstructionDataDecoder as Sd, identifyNtbundleAccount as Sf, getBundleMasterAccountDiscriminatorBytes as Sg, getStrategyCodec as Sh, getSetBundleCreatorInstructionAsync as Si, parseInitializeBundleDepositorInstruction as Sl, NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED as Sm, getSetReferrerActiveInstructionDataDecoder as Sn, ProcessWithdrawalInstructionData as So, NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED as Sp, SetMaxDepositAmountInstruction as Sr, PerformRefillInput as Ss, getSetUserReferrerDiscriminatorBytes as St, getDistributeToReceiversInstructionDataDecoder as Su, getUpdateAllocationsInstructionDataCodec as T, getRemoveStrategyInstructionDataCodec as Ta, ManagerWithdrawInstructionData as Tc, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR as Td, parseNtbundleInstruction as Tf, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR as Tg, getStrategyEncoder as Th, getSetBundleCreatorInstructionDataEncoder as Ti, InitializeBundleInput as Tl, NTBUNDLE_ERROR__REFERRALS_DISABLED as Tm, ParsedSetOracleUpdateTimeLimitInstruction as Tn, getProcessWithdrawalInstruction as To, NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST as Tp, getSetMaxDepositAmountDiscriminatorBytes as Tr, PerformRefillInstructionDataArgs as Ts, getSetUserReferrerInstructionDataCodec as Tt, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR as Tu, ParsedSetWithdrawalRedemptionScheduleInstruction as U, ParsedRefundDepositInstruction as Ua, getInitializePermissionedBundleDepositorInstruction as Uc, ApplyFeesToUserInstructionData as Ud, findSourceBundleTempDataPda as Uf, fetchAllMaybeBundle as Ug, decodeOracleData as Uh, RequestDepositAsyncInput as Ui, ParsedEndDistributionInstruction as Ul, NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR as Um, getSetOracleMaxAgeDiscriminatorBytes as Un, getProcessSwitchInstructionDataEncoder as Uo, NTBUNDLE_ERROR__INVALID_RECEIVER as Up, ParsedSetFeesInstruction as Ur, getPauseDepositsWithdrawalsInstructionDataCodec as Us, ParsedSetReferrerRateOverrideInstruction as Ut, ClearUserWithdrawalTimingOverrideInstructionData as Uu, getStartDistributionInstructionDataEncoder as V, getRegisterReferrerInstructionDataEncoder as Va, ParsedInitializePermissionedBundleDepositorInstruction as Vc, ApplyFeesToUserInput as Vd, findSourceOracleDataPda as Vf, decodeBundle as Vg, OracleData as Vh, ParsedRequestDepositInstruction as Vi, EndDistributionInstructionData as Vl, NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT as Vm, SetOracleMaxAgeInstructionData as Vn, getProcessSwitchInstructionDataCodec as Vo, NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT as Vp, getSetKeeperInstructionDataEncoder as Vr, getPauseDepositsWithdrawalsInstruction as Vs, getSetUserFeeOverrideInstructionDataEncoder as Vt, ClearUserWithdrawalTimingOverrideInput as Vu, SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR as W, REFUND_DEPOSIT_DISCRIMINATOR as Wa, getInitializePermissionedBundleDepositorInstructionAsync as Wc, ApplyFeesToUserInstructionDataArgs as Wd, SourceBundleAssetAuthoritySeeds as Wf, fetchBundle as Wg, fetchAllMaybeOracleData as Wh, RequestDepositInput as Wi, getEndDistributionDiscriminatorBytes as Wl, NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION as Wm, getSetOracleMaxAgeInstruction as Wn, parseProcessSwitchInstruction as Wo, NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG as Wp, SET_FEES_DISCRIMINATOR as Wr, getPauseDepositsWithdrawalsInstructionDataDecoder as Ws, SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR as Wt, ClearUserWithdrawalTimingOverrideInstructionDataArgs as Wu, getSetWithdrawalRedemptionScheduleInstruction as X, getRefundDepositDiscriminatorBytes as Xa, InitializeBundleMasterAccountAsyncInput as Xc, getApplyFeesToUserInstructionDataDecoder as Xd, ReferrerAccountSeeds as Xf, getOracleDataDiscriminatorBytes as Xh, getRequestDepositInstructionAsync as Xi, parseEndDistributionInstruction as Xl, NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED as Xm, SET_ORACLE_BUFFER_DISCRIMINATOR as Xn, ProcessReferrerWithdrawalInstructionData as Xo, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY as Xp, getSetFeesInstruction as Xr, NetPendingTransactionsInstruction as Xs, getSetReferrerRateOverrideInstruction as Xt, getClearUserWithdrawalTimingOverrideInstructionDataDecoder as Xu, getSetWithdrawalRedemptionScheduleDiscriminatorBytes as Y, RefundDepositInstructionDataArgs as Ya, INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR as Yc, getApplyFeesToUserInstructionDataCodec as Yd, findReferrerUserBundleAccountPda as Yf, getBundleEncoder as Yg, getOracleDataDecoder as Yh, getRequestDepositInstruction as Yi, getEndDistributionInstructionDataEncoder as Yl, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY as Ym, ParsedSetOracleBufferInstruction as Yn, ProcessReferrerWithdrawalInstruction as Yo, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD as Yp, getSetFeesDiscriminatorBytes as Yr, NetPendingTransactionsInput as Ys, getSetReferrerRateOverrideDiscriminatorBytes as Yt, getClearUserWithdrawalTimingOverrideInstructionDataCodec as Yu, getSetWithdrawalRedemptionScheduleInstructionDataCodec as Z, getRefundDepositInstruction as Za, InitializeBundleMasterAccountInput as Zc, getApplyFeesToUserInstructionDataEncoder as Zd, findReferrerAccountPda as Zf, getOracleDataEncoder as Zh, getRequestDepositInstructionDataCodec as Zi, ENABLE_STRATEGY_DISCRIMINATOR as Zl, NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET as Zm, SetOracleBufferInput as Zn, ProcessReferrerWithdrawalInstructionDataArgs as Zo, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE as Zp, getSetFeesInstructionDataCodec as Zr, NetPendingTransactionsInstructionData as Zs, getSetReferrerRateOverrideInstructionDataCodec as Zt, getClearUserWithdrawalTimingOverrideInstructionDataEncoder as Zu, UpdateAllocationsAsyncInput as _, RemoveStrategyAsyncInput as _a, getManagerWithdrawWithSplitInstructionDataCodec as _c, ChangeManagerInstructionDataArgs as _d, NtbundlePluginAccounts as _f, fetchAllMaybeBundleMasterAccount as _g, decodeStrategy as _h, SetBundleCreatorInstruction as _i, getInitializeBundleDepositorInstruction as _l, NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS as _m, SetReferrerActiveInstructionData as _n, PROCESS_WITHDRAWAL_DISCRIMINATOR as _o, NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED as _p, getSetMinDepositAmountInstructionDataEncoder as _r, getProcessDepositInstructionDataEncoder as _s, SetUserReferrerAsyncInput as _t, ParsedDistributeToReceiversInstruction as _u, UpdateOracleInstruction as a, RequestBundleSwitchInstruction as aa, getNetPendingTransactionsInstructionDataEncoder as ac, ParsedClearUserFeeOverrideInstruction as ad, ParsedAddStrategyInstruction as af, fetchBundleTempData as ag, fetchAllMaybeUserBundleAccount as ah, SetDelaysInstructionData as ai, getInitializeBundleMasterAccountInstructionDataCodec as al, NTBUNDLE_ERROR__NETTING_NOT_DONE as am, SetReferrerConfigInstructionData as an, ReferrerRequestWithdrawAsyncInput as ao, findBundleTempDataPda as ap, getSetOracleBufferInstructionDataEncoder as ar, PROCESS_DEPOSIT_DISCRIMINATOR as as, SetUserWithdrawalTimingOverrideInstruction as at, getEnableStrategyInstruction as au, UpdateAllocationsInstructionData as b, RemoveStrategyInstructionData as ba, parseManagerWithdrawWithSplitInstruction as bc, getChangeManagerInstruction as bd, NtbundlePluginRequirements as bf, getBundleMasterAccountCodec as bg, fetchMaybeStrategy as bh, getSetBundleCreatorDiscriminatorBytes as bi, getInitializeBundleDepositorInstructionDataDecoder as bl, NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO as bm, getSetReferrerActiveInstruction as bn, ProcessWithdrawalInput as bo, NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO as bp, SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR as br, ParsedPerformRefillInstruction as bs, SetUserReferrerInstructionData as bt, getDistributeToReceiversInstructionAsync as bu, getUpdateOracleDiscriminatorBytes as c, getRequestBundleSwitchDiscriminatorBytes as ca, ManagerWithdrawWithSplitAsyncInput as cc, getClearUserFeeOverrideInstructionAsync as cd, getAddStrategyInstructionAsync as cf, getBundleTempDataDecoder as cg, fetchUserBundleAccount as ch, getSetDelaysInstruction as ci, parseInitializeBundleMasterAccountInstruction as cl, NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL as cm, getSetReferrerConfigInstruction as cn, ReferrerRequestWithdrawInstructionData as co, findBundleCreatorAccountPda as cp, SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR as cr, ProcessDepositInput as cs, getSetUserWithdrawalTimingOverrideDiscriminatorBytes as ct, getEnableStrategyInstructionDataDecoder as cu, getUpdateOracleInstructionDataCodec as d, getRequestBundleSwitchInstructionDataCodec as da, ManagerWithdrawWithSplitInstructionData as dc, getClearUserFeeOverrideInstructionDataEncoder as dd, getAddStrategyInstructionDataEncoder as df, getBundleTempDataSize as dg, getUserBundleAccountDiscriminatorBytes as dh, getSetDelaysInstructionDataEncoder as di, InitializeBundleDepositorInput as dl, NTBUNDLE_ERROR__ORACLE_NOT_UPDATED as dm, getSetReferrerConfigInstructionDataEncoder as dn, getReferrerRequestWithdrawInstruction as do, BundleAccountSeeds as dp, SetMinDepositAmountInstructionData as dr, ProcessDepositInstructionDataArgs as ds, getSetUserWithdrawalTimingOverrideInstructionDataCodec as dt, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR as du, parseRequestDepositInstruction as ea, getNetPendingTransactionsDiscriminatorBytes as ec, ClearUserFeeOverrideAsyncInput as ed, AddStrategyAsyncInput as ef, BundleTempData as eg, isNtbundleError as eh, parseSetFeesInstruction as ei, InitializeBundleMasterAccountInstructionDataArgs as el, NTBUNDLE_ERROR__MATH_ERROR as em, parseSetReferrerRateOverrideInstruction as en, getRefundDepositInstructionDataDecoder as eo, OracleDataSeeds as ep, SetOracleBufferInstructionDataArgs as er, getProcessReferrerWithdrawalInstructionAsync as es, parseSetWithdrawalRedemptionScheduleInstruction as et, EnableStrategyInstruction as eu, getUpdateOracleInstructionDataDecoder as f, getRequestBundleSwitchInstructionDataDecoder as fa, ManagerWithdrawWithSplitInstructionDataArgs as fc, parseClearUserFeeOverrideInstruction as fd, parseAddStrategyInstruction as ff, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR as fg, getUserBundleAccountEncoder as fh, parseSetDelaysInstruction as fi, InitializeBundleDepositorInstruction as fl, NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT as fm, parseSetReferrerConfigInstruction as fn, getReferrerRequestWithdrawInstructionAsync as fo, findBundleAccountPda as fp, SetMinDepositAmountInstructionDataArgs as fr, getProcessDepositDiscriminatorBytes as fs, getSetUserWithdrawalTimingOverrideInstructionDataDecoder as ft, DistributeToReceiversAsyncInput as fu, UPDATE_ALLOCATIONS_DISCRIMINATOR as g, REMOVE_STRATEGY_DISCRIMINATOR as ga, getManagerWithdrawWithSplitInstructionAsync as gc, ChangeManagerInstructionData as gd, NtbundlePlugin as gf, fetchAllBundleMasterAccount as gg, StrategyArgs as gh, SetBundleCreatorInput as gi, getInitializeBundleDepositorDiscriminatorBytes as gl, NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS as gm, SetReferrerActiveInstruction as gn, parseReferrerRequestWithdrawInstruction as go, NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX as gp, getSetMinDepositAmountInstructionDataDecoder as gr, getProcessDepositInstructionDataDecoder as gs, SET_USER_REFERRER_DISCRIMINATOR as gt, DistributeToReceiversInstructionDataArgs as gu, ParsedUpdateAllocationsInstruction as h, ParsedRemoveStrategyInstruction as ha, getManagerWithdrawWithSplitInstruction as hc, ChangeManagerInstruction as hd, NtbundleInstruction as hf, decodeBundleMasterAccount as hg, Strategy as hh, SetBundleCreatorAsyncInput as hi, ParsedInitializeBundleDepositorInstruction as hl, NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO as hm, SetReferrerActiveInput as hn, getReferrerRequestWithdrawInstructionDataEncoder as ho, NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO as hp, getSetMinDepositAmountInstructionDataCodec as hr, getProcessDepositInstructionDataCodec as hs, ParsedSetUserReferrerInstruction as ht, DistributeToReceiversInstructionData as hu, UpdateOracleInput as i, RequestBundleSwitchInput as ia, getNetPendingTransactionsInstructionDataDecoder as ic, ClearUserFeeOverrideInstructionDataArgs as id, AddStrategyInstructionDataArgs as if, fetchAllMaybeBundleTempData as ig, decodeUserBundleAccount as ih, SetDelaysInstruction as ii, getInitializeBundleMasterAccountInstructionAsync as il, NTBUNDLE_ERROR__NETTING_ALREADY_DONE as im, SetReferrerConfigInstruction as in, REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR as io, BundleTempDataSeeds as ip, getSetOracleBufferInstructionDataDecoder as ir, parseProcessReferrerWithdrawalInstruction as is, SetUserWithdrawalTimingOverrideInput as it, getEnableStrategyDiscriminatorBytes as iu, StartDistributionAsyncInput as j, RegisterReferrerAsyncInput as ja, getManagerWithdrawInstructionDataCodec as jc, ParsedChangeBundleMasterAdminInstruction as jd, findTargetPendingBundleAssetAuthorityPda as jf, fetchBundleCreatorAccount as jg, fetchAllMaybeReferrerAccount as jh, RequestWithdrawalInstruction as ji, getInitializeBundleInstruction as jl, NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED as jm, getSetOracleUpdateTimeLimitDiscriminatorBytes as jn, PROCESS_SWITCH_DISCRIMINATOR as jo, NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE as jp, ParsedSetKeeperInstruction as jr, getPerformRefillInstructionDataEncoder as js, SetUserFeeOverrideAsyncInput as jt, ParsedCloseUserBundleAccountInstruction as ju, ParsedStartDistributionInstruction as k, ParsedRegisterReferrerInstruction as ka, getManagerWithdrawInstruction as kc, ChangeBundleMasterAdminInstructionData as kd, findTargetUserBundleAccountPda as kf, fetchAllBundleCreatorAccount as kg, ReferrerAccountArgs as kh, RequestWithdrawalAsyncInput as ki, ParsedInitializeBundleInstruction as kl, NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW as km, SetOracleUpdateTimeLimitInstructionData as kn, getProcessWithdrawalInstructionDataEncoder as ko, NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE as kp, getSetMaxDepositAmountInstructionDataEncoder as kr, getPerformRefillInstructionDataCodec as ks, ParsedSetUserFeeOverrideInstruction as kt, CloseUserBundleAccountInstructionData as ku, getUpdateOracleInstruction as l, getRequestBundleSwitchInstruction as la, ManagerWithdrawWithSplitInput as lc, getClearUserFeeOverrideInstructionDataCodec as ld, getAddStrategyInstructionDataCodec as lf, getBundleTempDataDiscriminatorBytes as lg, getUserBundleAccountCodec as lh, getSetDelaysInstructionDataCodec as li, INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR as ll, NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR as lm, getSetReferrerConfigInstructionDataCodec as ln, ReferrerRequestWithdrawInstructionDataArgs as lo, BundleAssetAuthoritySeeds as lp, SetMinDepositAmountInput as lr, ProcessDepositInstruction as ls, getSetUserWithdrawalTimingOverrideInstruction as lt, getEnableStrategyInstructionDataEncoder as lu, parseUpdateOracleInstruction as m, parseRequestBundleSwitchInstruction as ma, getManagerWithdrawWithSplitDiscriminatorBytes as mc, ChangeManagerInput as md, NtbundleAccount as mf, BundleMasterAccountArgs as mg, STRATEGY_DISCRIMINATOR as mh, SET_BUNDLE_CREATOR_DISCRIMINATOR as mi, InitializeBundleDepositorInstructionDataArgs as ml, NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY as mm, SET_REFERRER_ACTIVE_DISCRIMINATOR as mn, getReferrerRequestWithdrawInstructionDataDecoder as mo, NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS as mp, getSetMinDepositAmountInstruction as mr, getProcessDepositInstructionAsync as ms, parseSetUserWithdrawalTimingOverrideInstruction as mt, DistributeToReceiversInstruction as mu, UPDATE_ORACLE_DISCRIMINATOR as n, REQUEST_BUNDLE_SWITCH_DISCRIMINATOR as na, getNetPendingTransactionsInstructionAsync as nc, ClearUserFeeOverrideInstruction as nd, AddStrategyInstruction as nf, decodeBundleTempData as ng, UserBundleAccount as nh, SET_DELAYS_DISCRIMINATOR as ni, getInitializeBundleMasterAccountDiscriminatorBytes as nl, NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET as nm, SET_REFERRER_CONFIG_DISCRIMINATOR as nn, parseRefundDepositInstruction as no, CloseUserBundleAccountUserBundleAccountSeeds as np, getSetOracleBufferInstruction as nr, getProcessReferrerWithdrawalInstructionDataDecoder as ns, SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR as nt, EnableStrategyInstructionDataArgs as nu, UpdateOracleInstructionData as o, RequestBundleSwitchInstructionData as oa, parseNetPendingTransactionsInstruction as oc, getClearUserFeeOverrideDiscriminatorBytes as od, getAddStrategyDiscriminatorBytes as of, fetchMaybeBundleTempData as og, fetchAllUserBundleAccount as oh, SetDelaysInstructionDataArgs as oi, getInitializeBundleMasterAccountInstructionDataDecoder as ol, NTBUNDLE_ERROR__NO_PENDING_SWITCH as om, SetReferrerConfigInstructionDataArgs as on, ReferrerRequestWithdrawInput as oo, findBundleMasterAccountPda as op, parseSetOracleBufferInstruction as or, ParsedProcessDepositInstruction as os, SetUserWithdrawalTimingOverrideInstructionData as ot, getEnableStrategyInstructionAsync as ou, getUpdateOracleInstructionDataEncoder as p, getRequestBundleSwitchInstructionDataEncoder as pa, ParsedManagerWithdrawWithSplitInstruction as pc, CHANGE_MANAGER_DISCRIMINATOR as pd, NTBUNDLE_PROGRAM_ADDRESS as pf, BundleMasterAccount as pg, getUserBundleAccountSize as ph, ParsedSetBundleCreatorInstruction as pi, InitializeBundleDepositorInstructionData as pl, NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS as pm, ParsedSetReferrerActiveInstruction as pn, getReferrerRequestWithdrawInstructionDataCodec as po, NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO as pp, getSetMinDepositAmountDiscriminatorBytes as pr, getProcessDepositInstruction as ps, getSetUserWithdrawalTimingOverrideInstructionDataEncoder as pt, DistributeToReceiversInput as pu, SetWithdrawalRedemptionScheduleInstructionData as q, RefundDepositInstruction as qa, getInitializePermissionedBundleDepositorInstructionDataEncoder as qc, getApplyFeesToUserInstruction as qd, findRequestBundleSwitchUserBundleAccountPda as qf, getBundleDecoder as qg, fetchOracleData as qh, RequestDepositInstructionDataArgs as qi, getEndDistributionInstructionDataCodec as ql, NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS as qm, getSetOracleMaxAgeInstructionDataEncoder as qn, ProcessReferrerWithdrawalAsyncInput as qo, NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG as qp, SetFeesInstructionData as qr, NET_PENDING_TRANSACTIONS_DISCRIMINATOR as qs, SetReferrerRateOverrideInstructionData as qt, getClearUserWithdrawalTimingOverrideInstruction as qu, UpdateOracleAsyncInput as r, RequestBundleSwitchAsyncInput as ra, getNetPendingTransactionsInstructionDataCodec as rc, ClearUserFeeOverrideInstructionData as rd, AddStrategyInstructionData as rf, fetchAllBundleTempData as rg, UserBundleAccountArgs as rh, SetDelaysInput as ri, getInitializeBundleMasterAccountInstruction as rl, NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST as rm, SetReferrerConfigInput as rn, ParsedReferrerRequestWithdrawInstruction as ro, findCloseUserBundleAccountUserBundleAccountPda as rp, getSetOracleBufferInstructionDataCodec as rr, getProcessReferrerWithdrawalInstructionDataEncoder as rs, SetUserWithdrawalTimingOverrideAsyncInput as rt, ParsedEnableStrategyInstruction as ru, UpdateOracleInstructionDataArgs as s, RequestBundleSwitchInstructionDataArgs as sa, MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR as sc, getClearUserFeeOverrideInstruction as sd, getAddStrategyInstruction as sf, getBundleTempDataCodec as sg, fetchMaybeUserBundleAccount as sh, getSetDelaysDiscriminatorBytes as si, getInitializeBundleMasterAccountInstructionDataEncoder as sl, NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS as sm, getSetReferrerConfigDiscriminatorBytes as sn, ReferrerRequestWithdrawInstruction as so, BundleCreatorAccountSeeds as sp, ParsedSetMinDepositAmountInstruction as sr, ProcessDepositAsyncInput as ss, SetUserWithdrawalTimingOverrideInstructionDataArgs as st, getEnableStrategyInstructionDataCodec as su, ParsedUpdateOracleInstruction as t, ParsedRequestBundleSwitchInstruction as ta, getNetPendingTransactionsInstruction as tc, ClearUserFeeOverrideInput as td, AddStrategyInput as tf, BundleTempDataArgs as tg, USER_BUNDLE_ACCOUNT_DISCRIMINATOR as th, ParsedSetDelaysInstruction as ti, ParsedInitializeBundleMasterAccountInstruction as tl, NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED as tm, ParsedSetReferrerConfigInstruction as tn, getRefundDepositInstructionDataEncoder as to, findOracleDataPda as tp, getSetOracleBufferDiscriminatorBytes as tr, getProcessReferrerWithdrawalInstructionDataCodec as ts, ParsedSetUserWithdrawalTimingOverrideInstruction as tt, EnableStrategyInstructionData as tu, getUpdateOracleInstructionAsync as u, getRequestBundleSwitchInstructionAsync as ua, ManagerWithdrawWithSplitInstruction as uc, getClearUserFeeOverrideInstructionDataDecoder as ud, getAddStrategyInstructionDataDecoder as uf, getBundleTempDataEncoder as ug, getUserBundleAccountDecoder as uh, getSetDelaysInstructionDataDecoder as ui, InitializeBundleDepositorAsyncInput as ul, NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR as um, getSetReferrerConfigInstructionDataDecoder as un, getReferrerRequestWithdrawDiscriminatorBytes as uo, findBundleAssetAuthorityPda as up, SetMinDepositAmountInstruction as ur, ProcessDepositInstructionData as us, getSetUserWithdrawalTimingOverrideInstructionAsync as ut, parseEnableStrategyInstruction as uu, UpdateAllocationsInput as v, RemoveStrategyInput as va, getManagerWithdrawWithSplitInstructionDataDecoder as vc, ParsedChangeManagerInstruction as vd, NtbundlePluginInstructions as vf, fetchBundleMasterAccount as vg, fetchAllMaybeStrategy as vh, SetBundleCreatorInstructionData as vi, getInitializeBundleDepositorInstructionAsync as vl, NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST as vm, SetReferrerActiveInstructionDataArgs as vn, ParsedProcessWithdrawalInstruction as vo, NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED as vp, parseSetMinDepositAmountInstruction as vr, parseProcessDepositInstruction as vs, SetUserReferrerInput as vt, getDistributeToReceiversDiscriminatorBytes as vu, getUpdateAllocationsInstructionAsync as w, getRemoveStrategyInstructionAsync as wa, ManagerWithdrawInstruction as wc, parseChangeManagerInstruction as wd, ntbundleProgram as wf, getBundleMasterAccountSize as wg, getStrategyDiscriminatorBytes as wh, getSetBundleCreatorInstructionDataDecoder as wi, InitializeBundleAsyncInput as wl, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO as wm, parseSetReferrerActiveInstruction as wn, getProcessWithdrawalDiscriminatorBytes as wo, NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST as wp, SetMaxDepositAmountInstructionDataArgs as wr, PerformRefillInstructionData as ws, getSetUserReferrerInstructionAsync as wt, parseDistributeToReceiversInstruction as wu, UpdateAllocationsInstructionDataArgs as x, RemoveStrategyInstructionDataArgs as xa, MANAGER_WITHDRAW_DISCRIMINATOR as xc, getChangeManagerInstructionDataCodec as xd, ParsedNtbundleInstruction as xf, getBundleMasterAccountDecoder as xg, fetchStrategy as xh, getSetBundleCreatorInstruction as xi, getInitializeBundleDepositorInstructionDataEncoder as xl, NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER as xm, getSetReferrerActiveInstructionDataCodec as xn, ProcessWithdrawalInstruction as xo, NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO as xp, SetMaxDepositAmountInput as xr, PerformRefillAsyncInput as xs, SetUserReferrerInstructionDataArgs as xt, getDistributeToReceiversInstructionDataCodec as xu, UpdateAllocationsInstruction as y, RemoveStrategyInstruction as ya, getManagerWithdrawWithSplitInstructionDataEncoder as yc, getChangeManagerDiscriminatorBytes as yd, NtbundlePluginPdas as yf, fetchMaybeBundleMasterAccount as yg, fetchAllStrategy as yh, SetBundleCreatorInstructionDataArgs as yi, getInitializeBundleDepositorInstructionDataCodec as yl, NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS as ym, getSetReferrerActiveDiscriminatorBytes as yn, ProcessWithdrawalAsyncInput as yo, NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER as yp, ParsedSetMaxDepositAmountInstruction as yr, PERFORM_REFILL_DISCRIMINATOR as ys, SetUserReferrerInstruction as yt, getDistributeToReceiversInstruction as yu, getStartDistributionInstructionDataCodec as z, getRegisterReferrerInstructionDataCodec as za, InitializePermissionedBundleDepositorInstructionData as zc, APPLY_FEES_TO_USER_DISCRIMINATOR as zd, findSourceUserBundleAccountPda as zf, Bundle as zg, getReferrerAccountSize as zh, getRequestWithdrawalInstructionDataEncoder as zi, EndDistributionInput as zl, NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE as zm, SetOracleMaxAgeInput as zn, getProcessSwitchInstruction as zo, NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER as zp, getSetKeeperInstructionDataCodec as zr, PauseDepositsWithdrawalsInstructionDataArgs as zs, getSetUserFeeOverrideInstructionDataCodec as zt, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR as zu };
|
|
3532
|
+
export { getSetWithdrawalRedemptionScheduleInstructionDataEncoder as $, getRegisterReferrerInstructionDataEncoder as $a, ParsedInitializePermissionedBundleDepositorInstruction as $c, ApplyFeesToUserInput as $d, findSourceOracleDataPda as $f, BundleArgs as $g, ORACLE_DATA_DISCRIMINATOR as $h, ParsedRequestDepositInstruction as $i, EndDistributionInstructionData as $l, NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS as $m, SetOracleMaxAgeInstructionData as $n, getProcessSwitchInstructionDataCodec as $o, NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT as $p, getSetKeeperInstructionDataEncoder as $r, getPauseDepositsWithdrawalsInstruction as $s, getSetReferrerRateOverrideInstructionDataEncoder as $t, ClearUserWithdrawalTimingOverrideInput as $u, START_DISTRIBUTION_DISCRIMINATOR as A, RemoveStrategyInput as Aa, getManagerWithdrawWithSplitInstructionDataDecoder as Ac, ParsedChangeManagerInstruction as Ad, NtbundlePluginInstructions as Af, fetchAllMaybeBundleMasterAccount as Ag, decodeStrategy as Ah, SetBundleCreatorInstructionData as Ai, getInitializeBundleDepositorInstructionAsync as Al, NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS as Am, SetReferralTierConfigInstructionDataArgs as An, ParsedProcessWithdrawalInstruction as Ao, NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED as Ap, parseSetMinDepositAmountInstruction as Ar, parseProcessDepositInstruction as As, SET_USER_FEE_OVERRIDE_DISCRIMINATOR as At, getDistributeToReceiversDiscriminatorBytes as Au, getStartDistributionInstructionDataDecoder as B, parseRemoveStrategyInstruction as Ba, getManagerWithdrawDiscriminatorBytes as Bc, ChangeBundleMasterAdminInstruction as Bd, TargetUserBundleAccountSeeds as Bf, BundleCreatorAccountArgs as Bg, REFERRER_ACCOUNT_DISCRIMINATOR as Bh, REQUEST_WITHDRAWAL_DISCRIMINATOR as Bi, InitializeBundleInstructionDataArgs as Bl, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH as Bm, SetOracleUpdateTimeLimitInstruction as Bn, getProcessWithdrawalInstructionDataDecoder as Bo, NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE as Bp, getSetMaxDepositAmountInstructionDataDecoder as Br, getPerformRefillInstructionAsync as Bs, getSetUserFeeOverrideInstructionDataDecoder as Bt, CloseUserBundleAccountInstruction as Bu, getUpdateAllocationsInstruction as C, getRequestBundleSwitchInstructionDataCodec as Ca, ManagerWithdrawWithSplitInstructionData as Cc, getClearUserFeeOverrideInstructionDataEncoder as Cd, getAddStrategyInstructionDataEncoder as Cf, getBundleTempDataEncoder as Cg, getUserBundleAccountDecoder as Ch, getSetDelaysInstructionDataEncoder as Ci, InitializeBundleDepositorInput as Cl, NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR as Cm, getSetReferrerActiveInstructionDataEncoder as Cn, getReferrerRequestWithdrawInstruction as Co, BundleAccountSeeds as Cp, SetMinDepositAmountInstructionData as Cr, ProcessDepositInstructionDataArgs as Cs, getSetUserReferrerInstruction as Ct, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR as Cu, getUpdateAllocationsInstructionDataEncoder as D, ParsedRemoveStrategyInstruction as Da, getManagerWithdrawWithSplitInstruction as Dc, ChangeManagerInstruction as Dd, NtbundleInstruction as Df, BundleMasterAccountArgs as Dg, STRATEGY_DISCRIMINATOR as Dh, SetBundleCreatorAsyncInput as Di, ParsedInitializeBundleDepositorInstruction as Dl, NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY as Dm, SetReferralTierConfigInput as Dn, getReferrerRequestWithdrawInstructionDataEncoder as Do, NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO as Dp, getSetMinDepositAmountInstructionDataCodec as Dr, getProcessDepositInstructionDataCodec as Ds, getSetUserReferrerInstructionDataEncoder as Dt, DistributeToReceiversInstructionData as Du, getUpdateAllocationsInstructionDataDecoder as E, parseRequestBundleSwitchInstruction as Ea, getManagerWithdrawWithSplitDiscriminatorBytes as Ec, ChangeManagerInput as Ed, NtbundleAccount as Ef, BundleMasterAccount as Eg, getUserBundleAccountSize as Eh, SET_BUNDLE_CREATOR_DISCRIMINATOR as Ei, InitializeBundleDepositorInstructionDataArgs as El, NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS as Em, SET_REFERRAL_TIER_CONFIG_DISCRIMINATOR as En, getReferrerRequestWithdrawInstructionDataDecoder as Eo, NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS as Ep, getSetMinDepositAmountInstruction as Er, getProcessDepositInstructionAsync as Es, getSetUserReferrerInstructionDataDecoder as Et, DistributeToReceiversInstruction as Eu, StartDistributionInstructionDataArgs as F, getRemoveStrategyInstruction as Fa, ManagerWithdrawInput as Fc, getChangeManagerInstructionDataEncoder as Fd, identifyNtbundleInstruction as Ff, getBundleMasterAccountDiscriminatorBytes as Fg, getStrategyCodec as Fh, getSetBundleCreatorInstructionDataCodec as Fi, INITIALIZE_BUNDLE_DISCRIMINATOR as Fl, NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED as Fm, getSetReferralTierConfigInstructionDataEncoder as Fn, ProcessWithdrawalInstructionDataArgs as Fo, NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED as Fp, SetMaxDepositAmountInstructionData as Fr, PerformRefillInstruction as Fs, SetUserFeeOverrideInstructionDataArgs as Ft, getDistributeToReceiversInstructionDataEncoder as Fu, SetWithdrawalRedemptionScheduleInput as G, RegisterReferrerInstruction as Ga, getManagerWithdrawInstructionDataEncoder as Gc, getChangeBundleMasterAdminInstruction as Gd, findTargetOracleDataPda as Gf, fetchMaybeBundleCreatorAccount as Gg, fetchAllReferrerAccount as Gh, RequestWithdrawalInstructionDataArgs as Gi, getInitializeBundleInstructionDataCodec as Gl, NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID as Gm, getSetOracleUpdateTimeLimitInstructionDataCodec as Gn, ProcessSwitchAsyncInput as Go, NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE as Gp, SetKeeperInput as Gr, PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR as Gs, SetReferrerRateOverrideInput as Gt, getCloseUserBundleAccountInstruction as Gu, parseStartDistributionInstruction as H, REGISTER_REFERRER_DISCRIMINATOR as Ha, getManagerWithdrawInstructionAsync as Hc, ChangeBundleMasterAdminInstructionDataArgs as Hd, TargetPendingBundleAssetAuthoritySeeds as Hf, fetchAllBundleCreatorAccount as Hg, ReferrerAccountArgs as Hh, RequestWithdrawalInput as Hi, getInitializeBundleDiscriminatorBytes as Hl, NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW as Hm, SetOracleUpdateTimeLimitInstructionDataArgs as Hn, parseProcessWithdrawalInstruction as Ho, NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE as Hp, parseSetMaxDepositAmountInstruction as Hr, getPerformRefillInstructionDataDecoder as Hs, parseSetUserFeeOverrideInstruction as Ht, CloseUserBundleAccountInstructionDataArgs as Hu, getStartDistributionDiscriminatorBytes as I, getRemoveStrategyInstructionAsync as Ia, ManagerWithdrawInstruction as Ic, parseChangeManagerInstruction as Id, ntbundleProgram as If, getBundleMasterAccountEncoder as Ig, getStrategyDecoder as Ih, getSetBundleCreatorInstructionDataDecoder as Ii, InitializeBundleAsyncInput as Il, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED as Im, parseSetReferralTierConfigInstruction as In, getProcessWithdrawalDiscriminatorBytes as Io, NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST as Ip, SetMaxDepositAmountInstructionDataArgs as Ir, PerformRefillInstructionData as Is, getSetUserFeeOverrideDiscriminatorBytes as It, parseDistributeToReceiversInstruction as Iu, SetWithdrawalRedemptionScheduleInstructionDataArgs as J, getRegisterReferrerDiscriminatorBytes as Ja, InitializePermissionedBundleDepositorAsyncInput as Jc, getChangeBundleMasterAdminInstructionDataDecoder as Jd, StrategyAccountSeeds as Jf, getBundleCreatorAccountDiscriminatorBytes as Jg, getReferrerAccountCodec as Jh, getRequestWithdrawalInstructionAsync as Ji, parseInitializeBundleInstruction as Jl, NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE as Jm, parseSetOracleUpdateTimeLimitInstruction as Jn, ProcessSwitchInstructionData as Jo, NTBUNDLE_ERROR__INVALID_ASSET_PRECISION as Jp, SetKeeperInstructionDataArgs as Jr, PauseDepositsWithdrawalsInput as Js, SetReferrerRateOverrideInstructionDataArgs as Jt, getCloseUserBundleAccountInstructionDataDecoder as Ju, SetWithdrawalRedemptionScheduleInstruction as K, RegisterReferrerInstructionData as Ka, parseManagerWithdrawInstruction as Kc, getChangeBundleMasterAdminInstructionAsync as Kd, TargetBundleTempDataSeeds as Kf, getBundleCreatorAccountCodec as Kg, fetchMaybeReferrerAccount as Kh, getRequestWithdrawalDiscriminatorBytes as Ki, getInitializeBundleInstructionDataDecoder as Kl, NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED as Km, getSetOracleUpdateTimeLimitInstructionDataDecoder as Kn, ProcessSwitchInput as Ko, NTBUNDLE_ERROR__INVALID_ALLOCATIONS as Kp, SetKeeperInstruction as Kr, ParsedPauseDepositsWithdrawalsInstruction as Ks, SetReferrerRateOverrideInstruction as Kt, getCloseUserBundleAccountInstructionAsync as Ku, getStartDistributionInstruction as L, getRemoveStrategyInstructionDataCodec as La, ManagerWithdrawInstructionData as Lc, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR as Ld, parseNtbundleInstruction as Lf, getBundleMasterAccountSize as Lg, getStrategyDiscriminatorBytes as Lh, getSetBundleCreatorInstructionDataEncoder as Li, InitializeBundleInput as Ll, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO as Lm, ParsedSetOracleUpdateTimeLimitInstruction as Ln, getProcessWithdrawalInstruction as Lo, NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST as Lp, getSetMaxDepositAmountDiscriminatorBytes as Lr, PerformRefillInstructionDataArgs as Ls, getSetUserFeeOverrideInstruction as Lt, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR as Lu, StartDistributionInput as M, RemoveStrategyInstructionData as Ma, parseManagerWithdrawWithSplitInstruction as Mc, getChangeManagerInstruction as Md, NtbundlePluginRequirements as Mf, fetchMaybeBundleMasterAccount as Mg, fetchAllStrategy as Mh, getSetBundleCreatorDiscriminatorBytes as Mi, getInitializeBundleDepositorInstructionDataDecoder as Ml, NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS as Mm, getSetReferralTierConfigInstruction as Mn, ProcessWithdrawalInput as Mo, NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO as Mp, SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR as Mr, ParsedPerformRefillInstruction as Ms, SetUserFeeOverrideInput as Mt, getDistributeToReceiversInstructionAsync as Mu, StartDistributionInstruction as N, RemoveStrategyInstructionDataArgs as Na, MANAGER_WITHDRAW_DISCRIMINATOR as Nc, getChangeManagerInstructionDataCodec as Nd, ParsedNtbundleInstruction as Nf, getBundleMasterAccountCodec as Ng, fetchMaybeStrategy as Nh, getSetBundleCreatorInstruction as Ni, getInitializeBundleDepositorInstructionDataEncoder as Nl, NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO as Nm, getSetReferralTierConfigInstructionDataCodec as Nn, ProcessWithdrawalInstruction as No, NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO as Np, SetMaxDepositAmountInput as Nr, PerformRefillAsyncInput as Ns, SetUserFeeOverrideInstruction as Nt, getDistributeToReceiversInstructionDataCodec as Nu, parseUpdateAllocationsInstruction as O, REMOVE_STRATEGY_DISCRIMINATOR as Oa, getManagerWithdrawWithSplitInstructionAsync as Oc, ChangeManagerInstructionData as Od, NtbundlePlugin as Of, decodeBundleMasterAccount as Og, Strategy as Oh, SetBundleCreatorInput as Oi, getInitializeBundleDepositorDiscriminatorBytes as Ol, NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO as Om, SetReferralTierConfigInstruction as On, parseReferrerRequestWithdrawInstruction as Oo, NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX as Op, getSetMinDepositAmountInstructionDataDecoder as Or, getProcessDepositInstructionDataDecoder as Os, parseSetUserReferrerInstruction as Ot, DistributeToReceiversInstructionDataArgs as Ou, StartDistributionInstructionData as P, getRemoveStrategyDiscriminatorBytes as Pa, ManagerWithdrawAsyncInput as Pc, getChangeManagerInstructionDataDecoder as Pd, identifyNtbundleAccount as Pf, getBundleMasterAccountDecoder as Pg, fetchStrategy as Ph, getSetBundleCreatorInstructionAsync as Pi, parseInitializeBundleDepositorInstruction as Pl, NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER as Pm, getSetReferralTierConfigInstructionDataDecoder as Pn, ProcessWithdrawalInstructionData as Po, NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED as Pp, SetMaxDepositAmountInstruction as Pr, PerformRefillInput as Ps, SetUserFeeOverrideInstructionData as Pt, getDistributeToReceiversInstructionDataDecoder as Pu, getSetWithdrawalRedemptionScheduleInstructionDataDecoder as Q, getRegisterReferrerInstructionDataDecoder as Qa, InitializePermissionedBundleDepositorInstructionDataArgs as Qc, ApplyFeesToUserAsyncInput as Qd, SourceOracleDataSeeds as Qf, Bundle as Qg, getReferrerAccountSize as Qh, parseRequestWithdrawalInstruction as Qi, EndDistributionInstruction as Ql, NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE as Qm, SetOracleMaxAgeInstruction as Qn, getProcessSwitchInstructionAsync as Qo, NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE as Qp, getSetKeeperInstructionDataDecoder as Qr, getPauseDepositsWithdrawalsDiscriminatorBytes as Qs, getSetReferrerRateOverrideInstructionDataDecoder as Qt, ClearUserWithdrawalTimingOverrideAsyncInput as Qu, getStartDistributionInstructionAsync as R, getRemoveStrategyInstructionDataDecoder as Ra, ManagerWithdrawInstructionDataArgs as Rc, ChangeBundleMasterAdminAsyncInput as Rd, UserBundleAccountSeeds as Rf, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR as Rg, getStrategyEncoder as Rh, parseSetBundleCreatorInstruction as Ri, InitializeBundleInstruction as Rl, NTBUNDLE_ERROR__REFERRALS_DISABLED as Rm, SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR as Rn, getProcessWithdrawalInstructionAsync as Ro, NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND as Rp, getSetMaxDepositAmountInstruction as Rr, getPerformRefillDiscriminatorBytes as Rs, getSetUserFeeOverrideInstructionAsync as Rt, CloseUserBundleAccountAsyncInput as Ru, getUpdateAllocationsDiscriminatorBytes as S, getRequestBundleSwitchInstructionAsync as Sa, ManagerWithdrawWithSplitInstruction as Sc, getClearUserFeeOverrideInstructionDataDecoder as Sd, getAddStrategyInstructionDataDecoder as Sf, getBundleTempDataDiscriminatorBytes as Sg, getUserBundleAccountCodec as Sh, getSetDelaysInstructionDataDecoder as Si, InitializeBundleDepositorAsyncInput as Sl, NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR as Sm, getSetReferrerActiveInstructionDataDecoder as Sn, getReferrerRequestWithdrawDiscriminatorBytes as So, findBundleAssetAuthorityPda as Sp, SetMinDepositAmountInstruction as Sr, ProcessDepositInstructionData as Ss, getSetUserReferrerDiscriminatorBytes as St, parseEnableStrategyInstruction as Su, getUpdateAllocationsInstructionDataCodec as T, getRequestBundleSwitchInstructionDataEncoder as Ta, ParsedManagerWithdrawWithSplitInstruction as Tc, CHANGE_MANAGER_DISCRIMINATOR as Td, NTBUNDLE_PROGRAM_ADDRESS as Tf, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR as Tg, getUserBundleAccountEncoder as Th, ParsedSetBundleCreatorInstruction as Ti, InitializeBundleDepositorInstructionData as Tl, NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT as Tm, ParsedSetReferralTierConfigInstruction as Tn, getReferrerRequestWithdrawInstructionDataCodec as To, NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO as Tp, getSetMinDepositAmountDiscriminatorBytes as Tr, getProcessDepositInstruction as Ts, getSetUserReferrerInstructionDataCodec as Tt, DistributeToReceiversInput as Tu, ParsedSetWithdrawalRedemptionScheduleInstruction as U, RegisterReferrerAsyncInput as Ua, getManagerWithdrawInstructionDataCodec as Uc, ParsedChangeBundleMasterAdminInstruction as Ud, findTargetPendingBundleAssetAuthorityPda as Uf, fetchAllMaybeBundleCreatorAccount as Ug, decodeReferrerAccount as Uh, RequestWithdrawalInstruction as Ui, getInitializeBundleInstruction as Ul, NTBUNDLE_ERROR__REFERRER_SHARES_ZERO as Um, getSetOracleUpdateTimeLimitDiscriminatorBytes as Un, PROCESS_SWITCH_DISCRIMINATOR as Uo, NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE as Up, ParsedSetKeeperInstruction as Ur, getPerformRefillInstructionDataEncoder as Us, ParsedSetReferrerRateOverrideInstruction as Ut, ParsedCloseUserBundleAccountInstruction as Uu, getStartDistributionInstructionDataEncoder as V, ParsedRegisterReferrerInstruction as Va, getManagerWithdrawInstruction as Vc, ChangeBundleMasterAdminInstructionData as Vd, findTargetUserBundleAccountPda as Vf, decodeBundleCreatorAccount as Vg, ReferrerAccount as Vh, RequestWithdrawalAsyncInput as Vi, ParsedInitializeBundleInstruction as Vl, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING as Vm, SetOracleUpdateTimeLimitInstructionData as Vn, getProcessWithdrawalInstructionDataEncoder as Vo, NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE as Vp, getSetMaxDepositAmountInstructionDataEncoder as Vr, getPerformRefillInstructionDataCodec as Vs, getSetUserFeeOverrideInstructionDataEncoder as Vt, CloseUserBundleAccountInstructionData as Vu, SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR as W, RegisterReferrerInput as Wa, getManagerWithdrawInstructionDataDecoder as Wc, getChangeBundleMasterAdminDiscriminatorBytes as Wd, TargetOracleDataSeeds as Wf, fetchBundleCreatorAccount as Wg, fetchAllMaybeReferrerAccount as Wh, RequestWithdrawalInstructionData as Wi, getInitializeBundleInstructionAsync as Wl, NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED as Wm, getSetOracleUpdateTimeLimitInstruction as Wn, ParsedProcessSwitchInstruction as Wo, NTBUNDLE_ERROR__INSUFFICIENT_FUNDS as Wp, SET_KEEPER_DISCRIMINATOR as Wr, parsePerformRefillInstruction as Ws, SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR as Wt, getCloseUserBundleAccountDiscriminatorBytes as Wu, getSetWithdrawalRedemptionScheduleInstruction as X, getRegisterReferrerInstructionAsync as Xa, InitializePermissionedBundleDepositorInstruction as Xc, parseChangeBundleMasterAdminInstruction as Xd, SourceUserBundleAccountSeeds as Xf, getBundleCreatorAccountSize as Xg, getReferrerAccountDiscriminatorBytes as Xh, getRequestWithdrawalInstructionDataDecoder as Xi, EndDistributionAsyncInput as Xl, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING as Xm, SET_ORACLE_MAX_AGE_DISCRIMINATOR as Xn, getProcessSwitchDiscriminatorBytes as Xo, NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER as Xp, getSetKeeperInstruction as Xr, PauseDepositsWithdrawalsInstructionData as Xs, getSetReferrerRateOverrideInstruction as Xt, parseCloseUserBundleAccountInstruction as Xu, getSetWithdrawalRedemptionScheduleDiscriminatorBytes as Y, getRegisterReferrerInstruction as Ya, InitializePermissionedBundleDepositorInput as Yc, getChangeBundleMasterAdminInstructionDataEncoder as Yd, findStrategyAccountPda as Yf, getBundleCreatorAccountEncoder as Yg, getReferrerAccountDecoder as Yh, getRequestWithdrawalInstructionDataCodec as Yi, END_DISTRIBUTION_DISCRIMINATOR as Yl, NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH as Ym, ParsedSetOracleMaxAgeInstruction as Yn, ProcessSwitchInstructionDataArgs as Yo, NTBUNDLE_ERROR__INVALID_FEE_SPLIT as Yp, getSetKeeperDiscriminatorBytes as Yr, PauseDepositsWithdrawalsInstruction as Ys, getSetReferrerRateOverrideDiscriminatorBytes as Yt, getCloseUserBundleAccountInstructionDataEncoder as Yu, getSetWithdrawalRedemptionScheduleInstructionDataCodec as Z, getRegisterReferrerInstructionDataCodec as Za, InitializePermissionedBundleDepositorInstructionData as Zc, APPLY_FEES_TO_USER_DISCRIMINATOR as Zd, findSourceUserBundleAccountPda as Zf, BUNDLE_DISCRIMINATOR as Zg, getReferrerAccountEncoder as Zh, getRequestWithdrawalInstructionDataEncoder as Zi, EndDistributionInput as Zl, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH as Zm, SetOracleMaxAgeInput as Zn, getProcessSwitchInstruction as Zo, NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER as Zp, getSetKeeperInstructionDataCodec as Zr, PauseDepositsWithdrawalsInstructionDataArgs as Zs, getSetReferrerRateOverrideInstructionDataCodec as Zt, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR as Zu, UpdateAllocationsAsyncInput as _, RequestBundleSwitchInstruction as _a, getNetPendingTransactionsInstructionDataEncoder as _c, ParsedClearUserFeeOverrideInstruction as _d, ParsedAddStrategyInstruction as _f, fetchAllMaybeBundleTempData as _g, decodeUserBundleAccount as _h, SetDelaysInstructionData as _i, getInitializeBundleMasterAccountInstructionDataCodec as _l, NTBUNDLE_ERROR__NETTING_ALREADY_DONE as _m, SetReferrerActiveInstructionData as _n, ReferrerRequestWithdrawAsyncInput as _o, findBundleTempDataPda as _p, getSetOracleBufferInstructionDataEncoder as _r, PROCESS_DEPOSIT_DISCRIMINATOR as _s, SetUserReferrerAsyncInput as _t, getEnableStrategyInstruction as _u, UpdateOracleInstruction as a, getBundleCodec as a_, RequestDepositInstructionDataArgs as aa, NET_PENDING_TRANSACTIONS_DISCRIMINATOR as ac, getClearUserWithdrawalTimingOverrideInstruction as ad, getApplyFeesToUserInstruction as af, fetchMaybeOracleData as ag, NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION as ah, SetFeesInstructionData as ai, getInitializePermissionedBundleDepositorInstructionDataEncoder as al, NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG as am, SetReferrerConfigInstructionData as an, RefundDepositInstruction as ao, findRequestBundleSwitchUserBundleAccountPda as ap, getSetOracleMaxAgeInstructionDataEncoder as ar, ProcessReferrerWithdrawalAsyncInput as as, SetUserWithdrawalTimingOverrideInstruction as at, getEndDistributionInstructionDataCodec as au, UpdateAllocationsInstructionData as b, getRequestBundleSwitchDiscriminatorBytes as ba, ManagerWithdrawWithSplitAsyncInput as bc, getClearUserFeeOverrideInstructionAsync as bd, getAddStrategyInstructionAsync as bf, getBundleTempDataCodec as bg, fetchMaybeUserBundleAccount as bh, getSetDelaysInstruction as bi, parseInitializeBundleMasterAccountInstruction as bl, NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS as bm, getSetReferrerActiveInstruction as bn, ReferrerRequestWithdrawInstructionData as bo, findBundleCreatorAccountPda as bp, SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR as br, ProcessDepositInput as bs, SetUserReferrerInstructionData as bt, getEnableStrategyInstructionDataDecoder as bu, getUpdateOracleDiscriminatorBytes as c, getBundleEncoder as c_, getRequestDepositInstructionAsync as ca, NetPendingTransactionsInstruction as cc, getClearUserWithdrawalTimingOverrideInstructionDataDecoder as cd, getApplyFeesToUserInstructionDataDecoder as cf, getOracleDataDecoder as cg, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY as ch, getSetFeesInstruction as ci, InitializeBundleMasterAccountAsyncInput as cl, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD as cm, getSetReferrerConfigInstruction as cn, getRefundDepositDiscriminatorBytes as co, ReferrerAccountSeeds as cp, SET_ORACLE_BUFFER_DISCRIMINATOR as cr, ProcessReferrerWithdrawalInstructionData as cs, getSetUserWithdrawalTimingOverrideDiscriminatorBytes as ct, parseEndDistributionInstruction as cu, getUpdateOracleInstructionDataCodec as d, getReferralTierCodec as d_, getRequestDepositInstructionDataEncoder as da, ParsedNetPendingTransactionsInstruction as dc, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR as dd, ADD_STRATEGY_DISCRIMINATOR as df, getOracleDataSize as dg, NtbundleError as dh, getSetFeesInstructionDataEncoder as di, InitializeBundleMasterAccountInstructionData as dl, NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO as dm, getSetReferrerConfigInstructionDataEncoder as dn, getRefundDepositInstructionDataCodec as do, findPendingBundleAssetAuthorityPda as dp, SetOracleBufferInstructionData as dr, getProcessReferrerWithdrawalInstruction as ds, getSetUserWithdrawalTimingOverrideInstructionDataCodec as dt, EnableStrategyInput as du, decodeBundle as e_, REQUEST_DEPOSIT_DISCRIMINATOR as ea, getPauseDepositsWithdrawalsInstructionAsync as ec, ClearUserWithdrawalTimingOverrideInstruction as ed, ApplyFeesToUserInstruction as ef, OracleData as eg, NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT as eh, parseSetKeeperInstruction as ei, getInitializePermissionedBundleDepositorDiscriminatorBytes as el, NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR as em, parseSetReferrerRateOverrideInstruction as en, parseRegisterReferrerInstruction as eo, SourceBundleTempDataSeeds as ep, SetOracleMaxAgeInstructionDataArgs as er, getProcessSwitchInstructionDataDecoder as es, parseSetWithdrawalRedemptionScheduleInstruction as et, EndDistributionInstructionDataArgs as eu, getUpdateOracleInstructionDataDecoder as f, getReferralTierDecoder as f_, parseRequestDepositInstruction as fa, getNetPendingTransactionsDiscriminatorBytes as fc, ClearUserFeeOverrideAsyncInput as fd, AddStrategyAsyncInput as ff, BUNDLE_TEMP_DATA_DISCRIMINATOR as fg, getNtbundleErrorMessage as fh, parseSetFeesInstruction as fi, InitializeBundleMasterAccountInstructionDataArgs as fl, NTBUNDLE_ERROR__MANAGER_SHARES_ZERO as fm, parseSetReferrerConfigInstruction as fn, getRefundDepositInstructionDataDecoder as fo, OracleDataSeeds as fp, SetOracleBufferInstructionDataArgs as fr, getProcessReferrerWithdrawalInstructionAsync as fs, getSetUserWithdrawalTimingOverrideInstructionDataDecoder as ft, EnableStrategyInstruction as fu, UPDATE_ALLOCATIONS_DISCRIMINATOR as g, RequestBundleSwitchInput as ga, getNetPendingTransactionsInstructionDataDecoder as gc, ClearUserFeeOverrideInstructionDataArgs as gd, AddStrategyInstructionDataArgs as gf, fetchAllBundleTempData as gg, UserBundleAccountArgs as gh, SetDelaysInstruction as gi, getInitializeBundleMasterAccountInstructionAsync as gl, NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST as gm, SetReferrerActiveInstruction as gn, REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR as go, BundleTempDataSeeds as gp, getSetOracleBufferInstructionDataDecoder as gr, parseProcessReferrerWithdrawalInstruction as gs, SET_USER_REFERRER_DISCRIMINATOR as gt, getEnableStrategyDiscriminatorBytes as gu, ParsedUpdateAllocationsInstruction as h, RequestBundleSwitchAsyncInput as ha, getNetPendingTransactionsInstructionDataCodec as hc, ClearUserFeeOverrideInstructionData as hd, AddStrategyInstructionData as hf, decodeBundleTempData as hg, UserBundleAccount as hh, SetDelaysInput as hi, getInitializeBundleMasterAccountInstruction as hl, NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET as hm, SetReferrerActiveInput as hn, ParsedReferrerRequestWithdrawInstruction as ho, findCloseUserBundleAccountUserBundleAccountPda as hp, getSetOracleBufferInstructionDataCodec as hr, getProcessReferrerWithdrawalInstructionDataEncoder as hs, ParsedSetUserReferrerInstruction as ht, ParsedEnableStrategyInstruction as hu, UpdateOracleInput as i, fetchMaybeBundle as i_, RequestDepositInstructionData as ia, parsePauseDepositsWithdrawalsInstruction as ic, getClearUserWithdrawalTimingOverrideDiscriminatorBytes as id, getApplyFeesToUserDiscriminatorBytes as if, fetchAllOracleData as ig, NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION as ih, SetFeesInstruction as ii, getInitializePermissionedBundleDepositorInstructionDataDecoder as il, NTBUNDLE_ERROR__INVALID_TWAP_PERIOD as im, SetReferrerConfigInstruction as in, RefundDepositInput as io, RequestBundleSwitchUserBundleAccountSeeds as ip, getSetOracleMaxAgeInstructionDataDecoder as ir, ParsedProcessReferrerWithdrawalInstruction as is, SetUserWithdrawalTimingOverrideInput as it, getEndDistributionInstructionAsync as iu, StartDistributionAsyncInput as j, RemoveStrategyInstruction as ja, getManagerWithdrawWithSplitInstructionDataEncoder as jc, getChangeManagerDiscriminatorBytes as jd, NtbundlePluginPdas as jf, fetchBundleMasterAccount as jg, fetchAllMaybeStrategy as jh, SetBundleCreatorInstructionDataArgs as ji, getInitializeBundleDepositorInstructionDataCodec as jl, NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST as jm, getSetReferralTierConfigDiscriminatorBytes as jn, ProcessWithdrawalAsyncInput as jo, NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER as jp, ParsedSetMaxDepositAmountInstruction as jr, PERFORM_REFILL_DISCRIMINATOR as js, SetUserFeeOverrideAsyncInput as jt, getDistributeToReceiversInstruction as ju, ParsedStartDistributionInstruction as k, RemoveStrategyAsyncInput as ka, getManagerWithdrawWithSplitInstructionDataCodec as kc, ChangeManagerInstructionDataArgs as kd, NtbundlePluginAccounts as kf, fetchAllBundleMasterAccount as kg, StrategyArgs as kh, SetBundleCreatorInstruction as ki, getInitializeBundleDepositorInstruction as kl, NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS as km, SetReferralTierConfigInstructionData as kn, PROCESS_WITHDRAWAL_DISCRIMINATOR as ko, NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED as kp, getSetMinDepositAmountInstructionDataEncoder as kr, getProcessDepositInstructionDataEncoder as ks, ParsedSetUserFeeOverrideInstruction as kt, ParsedDistributeToReceiversInstruction as ku, getUpdateOracleInstruction as l, ReferralTier as l_, getRequestDepositInstructionDataCodec as la, NetPendingTransactionsInstructionData as lc, getClearUserWithdrawalTimingOverrideInstructionDataEncoder as ld, getApplyFeesToUserInstructionDataEncoder as lf, getOracleDataDiscriminatorBytes as lg, NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED as lh, getSetFeesInstructionDataCodec as li, InitializeBundleMasterAccountInput as ll, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY as lm, getSetReferrerConfigInstructionDataCodec as ln, getRefundDepositInstruction as lo, findReferrerAccountPda as lp, SetOracleBufferInput as lr, ProcessReferrerWithdrawalInstructionDataArgs as ls, getSetUserWithdrawalTimingOverrideInstruction as lt, ENABLE_STRATEGY_DISCRIMINATOR as lu, parseUpdateOracleInstruction as m, REQUEST_BUNDLE_SWITCH_DISCRIMINATOR as ma, getNetPendingTransactionsInstructionAsync as mc, ClearUserFeeOverrideInstruction as md, AddStrategyInstruction as mf, BundleTempDataArgs as mg, USER_BUNDLE_ACCOUNT_DISCRIMINATOR as mh, SET_DELAYS_DISCRIMINATOR as mi, getInitializeBundleMasterAccountDiscriminatorBytes as ml, NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED as mm, SET_REFERRER_ACTIVE_DISCRIMINATOR as mn, parseRefundDepositInstruction as mo, CloseUserBundleAccountUserBundleAccountSeeds as mp, getSetOracleBufferInstruction as mr, getProcessReferrerWithdrawalInstructionDataDecoder as ms, parseSetUserWithdrawalTimingOverrideInstruction as mt, EnableStrategyInstructionDataArgs as mu, UPDATE_ORACLE_DISCRIMINATOR as n, fetchAllMaybeBundle as n_, RequestDepositInput as na, getPauseDepositsWithdrawalsInstructionDataDecoder as nc, ClearUserWithdrawalTimingOverrideInstructionDataArgs as nd, ApplyFeesToUserInstructionDataArgs as nf, decodeOracleData as ng, NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR as nh, SET_FEES_DISCRIMINATOR as ni, getInitializePermissionedBundleDepositorInstructionAsync as nl, NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG as nm, SET_REFERRER_CONFIG_DISCRIMINATOR as nn, REFUND_DEPOSIT_DISCRIMINATOR as no, SourceBundleAssetAuthoritySeeds as np, getSetOracleMaxAgeInstruction as nr, parseProcessSwitchInstruction as ns, SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR as nt, getEndDistributionDiscriminatorBytes as nu, UpdateOracleInstructionData as o, getBundleDecoder as o_, getRequestDepositDiscriminatorBytes as oa, NetPendingTransactionsAsyncInput as oc, getClearUserWithdrawalTimingOverrideInstructionAsync as od, getApplyFeesToUserInstructionAsync as of, fetchOracleData as og, NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS as oh, SetFeesInstructionDataArgs as oi, parseInitializePermissionedBundleDepositorInstruction as ol, NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG as om, SetReferrerConfigInstructionDataArgs as on, RefundDepositInstructionData as oo, ReferrerUserBundleAccountSeeds as op, parseSetOracleMaxAgeInstruction as or, ProcessReferrerWithdrawalInput as os, SetUserWithdrawalTimingOverrideInstructionData as ot, getEndDistributionInstructionDataDecoder as ou, getUpdateOracleInstructionDataEncoder as p, getReferralTierEncoder as p_, ParsedRequestBundleSwitchInstruction as pa, getNetPendingTransactionsInstruction as pc, ClearUserFeeOverrideInput as pd, AddStrategyInput as pf, BundleTempData as pg, isNtbundleError as ph, ParsedSetDelaysInstruction as pi, ParsedInitializeBundleMasterAccountInstruction as pl, NTBUNDLE_ERROR__MATH_ERROR as pm, ParsedSetReferrerActiveInstruction as pn, getRefundDepositInstructionDataEncoder as po, findOracleDataPda as pp, getSetOracleBufferDiscriminatorBytes as pr, getProcessReferrerWithdrawalInstructionDataCodec as ps, getSetUserWithdrawalTimingOverrideInstructionDataEncoder as pt, EnableStrategyInstructionData as pu, SetWithdrawalRedemptionScheduleInstructionData as q, RegisterReferrerInstructionDataArgs as qa, INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR as qc, getChangeBundleMasterAdminInstructionDataCodec as qd, findTargetBundleTempDataPda as qf, getBundleCreatorAccountDecoder as qg, fetchReferrerAccount as qh, getRequestWithdrawalInstruction as qi, getInitializeBundleInstructionDataEncoder as ql, NTBUNDLE_ERROR__STRATEGY_DISABLED as qm, getSetOracleUpdateTimeLimitInstructionDataEncoder as qn, ProcessSwitchInstruction as qo, NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS as qp, SetKeeperInstructionData as qr, PauseDepositsWithdrawalsAsyncInput as qs, SetReferrerRateOverrideInstructionData as qt, getCloseUserBundleAccountInstructionDataCodec as qu, UpdateOracleAsyncInput as r, fetchBundle as r_, RequestDepositInstruction as ra, getPauseDepositsWithdrawalsInstructionDataEncoder as rc, ParsedClearUserWithdrawalTimingOverrideInstruction as rd, ParsedApplyFeesToUserInstruction as rf, fetchAllMaybeOracleData as rg, NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION as rh, SetFeesInput as ri, getInitializePermissionedBundleDepositorInstructionDataCodec as rl, NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG as rm, SetReferrerConfigInput as rn, RefundDepositAsyncInput as ro, findSourceBundleAssetAuthorityPda as rp, getSetOracleMaxAgeInstructionDataCodec as rr, PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR as rs, SetUserWithdrawalTimingOverrideAsyncInput as rt, getEndDistributionInstruction as ru, UpdateOracleInstructionDataArgs as s, getBundleDiscriminatorBytes as s_, getRequestDepositInstruction as sa, NetPendingTransactionsInput as sc, getClearUserWithdrawalTimingOverrideInstructionDataCodec as sd, getApplyFeesToUserInstructionDataCodec as sf, getOracleDataCodec as sg, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY as sh, getSetFeesDiscriminatorBytes as si, INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR as sl, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT as sm, getSetReferrerConfigDiscriminatorBytes as sn, RefundDepositInstructionDataArgs as so, findReferrerUserBundleAccountPda as sp, ParsedSetOracleBufferInstruction as sr, ProcessReferrerWithdrawalInstruction as ss, SetUserWithdrawalTimingOverrideInstructionDataArgs as st, getEndDistributionInstructionDataEncoder as su, ParsedUpdateOracleInstruction as t, fetchAllBundle as t_, RequestDepositAsyncInput as ta, getPauseDepositsWithdrawalsInstructionDataCodec as tc, ClearUserWithdrawalTimingOverrideInstructionData as td, ApplyFeesToUserInstructionData as tf, OracleDataArgs as tg, NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION as th, ParsedSetFeesInstruction as ti, getInitializePermissionedBundleDepositorInstruction as tl, NTBUNDLE_ERROR__INVALID_RECEIVER as tm, ParsedSetReferrerConfigInstruction as tn, ParsedRefundDepositInstruction as to, findSourceBundleTempDataPda as tp, getSetOracleMaxAgeDiscriminatorBytes as tr, getProcessSwitchInstructionDataEncoder as ts, ParsedSetUserWithdrawalTimingOverrideInstruction as tt, ParsedEndDistributionInstruction as tu, getUpdateOracleInstructionAsync as u, ReferralTierArgs as u_, getRequestDepositInstructionDataDecoder as ua, NetPendingTransactionsInstructionDataArgs as uc, parseClearUserWithdrawalTimingOverrideInstruction as ud, parseApplyFeesToUserInstruction as uf, getOracleDataEncoder as ug, NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET as uh, getSetFeesInstructionDataDecoder as ui, InitializeBundleMasterAccountInstruction as ul, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE as um, getSetReferrerConfigInstructionDataDecoder as un, getRefundDepositInstructionAsync as uo, PendingBundleAssetAuthoritySeeds as up, SetOracleBufferInstruction as ur, getProcessReferrerWithdrawalDiscriminatorBytes as us, getSetUserWithdrawalTimingOverrideInstructionAsync as ut, EnableStrategyAsyncInput as uu, UpdateAllocationsInput as v, RequestBundleSwitchInstructionData as va, parseNetPendingTransactionsInstruction as vc, getClearUserFeeOverrideDiscriminatorBytes as vd, getAddStrategyDiscriminatorBytes as vf, fetchBundleTempData as vg, fetchAllMaybeUserBundleAccount as vh, SetDelaysInstructionDataArgs as vi, getInitializeBundleMasterAccountInstructionDataDecoder as vl, NTBUNDLE_ERROR__NETTING_NOT_DONE as vm, SetReferrerActiveInstructionDataArgs as vn, ReferrerRequestWithdrawInput as vo, findBundleMasterAccountPda as vp, parseSetOracleBufferInstruction as vr, ParsedProcessDepositInstruction as vs, SetUserReferrerInput as vt, getEnableStrategyInstructionAsync as vu, getUpdateAllocationsInstructionAsync as w, getRequestBundleSwitchInstructionDataDecoder as wa, ManagerWithdrawWithSplitInstructionDataArgs as wc, parseClearUserFeeOverrideInstruction as wd, parseAddStrategyInstruction as wf, getBundleTempDataSize as wg, getUserBundleAccountDiscriminatorBytes as wh, parseSetDelaysInstruction as wi, InitializeBundleDepositorInstruction as wl, NTBUNDLE_ERROR__ORACLE_NOT_UPDATED as wm, parseSetReferrerActiveInstruction as wn, getReferrerRequestWithdrawInstructionAsync as wo, findBundleAccountPda as wp, SetMinDepositAmountInstructionDataArgs as wr, getProcessDepositDiscriminatorBytes as ws, getSetUserReferrerInstructionAsync as wt, DistributeToReceiversAsyncInput as wu, UpdateAllocationsInstructionDataArgs as x, getRequestBundleSwitchInstruction as xa, ManagerWithdrawWithSplitInput as xc, getClearUserFeeOverrideInstructionDataCodec as xd, getAddStrategyInstructionDataCodec as xf, getBundleTempDataDecoder as xg, fetchUserBundleAccount as xh, getSetDelaysInstructionDataCodec as xi, INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR as xl, NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL as xm, getSetReferrerActiveInstructionDataCodec as xn, ReferrerRequestWithdrawInstructionDataArgs as xo, BundleAssetAuthoritySeeds as xp, SetMinDepositAmountInput as xr, ProcessDepositInstruction as xs, SetUserReferrerInstructionDataArgs as xt, getEnableStrategyInstructionDataEncoder as xu, UpdateAllocationsInstruction as y, RequestBundleSwitchInstructionDataArgs as ya, MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR as yc, getClearUserFeeOverrideInstruction as yd, getAddStrategyInstruction as yf, fetchMaybeBundleTempData as yg, fetchAllUserBundleAccount as yh, getSetDelaysDiscriminatorBytes as yi, getInitializeBundleMasterAccountInstructionDataEncoder as yl, NTBUNDLE_ERROR__NO_PENDING_SWITCH as ym, getSetReferrerActiveDiscriminatorBytes as yn, ReferrerRequestWithdrawInstruction as yo, BundleCreatorAccountSeeds as yp, ParsedSetMinDepositAmountInstruction as yr, ProcessDepositAsyncInput as ys, SetUserReferrerInstruction as yt, getEnableStrategyInstructionDataCodec as yu, getStartDistributionInstructionDataCodec as z, getRemoveStrategyInstructionDataEncoder as za, ParsedManagerWithdrawInstruction as zc, ChangeBundleMasterAdminInput as zd, findUserBundleAccountPda as zf, BundleCreatorAccount as zg, getStrategySize as zh, ParsedRequestWithdrawalInstruction as zi, InitializeBundleInstructionData as zl, NTBUNDLE_ERROR__REFERRAL_ALREADY_SET as zm, SetOracleUpdateTimeLimitInput as zn, getProcessWithdrawalInstructionDataCodec as zo, NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE as zp, getSetMaxDepositAmountInstructionDataCodec as zr, getPerformRefillInstruction as zs, getSetUserFeeOverrideInstructionDataCodec as zt, CloseUserBundleAccountInput as zu };
|