@neutral-trade/sdk 1.0.13 → 2.0.1
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/index.d.mts +21 -6
- package/dist/index.mjs +87 -18
- package/package.json +21 -21
package/dist/index.d.mts
CHANGED
|
@@ -37,6 +37,8 @@ declare enum DevnetVaultId {
|
|
|
37
37
|
bundle_8_100000008 = 100000008,
|
|
38
38
|
/** bundle-9 */
|
|
39
39
|
bundle_9_100000009 = 100000009,
|
|
40
|
+
/** Meridian Liquidity Provider(NT) */
|
|
41
|
+
meridian_liquidity_provider_nt_100000010 = 100000010,
|
|
40
42
|
}
|
|
41
43
|
//#endregion
|
|
42
44
|
//#region src/constants/vault-ids.d.ts
|
|
@@ -45,12 +47,14 @@ declare enum DevnetVaultId {
|
|
|
45
47
|
* Auto-generated from the vault registry JSON.
|
|
46
48
|
*/
|
|
47
49
|
declare enum VaultId {
|
|
50
|
+
/** SPRMCY-USDC-Bundle */
|
|
51
|
+
sprmcy_usdc_bundle_84 = 84,
|
|
48
52
|
/** CTA-C-USDC-Bundle */
|
|
49
53
|
cta_c_usdc_bundle_83 = 83,
|
|
50
54
|
/** Nexus-USDC-Bundle */
|
|
51
55
|
nexus_usdc_bundle_82 = 82,
|
|
52
|
-
/**
|
|
53
|
-
|
|
56
|
+
/** Meridian Liquidity Provider */
|
|
57
|
+
meridian_liquidity_provider_81 = 81,
|
|
54
58
|
/** Options-MM-Z */
|
|
55
59
|
options_mm_z_80 = 80,
|
|
56
60
|
/** Thirdeye-Flagship-USDC-Bundle */
|
|
@@ -220,9 +224,15 @@ declare enum SupportedChain {
|
|
|
220
224
|
Solana = "Solana",
|
|
221
225
|
Hyperliquid = "Hyperliquid",
|
|
222
226
|
Robinhood = "Robinhood",
|
|
227
|
+
MonadTestnet = "MonadTestnet",
|
|
223
228
|
}
|
|
224
229
|
/** Robinhood Chain (Arbitrum Orbit L2). Gas is paid in ETH. */
|
|
225
230
|
declare const ROBINHOOD_CHAIN_ID = 4663;
|
|
231
|
+
/**
|
|
232
|
+
* Monad Testnet. Hosts the Accountable staging vault.
|
|
233
|
+
* Gas is believed to be paid in MON -- not yet confirmed against the chain.
|
|
234
|
+
*/
|
|
235
|
+
declare const MONAD_TESTNET_CHAIN_ID = 10143;
|
|
226
236
|
declare enum SupportedToken {
|
|
227
237
|
USDC = "USDC",
|
|
228
238
|
USDT = "USDT",
|
|
@@ -231,6 +241,7 @@ declare enum SupportedToken {
|
|
|
231
241
|
WBTC = "WBTC",
|
|
232
242
|
WETH = "WETH",
|
|
233
243
|
JLP = "JLP",
|
|
244
|
+
AUSD = "AUSD",
|
|
234
245
|
}
|
|
235
246
|
interface Token {
|
|
236
247
|
name: string;
|
|
@@ -276,6 +287,8 @@ interface VaultRegistryEntry {
|
|
|
276
287
|
subname?: string;
|
|
277
288
|
type: VaultType;
|
|
278
289
|
category: VaultCategory;
|
|
290
|
+
/** Chain the vault lives on. Omitted means {@link SupportedChain.Solana}. */
|
|
291
|
+
chain?: SupportedChain;
|
|
279
292
|
vaultAddress: string;
|
|
280
293
|
depositToken: SupportedToken;
|
|
281
294
|
/** Optional Drift program ID (only for Drift vaults with non-default program) */
|
|
@@ -299,7 +312,8 @@ interface VaultRegistryEntry {
|
|
|
299
312
|
strategyAddress?: string;
|
|
300
313
|
}
|
|
301
314
|
/** Registry entry after cluster-specific program ids have been resolved. */
|
|
302
|
-
type VaultConfig = Omit<VaultRegistryEntry, 'bundleProgramId' | 'driftProgramId'> & {
|
|
315
|
+
type VaultConfig = Omit<VaultRegistryEntry, 'bundleProgramId' | 'driftProgramId' | 'chain'> & {
|
|
316
|
+
chain: SupportedChain;
|
|
303
317
|
bundleProgramId: string | undefined;
|
|
304
318
|
driftProgramId: string | undefined;
|
|
305
319
|
};
|
|
@@ -321,6 +335,7 @@ declare function getDriftProgramId(vault: VaultRegistryEntry): string | undefine
|
|
|
321
335
|
* Transform a registry entry to VaultConfig with program IDs
|
|
322
336
|
* - Drift vaults get driftProgramId
|
|
323
337
|
* - Bundle vaults get bundleProgramId (registry value or cluster default via {@link getBundleProgramId})
|
|
338
|
+
* - `chain` defaults to Solana, so consumers never branch on it being absent
|
|
324
339
|
*/
|
|
325
340
|
declare function toVaultConfig(entry: VaultRegistryEntry, cluster?: BundleCluster): VaultConfig;
|
|
326
341
|
/**
|
|
@@ -335,8 +350,8 @@ declare const vaults: VaultRegistry;
|
|
|
335
350
|
declare const vaultsDevnet: VaultRegistry;
|
|
336
351
|
declare function getVaultRegistry(cluster: BundleCluster): VaultRegistry;
|
|
337
352
|
declare function isValidVaultAddress(address: string, cluster?: BundleCluster): boolean;
|
|
338
|
-
declare function getVaultByAddress(address: string, cluster?: BundleCluster):
|
|
339
|
-
declare function getVaultById(vaultId: number, cluster?: BundleCluster):
|
|
353
|
+
declare function getVaultByAddress(address: string, cluster?: BundleCluster): VaultConfig | undefined;
|
|
354
|
+
declare function getVaultById(vaultId: number, cluster?: BundleCluster): VaultConfig | undefined;
|
|
340
355
|
//#endregion
|
|
341
356
|
//#region src/constants/points-vaults.d.ts
|
|
342
357
|
/** Points-ready vault entry (no full Token - consumer resolves depositToken) */
|
|
@@ -833,4 +848,4 @@ declare function buildBuilderRegistrationTx(rpc: ExtensionsRpc, params: BuildBui
|
|
|
833
848
|
*/
|
|
834
849
|
declare function buildReferrerWithdrawRequestTx(rpc: ExtensionsRpc, params: BuildReferrerWithdrawRequestTxParams): Promise<ReferrerWithdrawRequestPlan>;
|
|
835
850
|
//#endregion
|
|
836
|
-
export { ADD_STRATEGY_DISCRIMINATOR, ALLOWLISTED_BUNDLE_PROGRAM_IDS_BY_CLUSTER, APPLY_FEES_TO_USER_DISCRIMINATOR, ASSOCIATED_TOKEN_PROGRAM_ADDRESS, AddStrategyAsyncInput, AddStrategyInput, AddStrategyInstruction, AddStrategyInstructionData, AddStrategyInstructionDataArgs, ApplyFeesToUserAsyncInput, ApplyFeesToUserInput, ApplyFeesToUserInstruction, ApplyFeesToUserInstructionData, ApplyFeesToUserInstructionDataArgs, BPS_DENOMINATOR, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, BUNDLE_DISCRIMINATOR, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, BUNDLE_PROGRAM_ID_V2_MAINNET, BUNDLE_TEMP_DATA_DISCRIMINATOR, BuildAttributedDepositTxParams, BuildBuilderRegistrationTxParams, type BuildDepositInstructionsParams, BuildReferrerWithdrawRequestTxParams, BuildRequestSwitchInstructionsParams, BuildRequestWithdrawInstructionParams, BuilderDepositAmountTooLowError, BuilderRegistrationPlan, Bundle, BundleAccountSeeds, BundleArgs, BundleAssetAuthoritySeeds, type BundleCluster, BundleCreatorAccount, BundleCreatorAccountArgs, BundleCreatorAccountSeeds, BundleMasterAccount, BundleMasterAccountArgs, BundleTempData, BundleTempDataArgs, BundleTempDataSeeds, BundleVaultInput, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, CHANGE_MANAGER_DISCRIMINATOR, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, ChangeBundleMasterAdminAsyncInput, ChangeBundleMasterAdminInput, ChangeBundleMasterAdminInstruction, ChangeBundleMasterAdminInstructionData, ChangeBundleMasterAdminInstructionDataArgs, ChangeManagerInput, ChangeManagerInstruction, ChangeManagerInstructionData, ChangeManagerInstructionDataArgs, ClearUserFeeOverrideAsyncInput, ClearUserFeeOverrideInput, ClearUserFeeOverrideInstruction, ClearUserFeeOverrideInstructionData, ClearUserFeeOverrideInstructionDataArgs, ClearUserWithdrawalTimingOverrideAsyncInput, ClearUserWithdrawalTimingOverrideInput, ClearUserWithdrawalTimingOverrideInstruction, ClearUserWithdrawalTimingOverrideInstructionData, ClearUserWithdrawalTimingOverrideInstructionDataArgs, CloseUserBundleAccountAsyncInput, CloseUserBundleAccountInput, CloseUserBundleAccountInstruction, CloseUserBundleAccountInstructionData, CloseUserBundleAccountInstructionDataArgs, CloseUserBundleAccountUserBundleAccountSeeds, DEFAULT_BUNDLE_PROGRAM_ID_DEVNET, DEFAULT_BUNDLE_PROGRAM_ID_MAINNET, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, DevnetVaultId, DistributeToReceiversAsyncInput, DistributeToReceiversInput, DistributeToReceiversInstruction, DistributeToReceiversInstructionData, DistributeToReceiversInstructionDataArgs, ENABLE_STRATEGY_DISCRIMINATOR, END_DISTRIBUTION_DISCRIMINATOR, EffectiveFees, EffectiveReferralRates, EnableStrategyAsyncInput, EnableStrategyInput, EnableStrategyInstruction, EnableStrategyInstructionData, EnableStrategyInstructionDataArgs, EndDistributionAsyncInput, EndDistributionInput, EndDistributionInstruction, EndDistributionInstructionData, EndDistributionInstructionDataArgs, ExtensionsRpc, FEE_OVERRIDE_DEPOSIT, FEE_OVERRIDE_MANAGEMENT, FEE_OVERRIDE_PERFORMANCE, FEE_OVERRIDE_WITHDRAWAL, GetAccountInfoRpc, GetMultipleAccountsRpc, GetProgramAccountsRpc, INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR, INITIALIZE_BUNDLE_DISCRIMINATOR, INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR, InitializeBundleAsyncInput, InitializeBundleDepositorAsyncInput, InitializeBundleDepositorInput, InitializeBundleDepositorInstruction, InitializeBundleDepositorInstructionData, InitializeBundleDepositorInstructionDataArgs, InitializeBundleInput, InitializeBundleInstruction, InitializeBundleInstructionData, InitializeBundleInstructionDataArgs, InitializeBundleMasterAccountAsyncInput, InitializeBundleMasterAccountInput, InitializeBundleMasterAccountInstruction, InitializeBundleMasterAccountInstructionData, InitializeBundleMasterAccountInstructionDataArgs, InitializePermissionedBundleDepositorAsyncInput, InitializePermissionedBundleDepositorInput, InitializePermissionedBundleDepositorInstruction, InitializePermissionedBundleDepositorInstructionData, InitializePermissionedBundleDepositorInstructionDataArgs, MANAGER_WITHDRAW_DISCRIMINATOR, MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR, MAX_DEPOSIT_FEE_BPS, MAX_REFERRAL_TIERS, ManagerWithdrawAsyncInput, ManagerWithdrawInput, ManagerWithdrawInstruction, ManagerWithdrawInstructionData, ManagerWithdrawInstructionDataArgs, ManagerWithdrawWithSplitAsyncInput, ManagerWithdrawWithSplitInput, ManagerWithdrawWithSplitInstruction, ManagerWithdrawWithSplitInstructionData, ManagerWithdrawWithSplitInstructionDataArgs, NET_PENDING_TRANSACTIONS_DISCRIMINATOR, NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO, NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS, NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO, NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX, NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED, NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED, NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO, NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED, NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED, NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST, NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST, NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND, NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE, NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE, NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE, NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE, NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE, NTBUNDLE_ERROR__INSUFFICIENT_FUNDS, NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE, NTBUNDLE_ERROR__INVALID_ALLOCATIONS, NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS, NTBUNDLE_ERROR__INVALID_ASSET_PRECISION, NTBUNDLE_ERROR__INVALID_FEE_SPLIT, NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER, NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE, NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT, NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR, NTBUNDLE_ERROR__INVALID_RECEIVER, NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG, NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG, NTBUNDLE_ERROR__INVALID_TWAP_PERIOD, NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG, NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE, NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO, NTBUNDLE_ERROR__MANAGER_SHARES_ZERO, NTBUNDLE_ERROR__MATH_ERROR, NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET, NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST, NTBUNDLE_ERROR__NETTING_ALREADY_DONE, NTBUNDLE_ERROR__NETTING_NOT_DONE, NTBUNDLE_ERROR__NO_PENDING_SWITCH, NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS, NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL, NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__ORACLE_NOT_UPDATED, NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT, NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY, NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS, NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST, NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO, NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER, NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO, NTBUNDLE_ERROR__REFERRALS_DISABLED, NTBUNDLE_ERROR__REFERRAL_ALREADY_SET, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING, NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW, NTBUNDLE_ERROR__REFERRER_SHARES_ZERO, NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID, NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED, NTBUNDLE_ERROR__STRATEGY_DISABLED, NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE, NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE, NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS, NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT, NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR, NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION, NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY, NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED, NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET, NTBUNDLE_PROGRAM_ADDRESS, NetPendingTransactionsAsyncInput, NetPendingTransactionsInput, NetPendingTransactionsInstruction, NetPendingTransactionsInstructionData, NetPendingTransactionsInstructionDataArgs, NettingRequiredBuilderRegistration, NtbundleAccount, NtbundleError, NtbundleInstruction, NtbundlePlugin, NtbundlePluginAccounts, NtbundlePluginInstructions, NtbundlePluginPdas, NtbundlePluginRequirements, ORACLE_DATA_DISCRIMINATOR, OracleData, OracleDataArgs, OracleDataSeeds, PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR, PERFORM_REFILL_DISCRIMINATOR, PROCESS_DEPOSIT_DISCRIMINATOR, PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR, PROCESS_SWITCH_DISCRIMINATOR, PROCESS_WITHDRAWAL_DISCRIMINATOR, ParsedAddStrategyInstruction, ParsedApplyFeesToUserInstruction, ParsedChangeBundleMasterAdminInstruction, ParsedChangeManagerInstruction, ParsedClearUserFeeOverrideInstruction, ParsedClearUserWithdrawalTimingOverrideInstruction, ParsedCloseUserBundleAccountInstruction, ParsedDistributeToReceiversInstruction, ParsedEnableStrategyInstruction, ParsedEndDistributionInstruction, ParsedInitializeBundleDepositorInstruction, ParsedInitializeBundleInstruction, ParsedInitializeBundleMasterAccountInstruction, ParsedInitializePermissionedBundleDepositorInstruction, ParsedManagerWithdrawInstruction, ParsedManagerWithdrawWithSplitInstruction, ParsedNetPendingTransactionsInstruction, ParsedNtbundleInstruction, ParsedPauseDepositsWithdrawalsInstruction, ParsedPerformRefillInstruction, ParsedProcessDepositInstruction, ParsedProcessReferrerWithdrawalInstruction, ParsedProcessSwitchInstruction, ParsedProcessWithdrawalInstruction, ParsedReferrerRequestWithdrawInstruction, ParsedRefundDepositInstruction, ParsedRegisterReferrerInstruction, ParsedRemoveStrategyInstruction, ParsedRequestBundleSwitchInstruction, ParsedRequestDepositInstruction, ParsedRequestWithdrawalInstruction, ParsedSetBundleCreatorInstruction, ParsedSetDelaysInstruction, ParsedSetFeesInstruction, ParsedSetKeeperInstruction, ParsedSetMaxDepositAmountInstruction, ParsedSetMinDepositAmountInstruction, ParsedSetOracleBufferInstruction, ParsedSetOracleMaxAgeInstruction, ParsedSetOracleUpdateTimeLimitInstruction, ParsedSetReferralTierConfigInstruction, ParsedSetReferrerActiveInstruction, ParsedSetReferrerConfigInstruction, ParsedSetReferrerRateOverrideInstruction, ParsedSetUserFeeOverrideInstruction, ParsedSetUserReferrerInstruction, ParsedSetUserWithdrawalTimingOverrideInstruction, ParsedSetWithdrawalRedemptionScheduleInstruction, ParsedStartDistributionInstruction, ParsedUpdateAllocationsInstruction, ParsedUpdateOracleInstruction, PauseDepositsWithdrawalsAsyncInput, PauseDepositsWithdrawalsInput, PauseDepositsWithdrawalsInstruction, PauseDepositsWithdrawalsInstructionData, PauseDepositsWithdrawalsInstructionDataArgs, PendingBundleAssetAuthoritySeeds, PendingFeeEstimate, PerformRefillAsyncInput, PerformRefillInput, PerformRefillInstruction, PerformRefillInstructionData, PerformRefillInstructionDataArgs, type PointsVaultEntry, ProcessDepositAsyncInput, ProcessDepositInput, ProcessDepositInstruction, ProcessDepositInstructionData, ProcessDepositInstructionDataArgs, ProcessReferrerWithdrawalAsyncInput, ProcessReferrerWithdrawalInput, ProcessReferrerWithdrawalInstruction, ProcessReferrerWithdrawalInstructionData, ProcessReferrerWithdrawalInstructionDataArgs, ProcessSwitchAsyncInput, ProcessSwitchInput, ProcessSwitchInstruction, ProcessSwitchInstructionData, ProcessSwitchInstructionDataArgs, ProcessWithdrawalAsyncInput, ProcessWithdrawalInput, ProcessWithdrawalInstruction, ProcessWithdrawalInstructionData, ProcessWithdrawalInstructionDataArgs, REFERRAL_OVERRIDE_MFEE, REFERRAL_OVERRIDE_PFEE, REFERRER_ACCOUNT_DISCRIMINATOR, REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR, REFUND_DEPOSIT_DISCRIMINATOR, REGISTER_REFERRER_DISCRIMINATOR, REMOVE_STRATEGY_DISCRIMINATOR, REQUEST_BUNDLE_SWITCH_DISCRIMINATOR, REQUEST_DEPOSIT_DISCRIMINATOR, REQUEST_WITHDRAWAL_DISCRIMINATOR, ROBINHOOD_CHAIN_ID, ReferralTier, ReferralTierArgs, ReferrerAccount, ReferrerAccountArgs, ReferrerAccountSeeds, ReferrerCodeResolver, ReferrerRequestWithdrawAsyncInput, ReferrerRequestWithdrawInput, ReferrerRequestWithdrawInstruction, ReferrerRequestWithdrawInstructionData, ReferrerRequestWithdrawInstructionDataArgs, ReferrerStatus, ReferrerTierProgress, ReferrerTierScheduleProgress, ReferrerUserBundleAccountSeeds, ReferrerWithdrawRequestPlan, RefundDepositAsyncInput, RefundDepositInput, RefundDepositInstruction, RefundDepositInstructionData, RefundDepositInstructionDataArgs, RegisterReferrerAsyncInput, RegisterReferrerInput, RegisterReferrerInstruction, RegisterReferrerInstructionData, RegisterReferrerInstructionDataArgs, RemoveStrategyAsyncInput, RemoveStrategyInput, RemoveStrategyInstruction, RemoveStrategyInstructionData, RemoveStrategyInstructionDataArgs, RequestBundleSwitchAsyncInput, RequestBundleSwitchInput, RequestBundleSwitchInstruction, RequestBundleSwitchInstructionData, RequestBundleSwitchInstructionDataArgs, RequestBundleSwitchUserBundleAccountSeeds, RequestDepositAsyncInput, RequestDepositInput, RequestDepositInstruction, RequestDepositInstructionData, RequestDepositInstructionDataArgs, RequestWithdrawalAsyncInput, RequestWithdrawalInput, RequestWithdrawalInstruction, RequestWithdrawalInstructionData, RequestWithdrawalInstructionDataArgs, SECONDS_IN_YEAR, SET_BUNDLE_CREATOR_DISCRIMINATOR, SET_DELAYS_DISCRIMINATOR, SET_FEES_DISCRIMINATOR, SET_KEEPER_DISCRIMINATOR, SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_ORACLE_BUFFER_DISCRIMINATOR, SET_ORACLE_MAX_AGE_DISCRIMINATOR, SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR, SET_REFERRAL_TIER_CONFIG_DISCRIMINATOR, SET_REFERRER_ACTIVE_DISCRIMINATOR, SET_REFERRER_CONFIG_DISCRIMINATOR, SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR, SET_USER_FEE_OVERRIDE_DISCRIMINATOR, SET_USER_REFERRER_DISCRIMINATOR, SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR, START_DISTRIBUTION_DISCRIMINATOR, STRATEGY_DISCRIMINATOR, SetBundleCreatorAsyncInput, SetBundleCreatorInput, SetBundleCreatorInstruction, SetBundleCreatorInstructionData, SetBundleCreatorInstructionDataArgs, SetDelaysInput, SetDelaysInstruction, SetDelaysInstructionData, SetDelaysInstructionDataArgs, SetFeesInput, SetFeesInstruction, SetFeesInstructionData, SetFeesInstructionDataArgs, SetKeeperInput, SetKeeperInstruction, SetKeeperInstructionData, SetKeeperInstructionDataArgs, SetMaxDepositAmountInput, SetMaxDepositAmountInstruction, SetMaxDepositAmountInstructionData, SetMaxDepositAmountInstructionDataArgs, SetMinDepositAmountInput, SetMinDepositAmountInstruction, SetMinDepositAmountInstructionData, SetMinDepositAmountInstructionDataArgs, SetOracleBufferInput, SetOracleBufferInstruction, SetOracleBufferInstructionData, SetOracleBufferInstructionDataArgs, SetOracleMaxAgeInput, SetOracleMaxAgeInstruction, SetOracleMaxAgeInstructionData, SetOracleMaxAgeInstructionDataArgs, SetOracleUpdateTimeLimitInput, SetOracleUpdateTimeLimitInstruction, SetOracleUpdateTimeLimitInstructionData, SetOracleUpdateTimeLimitInstructionDataArgs, SetReferralTierConfigInput, SetReferralTierConfigInstruction, SetReferralTierConfigInstructionData, SetReferralTierConfigInstructionDataArgs, SetReferrerActiveInput, SetReferrerActiveInstruction, SetReferrerActiveInstructionData, SetReferrerActiveInstructionDataArgs, SetReferrerConfigInput, SetReferrerConfigInstruction, SetReferrerConfigInstructionData, SetReferrerConfigInstructionDataArgs, SetReferrerRateOverrideInput, SetReferrerRateOverrideInstruction, SetReferrerRateOverrideInstructionData, SetReferrerRateOverrideInstructionDataArgs, SetUserFeeOverrideAsyncInput, SetUserFeeOverrideInput, SetUserFeeOverrideInstruction, SetUserFeeOverrideInstructionData, SetUserFeeOverrideInstructionDataArgs, SetUserReferrerAsyncInput, SetUserReferrerInput, SetUserReferrerInstruction, SetUserReferrerInstructionData, SetUserReferrerInstructionDataArgs, SetUserWithdrawalTimingOverrideAsyncInput, SetUserWithdrawalTimingOverrideInput, SetUserWithdrawalTimingOverrideInstruction, SetUserWithdrawalTimingOverrideInstructionData, SetUserWithdrawalTimingOverrideInstructionDataArgs, SetWithdrawalRedemptionScheduleInput, SetWithdrawalRedemptionScheduleInstruction, SetWithdrawalRedemptionScheduleInstructionData, SetWithdrawalRedemptionScheduleInstructionDataArgs, SingleTransactionBuilderRegistration, SourceBundleAssetAuthoritySeeds, SourceBundleTempDataSeeds, SourceOracleDataSeeds, SourceUserBundleAccountSeeds, StartDistributionAsyncInput, StartDistributionInput, StartDistributionInstruction, StartDistributionInstructionData, StartDistributionInstructionDataArgs, Strategy, StrategyAccountSeeds, StrategyArgs, SupportedChain, SupportedToken, TOKEN_PROGRAM_ADDRESS, TargetBundleTempDataSeeds, TargetOracleDataSeeds, TargetPendingBundleAssetAuthoritySeeds, TargetUserBundleAccountSeeds, type Token, U64_MAX, UPDATE_ALLOCATIONS_DISCRIMINATOR, UPDATE_ORACLE_DISCRIMINATOR, USER_BUNDLE_ACCOUNT_DISCRIMINATOR, UpdateAllocationsAsyncInput, UpdateAllocationsInput, UpdateAllocationsInstruction, UpdateAllocationsInstructionData, UpdateAllocationsInstructionDataArgs, UpdateOracleAsyncInput, UpdateOracleInput, UpdateOracleInstruction, UpdateOracleInstructionData, UpdateOracleInstructionDataArgs, UserBundleAccount, UserBundleAccountArgs, UserBundleAccountSeeds, UserBundleBalance, VaultCategory, type VaultConfig, VaultId, type VaultRegistry, type VaultRegistryEntry, VaultType, assertAllowlistedBundleProgramId, assertValidAmountRaw, buildAttributedDepositTx, buildBuilderRegistrationTx, buildDepositInstructions, buildEnsureAssociatedTokenAccountInstruction, buildReferrerWithdrawRequestTx, buildRequestSwitchInstructions, buildRequestWithdrawInstruction, calculateAssetsFromShares, calculateGrossDepositAmount, calculateOnChainPps, calculateReferrerTierProgress, calculateReferrerTierScheduleProgress, computeUserBundleBalance, computeWithdrawalShares, createAssociatedTokenAccountIdempotentInstruction, decodeBundle, decodeBundleCreatorAccount, decodeBundleMasterAccount, decodeBundleTempData, decodeOracleData, decodeReferrerAccount, decodeStrategy, decodeUserBundleAccount, deriveReferrerAccountForUser, estimatePendingUserFees, estimateWithdrawalAvailableTimestamp, estimateWithdrawalCooldownSeconds, fetchAllBundle, fetchAllBundleCreatorAccount, fetchAllBundleMasterAccount, fetchAllBundleTempData, fetchAllMaybeBundle, fetchAllMaybeBundleCreatorAccount, fetchAllMaybeBundleMasterAccount, fetchAllMaybeBundleTempData, fetchAllMaybeOracleData, fetchAllMaybeReferrerAccount, fetchAllMaybeStrategy, fetchAllMaybeUserBundleAccount, fetchAllOracleData, fetchAllReferrerAccount, fetchAllStrategy, fetchAllUserBundleAccount, fetchBundle, fetchBundleCreatorAccount, fetchBundleMasterAccount, fetchBundleTempData, fetchMaybeBundle, fetchMaybeBundleCreatorAccount, fetchMaybeBundleMasterAccount, fetchMaybeBundleTempData, fetchMaybeOracleData, fetchMaybeReferrerAccount, fetchMaybeStrategy, fetchMaybeUserBundleAccount, fetchOracleData, fetchReferrerAccount, fetchReferrerStatus, fetchStrategy, fetchUserBundleAccount, fetchUserBundleBalance, fetchUserBundleBalances, findAssociatedTokenPda, findBundleAccountPda, findBundleAssetAuthorityPda, findBundleCreatorAccountPda, findBundleMasterAccountPda, findBundleTempDataPda, findCloseUserBundleAccountUserBundleAccountPda, findOracleDataPda, findPendingBundleAssetAuthorityPda, findReferrerAccountPda, findReferrerUserBundleAccountPda, findRequestBundleSwitchUserBundleAccountPda, findSourceBundleAssetAuthorityPda, findSourceBundleTempDataPda, findSourceOracleDataPda, findSourceUserBundleAccountPda, findStrategyAccountPda, findTargetBundleTempDataPda, findTargetOracleDataPda, findTargetPendingBundleAssetAuthorityPda, findTargetUserBundleAccountPda, findUserBundleAccountPda, getAddStrategyDiscriminatorBytes, getAddStrategyInstruction, getAddStrategyInstructionAsync, getAddStrategyInstructionDataCodec, getAddStrategyInstructionDataDecoder, getAddStrategyInstructionDataEncoder, getApplyFeesToUserDiscriminatorBytes, getApplyFeesToUserInstruction, getApplyFeesToUserInstructionAsync, getApplyFeesToUserInstructionDataCodec, getApplyFeesToUserInstructionDataDecoder, getApplyFeesToUserInstructionDataEncoder, getBundleCodec, getBundleCreatorAccountCodec, getBundleCreatorAccountDecoder, getBundleCreatorAccountDiscriminatorBytes, getBundleCreatorAccountEncoder, getBundleCreatorAccountSize, getBundleDecoder, getBundleDiscriminatorBytes, getBundleEncoder, getBundleMasterAccountCodec, getBundleMasterAccountDecoder, getBundleMasterAccountDiscriminatorBytes, getBundleMasterAccountEncoder, getBundleMasterAccountSize, getBundleProgramId, getBundleTempDataCodec, getBundleTempDataDecoder, getBundleTempDataDiscriminatorBytes, getBundleTempDataEncoder, getBundleTempDataSize, getChangeBundleMasterAdminDiscriminatorBytes, getChangeBundleMasterAdminInstruction, getChangeBundleMasterAdminInstructionAsync, getChangeBundleMasterAdminInstructionDataCodec, getChangeBundleMasterAdminInstructionDataDecoder, getChangeBundleMasterAdminInstructionDataEncoder, getChangeManagerDiscriminatorBytes, getChangeManagerInstruction, getChangeManagerInstructionDataCodec, getChangeManagerInstructionDataDecoder, getChangeManagerInstructionDataEncoder, getClearUserFeeOverrideDiscriminatorBytes, getClearUserFeeOverrideInstruction, getClearUserFeeOverrideInstructionAsync, getClearUserFeeOverrideInstructionDataCodec, getClearUserFeeOverrideInstructionDataDecoder, getClearUserFeeOverrideInstructionDataEncoder, getClearUserWithdrawalTimingOverrideDiscriminatorBytes, getClearUserWithdrawalTimingOverrideInstruction, getClearUserWithdrawalTimingOverrideInstructionAsync, getClearUserWithdrawalTimingOverrideInstructionDataCodec, getClearUserWithdrawalTimingOverrideInstructionDataDecoder, getClearUserWithdrawalTimingOverrideInstructionDataEncoder, getCloseUserBundleAccountDiscriminatorBytes, getCloseUserBundleAccountInstruction, getCloseUserBundleAccountInstructionAsync, getCloseUserBundleAccountInstructionDataCodec, getCloseUserBundleAccountInstructionDataDecoder, getCloseUserBundleAccountInstructionDataEncoder, getDefaultBundleProgramIdByCluster, getDistributeToReceiversDiscriminatorBytes, getDistributeToReceiversInstruction, getDistributeToReceiversInstructionAsync, getDistributeToReceiversInstructionDataCodec, getDistributeToReceiversInstructionDataDecoder, getDistributeToReceiversInstructionDataEncoder, getDriftProgramId, getEnableStrategyDiscriminatorBytes, getEnableStrategyInstruction, getEnableStrategyInstructionAsync, getEnableStrategyInstructionDataCodec, getEnableStrategyInstructionDataDecoder, getEnableStrategyInstructionDataEncoder, getEndDistributionDiscriminatorBytes, getEndDistributionInstruction, getEndDistributionInstructionAsync, getEndDistributionInstructionDataCodec, getEndDistributionInstructionDataDecoder, getEndDistributionInstructionDataEncoder, getInitializeBundleDepositorDiscriminatorBytes, getInitializeBundleDepositorInstruction, getInitializeBundleDepositorInstructionAsync, getInitializeBundleDepositorInstructionDataCodec, getInitializeBundleDepositorInstructionDataDecoder, getInitializeBundleDepositorInstructionDataEncoder, getInitializeBundleDiscriminatorBytes, getInitializeBundleInstruction, getInitializeBundleInstructionAsync, getInitializeBundleInstructionDataCodec, getInitializeBundleInstructionDataDecoder, getInitializeBundleInstructionDataEncoder, getInitializeBundleMasterAccountDiscriminatorBytes, getInitializeBundleMasterAccountInstruction, getInitializeBundleMasterAccountInstructionAsync, getInitializeBundleMasterAccountInstructionDataCodec, getInitializeBundleMasterAccountInstructionDataDecoder, getInitializeBundleMasterAccountInstructionDataEncoder, getInitializePermissionedBundleDepositorDiscriminatorBytes, getInitializePermissionedBundleDepositorInstruction, getInitializePermissionedBundleDepositorInstructionAsync, getInitializePermissionedBundleDepositorInstructionDataCodec, getInitializePermissionedBundleDepositorInstructionDataDecoder, getInitializePermissionedBundleDepositorInstructionDataEncoder, getManagerWithdrawDiscriminatorBytes, getManagerWithdrawInstruction, getManagerWithdrawInstructionAsync, getManagerWithdrawInstructionDataCodec, getManagerWithdrawInstructionDataDecoder, getManagerWithdrawInstructionDataEncoder, getManagerWithdrawWithSplitDiscriminatorBytes, getManagerWithdrawWithSplitInstruction, getManagerWithdrawWithSplitInstructionAsync, getManagerWithdrawWithSplitInstructionDataCodec, getManagerWithdrawWithSplitInstructionDataDecoder, getManagerWithdrawWithSplitInstructionDataEncoder, getNetPendingTransactionsDiscriminatorBytes, getNetPendingTransactionsInstruction, getNetPendingTransactionsInstructionAsync, getNetPendingTransactionsInstructionDataCodec, getNetPendingTransactionsInstructionDataDecoder, getNetPendingTransactionsInstructionDataEncoder, getNtbundleErrorMessage, getOracleDataCodec, getOracleDataDecoder, getOracleDataDiscriminatorBytes, getOracleDataEncoder, getOracleDataSize, getPauseDepositsWithdrawalsDiscriminatorBytes, getPauseDepositsWithdrawalsInstruction, getPauseDepositsWithdrawalsInstructionAsync, getPauseDepositsWithdrawalsInstructionDataCodec, getPauseDepositsWithdrawalsInstructionDataDecoder, getPauseDepositsWithdrawalsInstructionDataEncoder, getPerformRefillDiscriminatorBytes, getPerformRefillInstruction, getPerformRefillInstructionAsync, getPerformRefillInstructionDataCodec, getPerformRefillInstructionDataDecoder, getPerformRefillInstructionDataEncoder, getPointsVaults, getProcessDepositDiscriminatorBytes, getProcessDepositInstruction, getProcessDepositInstructionAsync, getProcessDepositInstructionDataCodec, getProcessDepositInstructionDataDecoder, getProcessDepositInstructionDataEncoder, getProcessReferrerWithdrawalDiscriminatorBytes, getProcessReferrerWithdrawalInstruction, getProcessReferrerWithdrawalInstructionAsync, getProcessReferrerWithdrawalInstructionDataCodec, getProcessReferrerWithdrawalInstructionDataDecoder, getProcessReferrerWithdrawalInstructionDataEncoder, getProcessSwitchDiscriminatorBytes, getProcessSwitchInstruction, getProcessSwitchInstructionAsync, getProcessSwitchInstructionDataCodec, getProcessSwitchInstructionDataDecoder, getProcessSwitchInstructionDataEncoder, getProcessWithdrawalDiscriminatorBytes, getProcessWithdrawalInstruction, getProcessWithdrawalInstructionAsync, getProcessWithdrawalInstructionDataCodec, getProcessWithdrawalInstructionDataDecoder, getProcessWithdrawalInstructionDataEncoder, getReferralTierCodec, getReferralTierDecoder, getReferralTierEncoder, getReferrerAccountCodec, getReferrerAccountDecoder, getReferrerAccountDiscriminatorBytes, getReferrerAccountEncoder, getReferrerAccountSize, getReferrerRequestWithdrawDiscriminatorBytes, getReferrerRequestWithdrawInstruction, getReferrerRequestWithdrawInstructionAsync, getReferrerRequestWithdrawInstructionDataCodec, getReferrerRequestWithdrawInstructionDataDecoder, getReferrerRequestWithdrawInstructionDataEncoder, getRefundDepositDiscriminatorBytes, getRefundDepositInstruction, getRefundDepositInstructionAsync, getRefundDepositInstructionDataCodec, getRefundDepositInstructionDataDecoder, getRefundDepositInstructionDataEncoder, getRegisterReferrerDiscriminatorBytes, getRegisterReferrerInstruction, getRegisterReferrerInstructionAsync, getRegisterReferrerInstructionDataCodec, getRegisterReferrerInstructionDataDecoder, getRegisterReferrerInstructionDataEncoder, getRemoveStrategyDiscriminatorBytes, getRemoveStrategyInstruction, getRemoveStrategyInstructionAsync, getRemoveStrategyInstructionDataCodec, getRemoveStrategyInstructionDataDecoder, getRemoveStrategyInstructionDataEncoder, getRequestBundleSwitchDiscriminatorBytes, getRequestBundleSwitchInstruction, getRequestBundleSwitchInstructionAsync, getRequestBundleSwitchInstructionDataCodec, getRequestBundleSwitchInstructionDataDecoder, getRequestBundleSwitchInstructionDataEncoder, getRequestDepositDiscriminatorBytes, getRequestDepositInstruction, getRequestDepositInstructionAsync, getRequestDepositInstructionDataCodec, getRequestDepositInstructionDataDecoder, getRequestDepositInstructionDataEncoder, getRequestWithdrawalDiscriminatorBytes, getRequestWithdrawalInstruction, getRequestWithdrawalInstructionAsync, getRequestWithdrawalInstructionDataCodec, getRequestWithdrawalInstructionDataDecoder, getRequestWithdrawalInstructionDataEncoder, getSetBundleCreatorDiscriminatorBytes, getSetBundleCreatorInstruction, getSetBundleCreatorInstructionAsync, getSetBundleCreatorInstructionDataCodec, getSetBundleCreatorInstructionDataDecoder, getSetBundleCreatorInstructionDataEncoder, getSetDelaysDiscriminatorBytes, getSetDelaysInstruction, getSetDelaysInstructionDataCodec, getSetDelaysInstructionDataDecoder, getSetDelaysInstructionDataEncoder, getSetFeesDiscriminatorBytes, getSetFeesInstruction, getSetFeesInstructionDataCodec, getSetFeesInstructionDataDecoder, getSetFeesInstructionDataEncoder, getSetKeeperDiscriminatorBytes, getSetKeeperInstruction, getSetKeeperInstructionDataCodec, getSetKeeperInstructionDataDecoder, getSetKeeperInstructionDataEncoder, getSetMaxDepositAmountDiscriminatorBytes, getSetMaxDepositAmountInstruction, getSetMaxDepositAmountInstructionDataCodec, getSetMaxDepositAmountInstructionDataDecoder, getSetMaxDepositAmountInstructionDataEncoder, getSetMinDepositAmountDiscriminatorBytes, getSetMinDepositAmountInstruction, getSetMinDepositAmountInstructionDataCodec, getSetMinDepositAmountInstructionDataDecoder, getSetMinDepositAmountInstructionDataEncoder, getSetOracleBufferDiscriminatorBytes, getSetOracleBufferInstruction, getSetOracleBufferInstructionDataCodec, getSetOracleBufferInstructionDataDecoder, getSetOracleBufferInstructionDataEncoder, getSetOracleMaxAgeDiscriminatorBytes, getSetOracleMaxAgeInstruction, getSetOracleMaxAgeInstructionDataCodec, getSetOracleMaxAgeInstructionDataDecoder, getSetOracleMaxAgeInstructionDataEncoder, getSetOracleUpdateTimeLimitDiscriminatorBytes, getSetOracleUpdateTimeLimitInstruction, getSetOracleUpdateTimeLimitInstructionDataCodec, getSetOracleUpdateTimeLimitInstructionDataDecoder, getSetOracleUpdateTimeLimitInstructionDataEncoder, getSetReferralTierConfigDiscriminatorBytes, getSetReferralTierConfigInstruction, getSetReferralTierConfigInstructionDataCodec, getSetReferralTierConfigInstructionDataDecoder, getSetReferralTierConfigInstructionDataEncoder, getSetReferrerActiveDiscriminatorBytes, getSetReferrerActiveInstruction, getSetReferrerActiveInstructionDataCodec, getSetReferrerActiveInstructionDataDecoder, getSetReferrerActiveInstructionDataEncoder, getSetReferrerConfigDiscriminatorBytes, getSetReferrerConfigInstruction, getSetReferrerConfigInstructionDataCodec, getSetReferrerConfigInstructionDataDecoder, getSetReferrerConfigInstructionDataEncoder, getSetReferrerRateOverrideDiscriminatorBytes, getSetReferrerRateOverrideInstruction, getSetReferrerRateOverrideInstructionDataCodec, getSetReferrerRateOverrideInstructionDataDecoder, getSetReferrerRateOverrideInstructionDataEncoder, getSetUserFeeOverrideDiscriminatorBytes, getSetUserFeeOverrideInstruction, getSetUserFeeOverrideInstructionAsync, getSetUserFeeOverrideInstructionDataCodec, getSetUserFeeOverrideInstructionDataDecoder, getSetUserFeeOverrideInstructionDataEncoder, getSetUserReferrerDiscriminatorBytes, getSetUserReferrerInstruction, getSetUserReferrerInstructionAsync, getSetUserReferrerInstructionDataCodec, getSetUserReferrerInstructionDataDecoder, getSetUserReferrerInstructionDataEncoder, getSetUserWithdrawalTimingOverrideDiscriminatorBytes, getSetUserWithdrawalTimingOverrideInstruction, getSetUserWithdrawalTimingOverrideInstructionAsync, getSetUserWithdrawalTimingOverrideInstructionDataCodec, getSetUserWithdrawalTimingOverrideInstructionDataDecoder, getSetUserWithdrawalTimingOverrideInstructionDataEncoder, getSetWithdrawalRedemptionScheduleDiscriminatorBytes, getSetWithdrawalRedemptionScheduleInstruction, getSetWithdrawalRedemptionScheduleInstructionDataCodec, getSetWithdrawalRedemptionScheduleInstructionDataDecoder, getSetWithdrawalRedemptionScheduleInstructionDataEncoder, getSolanaTokenDecimals, getSolanaTokenMint, getStartDistributionDiscriminatorBytes, getStartDistributionInstruction, getStartDistributionInstructionAsync, getStartDistributionInstructionDataCodec, getStartDistributionInstructionDataDecoder, getStartDistributionInstructionDataEncoder, getStrategyCodec, getStrategyDecoder, getStrategyDiscriminatorBytes, getStrategyEncoder, getStrategySize, getUpdateAllocationsDiscriminatorBytes, getUpdateAllocationsInstruction, getUpdateAllocationsInstructionAsync, getUpdateAllocationsInstructionDataCodec, getUpdateAllocationsInstructionDataDecoder, getUpdateAllocationsInstructionDataEncoder, getUpdateOracleDiscriminatorBytes, getUpdateOracleInstruction, getUpdateOracleInstructionAsync, getUpdateOracleInstructionDataCodec, getUpdateOracleInstructionDataDecoder, getUpdateOracleInstructionDataEncoder, getUserBundleAccountCodec, getUserBundleAccountDecoder, getUserBundleAccountDiscriminatorBytes, getUserBundleAccountEncoder, getUserBundleAccountSize, getVaultByAddress, getVaultById, getVaultRegistry, humanFloatToAmountRaw, identifyNtbundleAccount, identifyNtbundleInstruction, isAllowlistedBundleProgramId, isNtbundleError, isValidVaultAddress, ntbundleProgram, parseAddStrategyInstruction, parseAmountRaw, parseApplyFeesToUserInstruction, parseChangeBundleMasterAdminInstruction, parseChangeManagerInstruction, parseClearUserFeeOverrideInstruction, parseClearUserWithdrawalTimingOverrideInstruction, parseCloseUserBundleAccountInstruction, parseDistributeToReceiversInstruction, parseEnableStrategyInstruction, parseEndDistributionInstruction, parseInitializeBundleDepositorInstruction, parseInitializeBundleInstruction, parseInitializeBundleMasterAccountInstruction, parseInitializePermissionedBundleDepositorInstruction, parseManagerWithdrawInstruction, parseManagerWithdrawWithSplitInstruction, parseNetPendingTransactionsInstruction, parseNtbundleInstruction, parsePauseDepositsWithdrawalsInstruction, parsePerformRefillInstruction, parseProcessDepositInstruction, parseProcessReferrerWithdrawalInstruction, parseProcessSwitchInstruction, parseProcessWithdrawalInstruction, parseReferrerRequestWithdrawInstruction, parseRefundDepositInstruction, parseRegisterReferrerInstruction, parseRemoveStrategyInstruction, parseRequestBundleSwitchInstruction, parseRequestDepositInstruction, parseRequestWithdrawalInstruction, parseSetBundleCreatorInstruction, parseSetDelaysInstruction, parseSetFeesInstruction, parseSetKeeperInstruction, parseSetMaxDepositAmountInstruction, parseSetMinDepositAmountInstruction, parseSetOracleBufferInstruction, parseSetOracleMaxAgeInstruction, parseSetOracleUpdateTimeLimitInstruction, parseSetReferralTierConfigInstruction, parseSetReferrerActiveInstruction, parseSetReferrerConfigInstruction, parseSetReferrerRateOverrideInstruction, parseSetUserFeeOverrideInstruction, parseSetUserReferrerInstruction, parseSetUserWithdrawalTimingOverrideInstruction, parseSetWithdrawalRedemptionScheduleInstruction, parseStartDistributionInstruction, parseUpdateAllocationsInstruction, parseUpdateOracleInstruction, resolveBundleReferralRates, resolveEffectiveFees, resolveEffectiveReferralRates, sharePriceRaw, toVaultConfig, toVaultRegistry, tokens, totalEquityRaw, vaults, vaultsDevnet };
|
|
851
|
+
export { ADD_STRATEGY_DISCRIMINATOR, ALLOWLISTED_BUNDLE_PROGRAM_IDS_BY_CLUSTER, APPLY_FEES_TO_USER_DISCRIMINATOR, ASSOCIATED_TOKEN_PROGRAM_ADDRESS, AddStrategyAsyncInput, AddStrategyInput, AddStrategyInstruction, AddStrategyInstructionData, AddStrategyInstructionDataArgs, ApplyFeesToUserAsyncInput, ApplyFeesToUserInput, ApplyFeesToUserInstruction, ApplyFeesToUserInstructionData, ApplyFeesToUserInstructionDataArgs, BPS_DENOMINATOR, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, BUNDLE_DISCRIMINATOR, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, BUNDLE_PROGRAM_ID_V2_MAINNET, BUNDLE_TEMP_DATA_DISCRIMINATOR, BuildAttributedDepositTxParams, BuildBuilderRegistrationTxParams, type BuildDepositInstructionsParams, BuildReferrerWithdrawRequestTxParams, BuildRequestSwitchInstructionsParams, BuildRequestWithdrawInstructionParams, BuilderDepositAmountTooLowError, BuilderRegistrationPlan, Bundle, BundleAccountSeeds, BundleArgs, BundleAssetAuthoritySeeds, type BundleCluster, BundleCreatorAccount, BundleCreatorAccountArgs, BundleCreatorAccountSeeds, BundleMasterAccount, BundleMasterAccountArgs, BundleTempData, BundleTempDataArgs, BundleTempDataSeeds, BundleVaultInput, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, CHANGE_MANAGER_DISCRIMINATOR, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, ChangeBundleMasterAdminAsyncInput, ChangeBundleMasterAdminInput, ChangeBundleMasterAdminInstruction, ChangeBundleMasterAdminInstructionData, ChangeBundleMasterAdminInstructionDataArgs, ChangeManagerInput, ChangeManagerInstruction, ChangeManagerInstructionData, ChangeManagerInstructionDataArgs, ClearUserFeeOverrideAsyncInput, ClearUserFeeOverrideInput, ClearUserFeeOverrideInstruction, ClearUserFeeOverrideInstructionData, ClearUserFeeOverrideInstructionDataArgs, ClearUserWithdrawalTimingOverrideAsyncInput, ClearUserWithdrawalTimingOverrideInput, ClearUserWithdrawalTimingOverrideInstruction, ClearUserWithdrawalTimingOverrideInstructionData, ClearUserWithdrawalTimingOverrideInstructionDataArgs, CloseUserBundleAccountAsyncInput, CloseUserBundleAccountInput, CloseUserBundleAccountInstruction, CloseUserBundleAccountInstructionData, CloseUserBundleAccountInstructionDataArgs, CloseUserBundleAccountUserBundleAccountSeeds, DEFAULT_BUNDLE_PROGRAM_ID_DEVNET, DEFAULT_BUNDLE_PROGRAM_ID_MAINNET, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, DevnetVaultId, DistributeToReceiversAsyncInput, DistributeToReceiversInput, DistributeToReceiversInstruction, DistributeToReceiversInstructionData, DistributeToReceiversInstructionDataArgs, ENABLE_STRATEGY_DISCRIMINATOR, END_DISTRIBUTION_DISCRIMINATOR, EffectiveFees, EffectiveReferralRates, EnableStrategyAsyncInput, EnableStrategyInput, EnableStrategyInstruction, EnableStrategyInstructionData, EnableStrategyInstructionDataArgs, EndDistributionAsyncInput, EndDistributionInput, EndDistributionInstruction, EndDistributionInstructionData, EndDistributionInstructionDataArgs, ExtensionsRpc, FEE_OVERRIDE_DEPOSIT, FEE_OVERRIDE_MANAGEMENT, FEE_OVERRIDE_PERFORMANCE, FEE_OVERRIDE_WITHDRAWAL, GetAccountInfoRpc, GetMultipleAccountsRpc, GetProgramAccountsRpc, INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR, INITIALIZE_BUNDLE_DISCRIMINATOR, INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR, InitializeBundleAsyncInput, InitializeBundleDepositorAsyncInput, InitializeBundleDepositorInput, InitializeBundleDepositorInstruction, InitializeBundleDepositorInstructionData, InitializeBundleDepositorInstructionDataArgs, InitializeBundleInput, InitializeBundleInstruction, InitializeBundleInstructionData, InitializeBundleInstructionDataArgs, InitializeBundleMasterAccountAsyncInput, InitializeBundleMasterAccountInput, InitializeBundleMasterAccountInstruction, InitializeBundleMasterAccountInstructionData, InitializeBundleMasterAccountInstructionDataArgs, InitializePermissionedBundleDepositorAsyncInput, InitializePermissionedBundleDepositorInput, InitializePermissionedBundleDepositorInstruction, InitializePermissionedBundleDepositorInstructionData, InitializePermissionedBundleDepositorInstructionDataArgs, MANAGER_WITHDRAW_DISCRIMINATOR, MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR, MAX_DEPOSIT_FEE_BPS, MAX_REFERRAL_TIERS, MONAD_TESTNET_CHAIN_ID, ManagerWithdrawAsyncInput, ManagerWithdrawInput, ManagerWithdrawInstruction, ManagerWithdrawInstructionData, ManagerWithdrawInstructionDataArgs, ManagerWithdrawWithSplitAsyncInput, ManagerWithdrawWithSplitInput, ManagerWithdrawWithSplitInstruction, ManagerWithdrawWithSplitInstructionData, ManagerWithdrawWithSplitInstructionDataArgs, NET_PENDING_TRANSACTIONS_DISCRIMINATOR, NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO, NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS, NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO, NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX, NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED, NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED, NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO, NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED, NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED, NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST, NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST, NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND, NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE, NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE, NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE, NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE, NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE, NTBUNDLE_ERROR__INSUFFICIENT_FUNDS, NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE, NTBUNDLE_ERROR__INVALID_ALLOCATIONS, NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS, NTBUNDLE_ERROR__INVALID_ASSET_PRECISION, NTBUNDLE_ERROR__INVALID_FEE_SPLIT, NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER, NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE, NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT, NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR, NTBUNDLE_ERROR__INVALID_RECEIVER, NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG, NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG, NTBUNDLE_ERROR__INVALID_TWAP_PERIOD, NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG, NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE, NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO, NTBUNDLE_ERROR__MANAGER_SHARES_ZERO, NTBUNDLE_ERROR__MATH_ERROR, NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET, NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST, NTBUNDLE_ERROR__NETTING_ALREADY_DONE, NTBUNDLE_ERROR__NETTING_NOT_DONE, NTBUNDLE_ERROR__NO_PENDING_SWITCH, NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS, NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL, NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__ORACLE_NOT_UPDATED, NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT, NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY, NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS, NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST, NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO, NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER, NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO, NTBUNDLE_ERROR__REFERRALS_DISABLED, NTBUNDLE_ERROR__REFERRAL_ALREADY_SET, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING, NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW, NTBUNDLE_ERROR__REFERRER_SHARES_ZERO, NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID, NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED, NTBUNDLE_ERROR__STRATEGY_DISABLED, NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE, NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE, NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS, NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT, NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR, NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION, NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY, NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED, NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET, NTBUNDLE_PROGRAM_ADDRESS, NetPendingTransactionsAsyncInput, NetPendingTransactionsInput, NetPendingTransactionsInstruction, NetPendingTransactionsInstructionData, NetPendingTransactionsInstructionDataArgs, NettingRequiredBuilderRegistration, NtbundleAccount, NtbundleError, NtbundleInstruction, NtbundlePlugin, NtbundlePluginAccounts, NtbundlePluginInstructions, NtbundlePluginPdas, NtbundlePluginRequirements, ORACLE_DATA_DISCRIMINATOR, OracleData, OracleDataArgs, OracleDataSeeds, PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR, PERFORM_REFILL_DISCRIMINATOR, PROCESS_DEPOSIT_DISCRIMINATOR, PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR, PROCESS_SWITCH_DISCRIMINATOR, PROCESS_WITHDRAWAL_DISCRIMINATOR, ParsedAddStrategyInstruction, ParsedApplyFeesToUserInstruction, ParsedChangeBundleMasterAdminInstruction, ParsedChangeManagerInstruction, ParsedClearUserFeeOverrideInstruction, ParsedClearUserWithdrawalTimingOverrideInstruction, ParsedCloseUserBundleAccountInstruction, ParsedDistributeToReceiversInstruction, ParsedEnableStrategyInstruction, ParsedEndDistributionInstruction, ParsedInitializeBundleDepositorInstruction, ParsedInitializeBundleInstruction, ParsedInitializeBundleMasterAccountInstruction, ParsedInitializePermissionedBundleDepositorInstruction, ParsedManagerWithdrawInstruction, ParsedManagerWithdrawWithSplitInstruction, ParsedNetPendingTransactionsInstruction, ParsedNtbundleInstruction, ParsedPauseDepositsWithdrawalsInstruction, ParsedPerformRefillInstruction, ParsedProcessDepositInstruction, ParsedProcessReferrerWithdrawalInstruction, ParsedProcessSwitchInstruction, ParsedProcessWithdrawalInstruction, ParsedReferrerRequestWithdrawInstruction, ParsedRefundDepositInstruction, ParsedRegisterReferrerInstruction, ParsedRemoveStrategyInstruction, ParsedRequestBundleSwitchInstruction, ParsedRequestDepositInstruction, ParsedRequestWithdrawalInstruction, ParsedSetBundleCreatorInstruction, ParsedSetDelaysInstruction, ParsedSetFeesInstruction, ParsedSetKeeperInstruction, ParsedSetMaxDepositAmountInstruction, ParsedSetMinDepositAmountInstruction, ParsedSetOracleBufferInstruction, ParsedSetOracleMaxAgeInstruction, ParsedSetOracleUpdateTimeLimitInstruction, ParsedSetReferralTierConfigInstruction, ParsedSetReferrerActiveInstruction, ParsedSetReferrerConfigInstruction, ParsedSetReferrerRateOverrideInstruction, ParsedSetUserFeeOverrideInstruction, ParsedSetUserReferrerInstruction, ParsedSetUserWithdrawalTimingOverrideInstruction, ParsedSetWithdrawalRedemptionScheduleInstruction, ParsedStartDistributionInstruction, ParsedUpdateAllocationsInstruction, ParsedUpdateOracleInstruction, PauseDepositsWithdrawalsAsyncInput, PauseDepositsWithdrawalsInput, PauseDepositsWithdrawalsInstruction, PauseDepositsWithdrawalsInstructionData, PauseDepositsWithdrawalsInstructionDataArgs, PendingBundleAssetAuthoritySeeds, PendingFeeEstimate, PerformRefillAsyncInput, PerformRefillInput, PerformRefillInstruction, PerformRefillInstructionData, PerformRefillInstructionDataArgs, type PointsVaultEntry, ProcessDepositAsyncInput, ProcessDepositInput, ProcessDepositInstruction, ProcessDepositInstructionData, ProcessDepositInstructionDataArgs, ProcessReferrerWithdrawalAsyncInput, ProcessReferrerWithdrawalInput, ProcessReferrerWithdrawalInstruction, ProcessReferrerWithdrawalInstructionData, ProcessReferrerWithdrawalInstructionDataArgs, ProcessSwitchAsyncInput, ProcessSwitchInput, ProcessSwitchInstruction, ProcessSwitchInstructionData, ProcessSwitchInstructionDataArgs, ProcessWithdrawalAsyncInput, ProcessWithdrawalInput, ProcessWithdrawalInstruction, ProcessWithdrawalInstructionData, ProcessWithdrawalInstructionDataArgs, REFERRAL_OVERRIDE_MFEE, REFERRAL_OVERRIDE_PFEE, REFERRER_ACCOUNT_DISCRIMINATOR, REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR, REFUND_DEPOSIT_DISCRIMINATOR, REGISTER_REFERRER_DISCRIMINATOR, REMOVE_STRATEGY_DISCRIMINATOR, REQUEST_BUNDLE_SWITCH_DISCRIMINATOR, REQUEST_DEPOSIT_DISCRIMINATOR, REQUEST_WITHDRAWAL_DISCRIMINATOR, ROBINHOOD_CHAIN_ID, ReferralTier, ReferralTierArgs, ReferrerAccount, ReferrerAccountArgs, ReferrerAccountSeeds, ReferrerCodeResolver, ReferrerRequestWithdrawAsyncInput, ReferrerRequestWithdrawInput, ReferrerRequestWithdrawInstruction, ReferrerRequestWithdrawInstructionData, ReferrerRequestWithdrawInstructionDataArgs, ReferrerStatus, ReferrerTierProgress, ReferrerTierScheduleProgress, ReferrerUserBundleAccountSeeds, ReferrerWithdrawRequestPlan, RefundDepositAsyncInput, RefundDepositInput, RefundDepositInstruction, RefundDepositInstructionData, RefundDepositInstructionDataArgs, RegisterReferrerAsyncInput, RegisterReferrerInput, RegisterReferrerInstruction, RegisterReferrerInstructionData, RegisterReferrerInstructionDataArgs, RemoveStrategyAsyncInput, RemoveStrategyInput, RemoveStrategyInstruction, RemoveStrategyInstructionData, RemoveStrategyInstructionDataArgs, RequestBundleSwitchAsyncInput, RequestBundleSwitchInput, RequestBundleSwitchInstruction, RequestBundleSwitchInstructionData, RequestBundleSwitchInstructionDataArgs, RequestBundleSwitchUserBundleAccountSeeds, RequestDepositAsyncInput, RequestDepositInput, RequestDepositInstruction, RequestDepositInstructionData, RequestDepositInstructionDataArgs, RequestWithdrawalAsyncInput, RequestWithdrawalInput, RequestWithdrawalInstruction, RequestWithdrawalInstructionData, RequestWithdrawalInstructionDataArgs, SECONDS_IN_YEAR, SET_BUNDLE_CREATOR_DISCRIMINATOR, SET_DELAYS_DISCRIMINATOR, SET_FEES_DISCRIMINATOR, SET_KEEPER_DISCRIMINATOR, SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_ORACLE_BUFFER_DISCRIMINATOR, SET_ORACLE_MAX_AGE_DISCRIMINATOR, SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR, SET_REFERRAL_TIER_CONFIG_DISCRIMINATOR, SET_REFERRER_ACTIVE_DISCRIMINATOR, SET_REFERRER_CONFIG_DISCRIMINATOR, SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR, SET_USER_FEE_OVERRIDE_DISCRIMINATOR, SET_USER_REFERRER_DISCRIMINATOR, SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR, START_DISTRIBUTION_DISCRIMINATOR, STRATEGY_DISCRIMINATOR, SetBundleCreatorAsyncInput, SetBundleCreatorInput, SetBundleCreatorInstruction, SetBundleCreatorInstructionData, SetBundleCreatorInstructionDataArgs, SetDelaysInput, SetDelaysInstruction, SetDelaysInstructionData, SetDelaysInstructionDataArgs, SetFeesInput, SetFeesInstruction, SetFeesInstructionData, SetFeesInstructionDataArgs, SetKeeperInput, SetKeeperInstruction, SetKeeperInstructionData, SetKeeperInstructionDataArgs, SetMaxDepositAmountInput, SetMaxDepositAmountInstruction, SetMaxDepositAmountInstructionData, SetMaxDepositAmountInstructionDataArgs, SetMinDepositAmountInput, SetMinDepositAmountInstruction, SetMinDepositAmountInstructionData, SetMinDepositAmountInstructionDataArgs, SetOracleBufferInput, SetOracleBufferInstruction, SetOracleBufferInstructionData, SetOracleBufferInstructionDataArgs, SetOracleMaxAgeInput, SetOracleMaxAgeInstruction, SetOracleMaxAgeInstructionData, SetOracleMaxAgeInstructionDataArgs, SetOracleUpdateTimeLimitInput, SetOracleUpdateTimeLimitInstruction, SetOracleUpdateTimeLimitInstructionData, SetOracleUpdateTimeLimitInstructionDataArgs, SetReferralTierConfigInput, SetReferralTierConfigInstruction, SetReferralTierConfigInstructionData, SetReferralTierConfigInstructionDataArgs, SetReferrerActiveInput, SetReferrerActiveInstruction, SetReferrerActiveInstructionData, SetReferrerActiveInstructionDataArgs, SetReferrerConfigInput, SetReferrerConfigInstruction, SetReferrerConfigInstructionData, SetReferrerConfigInstructionDataArgs, SetReferrerRateOverrideInput, SetReferrerRateOverrideInstruction, SetReferrerRateOverrideInstructionData, SetReferrerRateOverrideInstructionDataArgs, SetUserFeeOverrideAsyncInput, SetUserFeeOverrideInput, SetUserFeeOverrideInstruction, SetUserFeeOverrideInstructionData, SetUserFeeOverrideInstructionDataArgs, SetUserReferrerAsyncInput, SetUserReferrerInput, SetUserReferrerInstruction, SetUserReferrerInstructionData, SetUserReferrerInstructionDataArgs, SetUserWithdrawalTimingOverrideAsyncInput, SetUserWithdrawalTimingOverrideInput, SetUserWithdrawalTimingOverrideInstruction, SetUserWithdrawalTimingOverrideInstructionData, SetUserWithdrawalTimingOverrideInstructionDataArgs, SetWithdrawalRedemptionScheduleInput, SetWithdrawalRedemptionScheduleInstruction, SetWithdrawalRedemptionScheduleInstructionData, SetWithdrawalRedemptionScheduleInstructionDataArgs, SingleTransactionBuilderRegistration, SourceBundleAssetAuthoritySeeds, SourceBundleTempDataSeeds, SourceOracleDataSeeds, SourceUserBundleAccountSeeds, StartDistributionAsyncInput, StartDistributionInput, StartDistributionInstruction, StartDistributionInstructionData, StartDistributionInstructionDataArgs, Strategy, StrategyAccountSeeds, StrategyArgs, SupportedChain, SupportedToken, TOKEN_PROGRAM_ADDRESS, TargetBundleTempDataSeeds, TargetOracleDataSeeds, TargetPendingBundleAssetAuthoritySeeds, TargetUserBundleAccountSeeds, type Token, U64_MAX, UPDATE_ALLOCATIONS_DISCRIMINATOR, UPDATE_ORACLE_DISCRIMINATOR, USER_BUNDLE_ACCOUNT_DISCRIMINATOR, UpdateAllocationsAsyncInput, UpdateAllocationsInput, UpdateAllocationsInstruction, UpdateAllocationsInstructionData, UpdateAllocationsInstructionDataArgs, UpdateOracleAsyncInput, UpdateOracleInput, UpdateOracleInstruction, UpdateOracleInstructionData, UpdateOracleInstructionDataArgs, UserBundleAccount, UserBundleAccountArgs, UserBundleAccountSeeds, UserBundleBalance, VaultCategory, type VaultConfig, VaultId, type VaultRegistry, type VaultRegistryEntry, VaultType, assertAllowlistedBundleProgramId, assertValidAmountRaw, buildAttributedDepositTx, buildBuilderRegistrationTx, buildDepositInstructions, buildEnsureAssociatedTokenAccountInstruction, buildReferrerWithdrawRequestTx, buildRequestSwitchInstructions, buildRequestWithdrawInstruction, calculateAssetsFromShares, calculateGrossDepositAmount, calculateOnChainPps, calculateReferrerTierProgress, calculateReferrerTierScheduleProgress, computeUserBundleBalance, computeWithdrawalShares, createAssociatedTokenAccountIdempotentInstruction, decodeBundle, decodeBundleCreatorAccount, decodeBundleMasterAccount, decodeBundleTempData, decodeOracleData, decodeReferrerAccount, decodeStrategy, decodeUserBundleAccount, deriveReferrerAccountForUser, estimatePendingUserFees, estimateWithdrawalAvailableTimestamp, estimateWithdrawalCooldownSeconds, fetchAllBundle, fetchAllBundleCreatorAccount, fetchAllBundleMasterAccount, fetchAllBundleTempData, fetchAllMaybeBundle, fetchAllMaybeBundleCreatorAccount, fetchAllMaybeBundleMasterAccount, fetchAllMaybeBundleTempData, fetchAllMaybeOracleData, fetchAllMaybeReferrerAccount, fetchAllMaybeStrategy, fetchAllMaybeUserBundleAccount, fetchAllOracleData, fetchAllReferrerAccount, fetchAllStrategy, fetchAllUserBundleAccount, fetchBundle, fetchBundleCreatorAccount, fetchBundleMasterAccount, fetchBundleTempData, fetchMaybeBundle, fetchMaybeBundleCreatorAccount, fetchMaybeBundleMasterAccount, fetchMaybeBundleTempData, fetchMaybeOracleData, fetchMaybeReferrerAccount, fetchMaybeStrategy, fetchMaybeUserBundleAccount, fetchOracleData, fetchReferrerAccount, fetchReferrerStatus, fetchStrategy, fetchUserBundleAccount, fetchUserBundleBalance, fetchUserBundleBalances, findAssociatedTokenPda, findBundleAccountPda, findBundleAssetAuthorityPda, findBundleCreatorAccountPda, findBundleMasterAccountPda, findBundleTempDataPda, findCloseUserBundleAccountUserBundleAccountPda, findOracleDataPda, findPendingBundleAssetAuthorityPda, findReferrerAccountPda, findReferrerUserBundleAccountPda, findRequestBundleSwitchUserBundleAccountPda, findSourceBundleAssetAuthorityPda, findSourceBundleTempDataPda, findSourceOracleDataPda, findSourceUserBundleAccountPda, findStrategyAccountPda, findTargetBundleTempDataPda, findTargetOracleDataPda, findTargetPendingBundleAssetAuthorityPda, findTargetUserBundleAccountPda, findUserBundleAccountPda, getAddStrategyDiscriminatorBytes, getAddStrategyInstruction, getAddStrategyInstructionAsync, getAddStrategyInstructionDataCodec, getAddStrategyInstructionDataDecoder, getAddStrategyInstructionDataEncoder, getApplyFeesToUserDiscriminatorBytes, getApplyFeesToUserInstruction, getApplyFeesToUserInstructionAsync, getApplyFeesToUserInstructionDataCodec, getApplyFeesToUserInstructionDataDecoder, getApplyFeesToUserInstructionDataEncoder, getBundleCodec, getBundleCreatorAccountCodec, getBundleCreatorAccountDecoder, getBundleCreatorAccountDiscriminatorBytes, getBundleCreatorAccountEncoder, getBundleCreatorAccountSize, getBundleDecoder, getBundleDiscriminatorBytes, getBundleEncoder, getBundleMasterAccountCodec, getBundleMasterAccountDecoder, getBundleMasterAccountDiscriminatorBytes, getBundleMasterAccountEncoder, getBundleMasterAccountSize, getBundleProgramId, getBundleTempDataCodec, getBundleTempDataDecoder, getBundleTempDataDiscriminatorBytes, getBundleTempDataEncoder, getBundleTempDataSize, getChangeBundleMasterAdminDiscriminatorBytes, getChangeBundleMasterAdminInstruction, getChangeBundleMasterAdminInstructionAsync, getChangeBundleMasterAdminInstructionDataCodec, getChangeBundleMasterAdminInstructionDataDecoder, getChangeBundleMasterAdminInstructionDataEncoder, getChangeManagerDiscriminatorBytes, getChangeManagerInstruction, getChangeManagerInstructionDataCodec, getChangeManagerInstructionDataDecoder, getChangeManagerInstructionDataEncoder, getClearUserFeeOverrideDiscriminatorBytes, getClearUserFeeOverrideInstruction, getClearUserFeeOverrideInstructionAsync, getClearUserFeeOverrideInstructionDataCodec, getClearUserFeeOverrideInstructionDataDecoder, getClearUserFeeOverrideInstructionDataEncoder, getClearUserWithdrawalTimingOverrideDiscriminatorBytes, getClearUserWithdrawalTimingOverrideInstruction, getClearUserWithdrawalTimingOverrideInstructionAsync, getClearUserWithdrawalTimingOverrideInstructionDataCodec, getClearUserWithdrawalTimingOverrideInstructionDataDecoder, getClearUserWithdrawalTimingOverrideInstructionDataEncoder, getCloseUserBundleAccountDiscriminatorBytes, getCloseUserBundleAccountInstruction, getCloseUserBundleAccountInstructionAsync, getCloseUserBundleAccountInstructionDataCodec, getCloseUserBundleAccountInstructionDataDecoder, getCloseUserBundleAccountInstructionDataEncoder, getDefaultBundleProgramIdByCluster, getDistributeToReceiversDiscriminatorBytes, getDistributeToReceiversInstruction, getDistributeToReceiversInstructionAsync, getDistributeToReceiversInstructionDataCodec, getDistributeToReceiversInstructionDataDecoder, getDistributeToReceiversInstructionDataEncoder, getDriftProgramId, getEnableStrategyDiscriminatorBytes, getEnableStrategyInstruction, getEnableStrategyInstructionAsync, getEnableStrategyInstructionDataCodec, getEnableStrategyInstructionDataDecoder, getEnableStrategyInstructionDataEncoder, getEndDistributionDiscriminatorBytes, getEndDistributionInstruction, getEndDistributionInstructionAsync, getEndDistributionInstructionDataCodec, getEndDistributionInstructionDataDecoder, getEndDistributionInstructionDataEncoder, getInitializeBundleDepositorDiscriminatorBytes, getInitializeBundleDepositorInstruction, getInitializeBundleDepositorInstructionAsync, getInitializeBundleDepositorInstructionDataCodec, getInitializeBundleDepositorInstructionDataDecoder, getInitializeBundleDepositorInstructionDataEncoder, getInitializeBundleDiscriminatorBytes, getInitializeBundleInstruction, getInitializeBundleInstructionAsync, getInitializeBundleInstructionDataCodec, getInitializeBundleInstructionDataDecoder, getInitializeBundleInstructionDataEncoder, getInitializeBundleMasterAccountDiscriminatorBytes, getInitializeBundleMasterAccountInstruction, getInitializeBundleMasterAccountInstructionAsync, getInitializeBundleMasterAccountInstructionDataCodec, getInitializeBundleMasterAccountInstructionDataDecoder, getInitializeBundleMasterAccountInstructionDataEncoder, getInitializePermissionedBundleDepositorDiscriminatorBytes, getInitializePermissionedBundleDepositorInstruction, getInitializePermissionedBundleDepositorInstructionAsync, getInitializePermissionedBundleDepositorInstructionDataCodec, getInitializePermissionedBundleDepositorInstructionDataDecoder, getInitializePermissionedBundleDepositorInstructionDataEncoder, getManagerWithdrawDiscriminatorBytes, getManagerWithdrawInstruction, getManagerWithdrawInstructionAsync, getManagerWithdrawInstructionDataCodec, getManagerWithdrawInstructionDataDecoder, getManagerWithdrawInstructionDataEncoder, getManagerWithdrawWithSplitDiscriminatorBytes, getManagerWithdrawWithSplitInstruction, getManagerWithdrawWithSplitInstructionAsync, getManagerWithdrawWithSplitInstructionDataCodec, getManagerWithdrawWithSplitInstructionDataDecoder, getManagerWithdrawWithSplitInstructionDataEncoder, getNetPendingTransactionsDiscriminatorBytes, getNetPendingTransactionsInstruction, getNetPendingTransactionsInstructionAsync, getNetPendingTransactionsInstructionDataCodec, getNetPendingTransactionsInstructionDataDecoder, getNetPendingTransactionsInstructionDataEncoder, getNtbundleErrorMessage, getOracleDataCodec, getOracleDataDecoder, getOracleDataDiscriminatorBytes, getOracleDataEncoder, getOracleDataSize, getPauseDepositsWithdrawalsDiscriminatorBytes, getPauseDepositsWithdrawalsInstruction, getPauseDepositsWithdrawalsInstructionAsync, getPauseDepositsWithdrawalsInstructionDataCodec, getPauseDepositsWithdrawalsInstructionDataDecoder, getPauseDepositsWithdrawalsInstructionDataEncoder, getPerformRefillDiscriminatorBytes, getPerformRefillInstruction, getPerformRefillInstructionAsync, getPerformRefillInstructionDataCodec, getPerformRefillInstructionDataDecoder, getPerformRefillInstructionDataEncoder, getPointsVaults, getProcessDepositDiscriminatorBytes, getProcessDepositInstruction, getProcessDepositInstructionAsync, getProcessDepositInstructionDataCodec, getProcessDepositInstructionDataDecoder, getProcessDepositInstructionDataEncoder, getProcessReferrerWithdrawalDiscriminatorBytes, getProcessReferrerWithdrawalInstruction, getProcessReferrerWithdrawalInstructionAsync, getProcessReferrerWithdrawalInstructionDataCodec, getProcessReferrerWithdrawalInstructionDataDecoder, getProcessReferrerWithdrawalInstructionDataEncoder, getProcessSwitchDiscriminatorBytes, getProcessSwitchInstruction, getProcessSwitchInstructionAsync, getProcessSwitchInstructionDataCodec, getProcessSwitchInstructionDataDecoder, getProcessSwitchInstructionDataEncoder, getProcessWithdrawalDiscriminatorBytes, getProcessWithdrawalInstruction, getProcessWithdrawalInstructionAsync, getProcessWithdrawalInstructionDataCodec, getProcessWithdrawalInstructionDataDecoder, getProcessWithdrawalInstructionDataEncoder, getReferralTierCodec, getReferralTierDecoder, getReferralTierEncoder, getReferrerAccountCodec, getReferrerAccountDecoder, getReferrerAccountDiscriminatorBytes, getReferrerAccountEncoder, getReferrerAccountSize, getReferrerRequestWithdrawDiscriminatorBytes, getReferrerRequestWithdrawInstruction, getReferrerRequestWithdrawInstructionAsync, getReferrerRequestWithdrawInstructionDataCodec, getReferrerRequestWithdrawInstructionDataDecoder, getReferrerRequestWithdrawInstructionDataEncoder, getRefundDepositDiscriminatorBytes, getRefundDepositInstruction, getRefundDepositInstructionAsync, getRefundDepositInstructionDataCodec, getRefundDepositInstructionDataDecoder, getRefundDepositInstructionDataEncoder, getRegisterReferrerDiscriminatorBytes, getRegisterReferrerInstruction, getRegisterReferrerInstructionAsync, getRegisterReferrerInstructionDataCodec, getRegisterReferrerInstructionDataDecoder, getRegisterReferrerInstructionDataEncoder, getRemoveStrategyDiscriminatorBytes, getRemoveStrategyInstruction, getRemoveStrategyInstructionAsync, getRemoveStrategyInstructionDataCodec, getRemoveStrategyInstructionDataDecoder, getRemoveStrategyInstructionDataEncoder, getRequestBundleSwitchDiscriminatorBytes, getRequestBundleSwitchInstruction, getRequestBundleSwitchInstructionAsync, getRequestBundleSwitchInstructionDataCodec, getRequestBundleSwitchInstructionDataDecoder, getRequestBundleSwitchInstructionDataEncoder, getRequestDepositDiscriminatorBytes, getRequestDepositInstruction, getRequestDepositInstructionAsync, getRequestDepositInstructionDataCodec, getRequestDepositInstructionDataDecoder, getRequestDepositInstructionDataEncoder, getRequestWithdrawalDiscriminatorBytes, getRequestWithdrawalInstruction, getRequestWithdrawalInstructionAsync, getRequestWithdrawalInstructionDataCodec, getRequestWithdrawalInstructionDataDecoder, getRequestWithdrawalInstructionDataEncoder, getSetBundleCreatorDiscriminatorBytes, getSetBundleCreatorInstruction, getSetBundleCreatorInstructionAsync, getSetBundleCreatorInstructionDataCodec, getSetBundleCreatorInstructionDataDecoder, getSetBundleCreatorInstructionDataEncoder, getSetDelaysDiscriminatorBytes, getSetDelaysInstruction, getSetDelaysInstructionDataCodec, getSetDelaysInstructionDataDecoder, getSetDelaysInstructionDataEncoder, getSetFeesDiscriminatorBytes, getSetFeesInstruction, getSetFeesInstructionDataCodec, getSetFeesInstructionDataDecoder, getSetFeesInstructionDataEncoder, getSetKeeperDiscriminatorBytes, getSetKeeperInstruction, getSetKeeperInstructionDataCodec, getSetKeeperInstructionDataDecoder, getSetKeeperInstructionDataEncoder, getSetMaxDepositAmountDiscriminatorBytes, getSetMaxDepositAmountInstruction, getSetMaxDepositAmountInstructionDataCodec, getSetMaxDepositAmountInstructionDataDecoder, getSetMaxDepositAmountInstructionDataEncoder, getSetMinDepositAmountDiscriminatorBytes, getSetMinDepositAmountInstruction, getSetMinDepositAmountInstructionDataCodec, getSetMinDepositAmountInstructionDataDecoder, getSetMinDepositAmountInstructionDataEncoder, getSetOracleBufferDiscriminatorBytes, getSetOracleBufferInstruction, getSetOracleBufferInstructionDataCodec, getSetOracleBufferInstructionDataDecoder, getSetOracleBufferInstructionDataEncoder, getSetOracleMaxAgeDiscriminatorBytes, getSetOracleMaxAgeInstruction, getSetOracleMaxAgeInstructionDataCodec, getSetOracleMaxAgeInstructionDataDecoder, getSetOracleMaxAgeInstructionDataEncoder, getSetOracleUpdateTimeLimitDiscriminatorBytes, getSetOracleUpdateTimeLimitInstruction, getSetOracleUpdateTimeLimitInstructionDataCodec, getSetOracleUpdateTimeLimitInstructionDataDecoder, getSetOracleUpdateTimeLimitInstructionDataEncoder, getSetReferralTierConfigDiscriminatorBytes, getSetReferralTierConfigInstruction, getSetReferralTierConfigInstructionDataCodec, getSetReferralTierConfigInstructionDataDecoder, getSetReferralTierConfigInstructionDataEncoder, getSetReferrerActiveDiscriminatorBytes, getSetReferrerActiveInstruction, getSetReferrerActiveInstructionDataCodec, getSetReferrerActiveInstructionDataDecoder, getSetReferrerActiveInstructionDataEncoder, getSetReferrerConfigDiscriminatorBytes, getSetReferrerConfigInstruction, getSetReferrerConfigInstructionDataCodec, getSetReferrerConfigInstructionDataDecoder, getSetReferrerConfigInstructionDataEncoder, getSetReferrerRateOverrideDiscriminatorBytes, getSetReferrerRateOverrideInstruction, getSetReferrerRateOverrideInstructionDataCodec, getSetReferrerRateOverrideInstructionDataDecoder, getSetReferrerRateOverrideInstructionDataEncoder, getSetUserFeeOverrideDiscriminatorBytes, getSetUserFeeOverrideInstruction, getSetUserFeeOverrideInstructionAsync, getSetUserFeeOverrideInstructionDataCodec, getSetUserFeeOverrideInstructionDataDecoder, getSetUserFeeOverrideInstructionDataEncoder, getSetUserReferrerDiscriminatorBytes, getSetUserReferrerInstruction, getSetUserReferrerInstructionAsync, getSetUserReferrerInstructionDataCodec, getSetUserReferrerInstructionDataDecoder, getSetUserReferrerInstructionDataEncoder, getSetUserWithdrawalTimingOverrideDiscriminatorBytes, getSetUserWithdrawalTimingOverrideInstruction, getSetUserWithdrawalTimingOverrideInstructionAsync, getSetUserWithdrawalTimingOverrideInstructionDataCodec, getSetUserWithdrawalTimingOverrideInstructionDataDecoder, getSetUserWithdrawalTimingOverrideInstructionDataEncoder, getSetWithdrawalRedemptionScheduleDiscriminatorBytes, getSetWithdrawalRedemptionScheduleInstruction, getSetWithdrawalRedemptionScheduleInstructionDataCodec, getSetWithdrawalRedemptionScheduleInstructionDataDecoder, getSetWithdrawalRedemptionScheduleInstructionDataEncoder, getSolanaTokenDecimals, getSolanaTokenMint, getStartDistributionDiscriminatorBytes, getStartDistributionInstruction, getStartDistributionInstructionAsync, getStartDistributionInstructionDataCodec, getStartDistributionInstructionDataDecoder, getStartDistributionInstructionDataEncoder, getStrategyCodec, getStrategyDecoder, getStrategyDiscriminatorBytes, getStrategyEncoder, getStrategySize, getUpdateAllocationsDiscriminatorBytes, getUpdateAllocationsInstruction, getUpdateAllocationsInstructionAsync, getUpdateAllocationsInstructionDataCodec, getUpdateAllocationsInstructionDataDecoder, getUpdateAllocationsInstructionDataEncoder, getUpdateOracleDiscriminatorBytes, getUpdateOracleInstruction, getUpdateOracleInstructionAsync, getUpdateOracleInstructionDataCodec, getUpdateOracleInstructionDataDecoder, getUpdateOracleInstructionDataEncoder, getUserBundleAccountCodec, getUserBundleAccountDecoder, getUserBundleAccountDiscriminatorBytes, getUserBundleAccountEncoder, getUserBundleAccountSize, getVaultByAddress, getVaultById, getVaultRegistry, humanFloatToAmountRaw, identifyNtbundleAccount, identifyNtbundleInstruction, isAllowlistedBundleProgramId, isNtbundleError, isValidVaultAddress, ntbundleProgram, parseAddStrategyInstruction, parseAmountRaw, parseApplyFeesToUserInstruction, parseChangeBundleMasterAdminInstruction, parseChangeManagerInstruction, parseClearUserFeeOverrideInstruction, parseClearUserWithdrawalTimingOverrideInstruction, parseCloseUserBundleAccountInstruction, parseDistributeToReceiversInstruction, parseEnableStrategyInstruction, parseEndDistributionInstruction, parseInitializeBundleDepositorInstruction, parseInitializeBundleInstruction, parseInitializeBundleMasterAccountInstruction, parseInitializePermissionedBundleDepositorInstruction, parseManagerWithdrawInstruction, parseManagerWithdrawWithSplitInstruction, parseNetPendingTransactionsInstruction, parseNtbundleInstruction, parsePauseDepositsWithdrawalsInstruction, parsePerformRefillInstruction, parseProcessDepositInstruction, parseProcessReferrerWithdrawalInstruction, parseProcessSwitchInstruction, parseProcessWithdrawalInstruction, parseReferrerRequestWithdrawInstruction, parseRefundDepositInstruction, parseRegisterReferrerInstruction, parseRemoveStrategyInstruction, parseRequestBundleSwitchInstruction, parseRequestDepositInstruction, parseRequestWithdrawalInstruction, parseSetBundleCreatorInstruction, parseSetDelaysInstruction, parseSetFeesInstruction, parseSetKeeperInstruction, parseSetMaxDepositAmountInstruction, parseSetMinDepositAmountInstruction, parseSetOracleBufferInstruction, parseSetOracleMaxAgeInstruction, parseSetOracleUpdateTimeLimitInstruction, parseSetReferralTierConfigInstruction, parseSetReferrerActiveInstruction, parseSetReferrerConfigInstruction, parseSetReferrerRateOverrideInstruction, parseSetUserFeeOverrideInstruction, parseSetUserReferrerInstruction, parseSetUserWithdrawalTimingOverrideInstruction, parseSetWithdrawalRedemptionScheduleInstruction, parseStartDistributionInstruction, parseUpdateAllocationsInstruction, parseUpdateOracleInstruction, resolveBundleReferralRates, resolveEffectiveFees, resolveEffectiveReferralRates, sharePriceRaw, toVaultConfig, toVaultRegistry, tokens, totalEquityRaw, vaults, vaultsDevnet };
|
package/dist/index.mjs
CHANGED
|
@@ -46,6 +46,8 @@ let DevnetVaultId = /* @__PURE__ */ function(DevnetVaultId$1) {
|
|
|
46
46
|
DevnetVaultId$1[DevnetVaultId$1["bundle_8_100000008"] = 100000008] = "bundle_8_100000008";
|
|
47
47
|
/** bundle-9 */
|
|
48
48
|
DevnetVaultId$1[DevnetVaultId$1["bundle_9_100000009"] = 100000009] = "bundle_9_100000009";
|
|
49
|
+
/** Meridian Liquidity Provider(NT) */
|
|
50
|
+
DevnetVaultId$1[DevnetVaultId$1["meridian_liquidity_provider_nt_100000010"] = 100000010] = "meridian_liquidity_provider_nt_100000010";
|
|
49
51
|
return DevnetVaultId$1;
|
|
50
52
|
}({});
|
|
51
53
|
|
|
@@ -56,12 +58,14 @@ let DevnetVaultId = /* @__PURE__ */ function(DevnetVaultId$1) {
|
|
|
56
58
|
* Auto-generated from the vault registry JSON.
|
|
57
59
|
*/
|
|
58
60
|
let VaultId = /* @__PURE__ */ function(VaultId$1) {
|
|
61
|
+
/** SPRMCY-USDC-Bundle */
|
|
62
|
+
VaultId$1[VaultId$1["sprmcy_usdc_bundle_84"] = 84] = "sprmcy_usdc_bundle_84";
|
|
59
63
|
/** CTA-C-USDC-Bundle */
|
|
60
64
|
VaultId$1[VaultId$1["cta_c_usdc_bundle_83"] = 83] = "cta_c_usdc_bundle_83";
|
|
61
65
|
/** Nexus-USDC-Bundle */
|
|
62
66
|
VaultId$1[VaultId$1["nexus_usdc_bundle_82"] = 82] = "nexus_usdc_bundle_82";
|
|
63
|
-
/**
|
|
64
|
-
VaultId$1[VaultId$1["
|
|
67
|
+
/** Meridian Liquidity Provider */
|
|
68
|
+
VaultId$1[VaultId$1["meridian_liquidity_provider_81"] = 81] = "meridian_liquidity_provider_81";
|
|
65
69
|
/** Options-MM-Z */
|
|
66
70
|
VaultId$1[VaultId$1["options_mm_z_80"] = 80] = "options_mm_z_80";
|
|
67
71
|
/** Thirdeye-Flagship-USDC-Bundle */
|
|
@@ -309,12 +313,35 @@ var vaults_devnet_default = [
|
|
|
309
313
|
"depositToken": "USDC",
|
|
310
314
|
"pointsMultiplier": 1,
|
|
311
315
|
"pointsEnabled": true
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"vaultId": 100000010,
|
|
319
|
+
"name": "Meridian Liquidity Provider(NT)",
|
|
320
|
+
"type": "AccountableNav",
|
|
321
|
+
"category": "Private Credit",
|
|
322
|
+
"chain": "MonadTestnet",
|
|
323
|
+
"vaultAddress": "0x22767B5c9C5472A2784e31Acb95dF599338662d9",
|
|
324
|
+
"strategyAddress": "0xD327a1584d34Bc7381C16D056B6951fC7A9587d7",
|
|
325
|
+
"accountableLoanId": 609080863,
|
|
326
|
+
"depositToken": "AUSD",
|
|
327
|
+
"pointsMultiplier": 1,
|
|
328
|
+
"pointsEnabled": false
|
|
312
329
|
}
|
|
313
330
|
];
|
|
314
331
|
|
|
315
332
|
//#endregion
|
|
316
333
|
//#region src/registry/vaults.json
|
|
317
334
|
var vaults_default = [
|
|
335
|
+
{
|
|
336
|
+
"vaultId": 84,
|
|
337
|
+
"name": "SPRMCY-USDC-Bundle",
|
|
338
|
+
"type": "Bundle",
|
|
339
|
+
"category": "Market Neutral",
|
|
340
|
+
"vaultAddress": "7epzfBXkMkLFdBXdmicm6GWiyjFvDxNGduLGyYokLkws",
|
|
341
|
+
"depositToken": "USDC",
|
|
342
|
+
"pointsMultiplier": 1,
|
|
343
|
+
"pointsEnabled": true
|
|
344
|
+
},
|
|
318
345
|
{
|
|
319
346
|
"vaultId": 83,
|
|
320
347
|
"name": "CTA-C-USDC-Bundle",
|
|
@@ -337,10 +364,13 @@ var vaults_default = [
|
|
|
337
364
|
},
|
|
338
365
|
{
|
|
339
366
|
"vaultId": 81,
|
|
340
|
-
"name": "
|
|
341
|
-
"type": "
|
|
342
|
-
"category": "
|
|
343
|
-
"
|
|
367
|
+
"name": "Meridian Liquidity Provider",
|
|
368
|
+
"type": "AccountableNav",
|
|
369
|
+
"category": "Private Credit",
|
|
370
|
+
"chain": "Robinhood",
|
|
371
|
+
"vaultAddress": "0x24b84023c8e4Da635be228C380C09bfE5271BF9d",
|
|
372
|
+
"strategyAddress": "0xF62c201e9A28F6A57C4262004dd2e8B8e95bB1eC",
|
|
373
|
+
"accountableLoanId": 607290214,
|
|
344
374
|
"depositToken": "USDE",
|
|
345
375
|
"pointsMultiplier": 1,
|
|
346
376
|
"pointsEnabled": false
|
|
@@ -1178,10 +1208,16 @@ let SupportedChain = /* @__PURE__ */ function(SupportedChain$1) {
|
|
|
1178
1208
|
SupportedChain$1["Solana"] = "Solana";
|
|
1179
1209
|
SupportedChain$1["Hyperliquid"] = "Hyperliquid";
|
|
1180
1210
|
SupportedChain$1["Robinhood"] = "Robinhood";
|
|
1211
|
+
SupportedChain$1["MonadTestnet"] = "MonadTestnet";
|
|
1181
1212
|
return SupportedChain$1;
|
|
1182
1213
|
}({});
|
|
1183
1214
|
/** Robinhood Chain (Arbitrum Orbit L2). Gas is paid in ETH. */
|
|
1184
1215
|
const ROBINHOOD_CHAIN_ID = 4663;
|
|
1216
|
+
/**
|
|
1217
|
+
* Monad Testnet. Hosts the Accountable staging vault.
|
|
1218
|
+
* Gas is believed to be paid in MON -- not yet confirmed against the chain.
|
|
1219
|
+
*/
|
|
1220
|
+
const MONAD_TESTNET_CHAIN_ID = 10143;
|
|
1185
1221
|
let SupportedToken = /* @__PURE__ */ function(SupportedToken$1) {
|
|
1186
1222
|
SupportedToken$1["USDC"] = "USDC";
|
|
1187
1223
|
SupportedToken$1["USDT"] = "USDT";
|
|
@@ -1190,6 +1226,7 @@ let SupportedToken = /* @__PURE__ */ function(SupportedToken$1) {
|
|
|
1190
1226
|
SupportedToken$1["WBTC"] = "WBTC";
|
|
1191
1227
|
SupportedToken$1["WETH"] = "WETH";
|
|
1192
1228
|
SupportedToken$1["JLP"] = "JLP";
|
|
1229
|
+
SupportedToken$1["AUSD"] = "AUSD";
|
|
1193
1230
|
return SupportedToken$1;
|
|
1194
1231
|
}({});
|
|
1195
1232
|
const tokens = {
|
|
@@ -1202,7 +1239,8 @@ const tokens = {
|
|
|
1202
1239
|
decimals: 6
|
|
1203
1240
|
},
|
|
1204
1241
|
[SupportedChain.Hyperliquid]: null,
|
|
1205
|
-
[SupportedChain.Robinhood]: null
|
|
1242
|
+
[SupportedChain.Robinhood]: null,
|
|
1243
|
+
[SupportedChain.MonadTestnet]: null
|
|
1206
1244
|
}
|
|
1207
1245
|
},
|
|
1208
1246
|
[SupportedToken.USDT]: {
|
|
@@ -1214,7 +1252,8 @@ const tokens = {
|
|
|
1214
1252
|
decimals: 6
|
|
1215
1253
|
},
|
|
1216
1254
|
[SupportedChain.Hyperliquid]: null,
|
|
1217
|
-
[SupportedChain.Robinhood]: null
|
|
1255
|
+
[SupportedChain.Robinhood]: null,
|
|
1256
|
+
[SupportedChain.MonadTestnet]: null
|
|
1218
1257
|
}
|
|
1219
1258
|
},
|
|
1220
1259
|
[SupportedToken.USDE]: {
|
|
@@ -1229,7 +1268,8 @@ const tokens = {
|
|
|
1229
1268
|
[SupportedChain.Robinhood]: {
|
|
1230
1269
|
address: "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34",
|
|
1231
1270
|
decimals: 18
|
|
1232
|
-
}
|
|
1271
|
+
},
|
|
1272
|
+
[SupportedChain.MonadTestnet]: null
|
|
1233
1273
|
}
|
|
1234
1274
|
},
|
|
1235
1275
|
[SupportedToken.SOL]: {
|
|
@@ -1241,7 +1281,8 @@ const tokens = {
|
|
|
1241
1281
|
decimals: 9
|
|
1242
1282
|
},
|
|
1243
1283
|
[SupportedChain.Hyperliquid]: null,
|
|
1244
|
-
[SupportedChain.Robinhood]: null
|
|
1284
|
+
[SupportedChain.Robinhood]: null,
|
|
1285
|
+
[SupportedChain.MonadTestnet]: null
|
|
1245
1286
|
}
|
|
1246
1287
|
},
|
|
1247
1288
|
[SupportedToken.WBTC]: {
|
|
@@ -1253,7 +1294,8 @@ const tokens = {
|
|
|
1253
1294
|
decimals: 8
|
|
1254
1295
|
},
|
|
1255
1296
|
[SupportedChain.Hyperliquid]: null,
|
|
1256
|
-
[SupportedChain.Robinhood]: null
|
|
1297
|
+
[SupportedChain.Robinhood]: null,
|
|
1298
|
+
[SupportedChain.MonadTestnet]: null
|
|
1257
1299
|
}
|
|
1258
1300
|
},
|
|
1259
1301
|
[SupportedToken.WETH]: {
|
|
@@ -1265,7 +1307,8 @@ const tokens = {
|
|
|
1265
1307
|
decimals: 8
|
|
1266
1308
|
},
|
|
1267
1309
|
[SupportedChain.Hyperliquid]: null,
|
|
1268
|
-
[SupportedChain.Robinhood]: null
|
|
1310
|
+
[SupportedChain.Robinhood]: null,
|
|
1311
|
+
[SupportedChain.MonadTestnet]: null
|
|
1269
1312
|
}
|
|
1270
1313
|
},
|
|
1271
1314
|
[SupportedToken.JLP]: {
|
|
@@ -1277,7 +1320,21 @@ const tokens = {
|
|
|
1277
1320
|
decimals: 6
|
|
1278
1321
|
},
|
|
1279
1322
|
[SupportedChain.Hyperliquid]: null,
|
|
1280
|
-
[SupportedChain.Robinhood]: null
|
|
1323
|
+
[SupportedChain.Robinhood]: null,
|
|
1324
|
+
[SupportedChain.MonadTestnet]: null
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
[SupportedToken.AUSD]: {
|
|
1328
|
+
name: "Accountable USD",
|
|
1329
|
+
symbol: "AUSD",
|
|
1330
|
+
onChain: {
|
|
1331
|
+
[SupportedChain.Solana]: null,
|
|
1332
|
+
[SupportedChain.Hyperliquid]: null,
|
|
1333
|
+
[SupportedChain.Robinhood]: null,
|
|
1334
|
+
[SupportedChain.MonadTestnet]: {
|
|
1335
|
+
address: "0x333a12e2B519DA16EBE75012d54574C16ef4463f",
|
|
1336
|
+
decimals: 6
|
|
1337
|
+
}
|
|
1281
1338
|
}
|
|
1282
1339
|
}
|
|
1283
1340
|
};
|
|
@@ -1326,6 +1383,7 @@ let VaultCategory = /* @__PURE__ */ function(VaultCategory$1) {
|
|
|
1326
1383
|
VaultCategory$1["fundOfFund"] = "Master Vault";
|
|
1327
1384
|
return VaultCategory$1;
|
|
1328
1385
|
}({});
|
|
1386
|
+
const EVM_ADDRESS_REGEX = /^0x[0-9a-f]{40}$/i;
|
|
1329
1387
|
/** Zod schema for validating registry entries */
|
|
1330
1388
|
const VaultRegistryEntrySchema = z.object({
|
|
1331
1389
|
vaultId: z.number().int().min(0),
|
|
@@ -1333,14 +1391,15 @@ const VaultRegistryEntrySchema = z.object({
|
|
|
1333
1391
|
subname: z.string().max(100).optional(),
|
|
1334
1392
|
type: z.nativeEnum(VaultType),
|
|
1335
1393
|
category: z.nativeEnum(VaultCategory),
|
|
1336
|
-
|
|
1394
|
+
chain: z.nativeEnum(SupportedChain).optional(),
|
|
1395
|
+
vaultAddress: z.string().refine((value) => value.startsWith("0x") ? EVM_ADDRESS_REGEX.test(value) : value.length >= 32 && value.length <= 44, "vaultAddress must be a base58 Solana address (32-44 chars) or a 0x-prefixed EVM address"),
|
|
1337
1396
|
depositToken: z.nativeEnum(SupportedToken),
|
|
1338
1397
|
driftProgramId: z.string().min(32).max(44).optional(),
|
|
1339
1398
|
bundleProgramId: z.string().min(32).max(44).optional(),
|
|
1340
1399
|
pointsMultiplier: z.number().min(0).optional(),
|
|
1341
1400
|
pointsEnabled: z.boolean().optional(),
|
|
1342
1401
|
accountableLoanId: z.number().int().positive().optional(),
|
|
1343
|
-
strategyAddress: z.string().regex(
|
|
1402
|
+
strategyAddress: z.string().regex(EVM_ADDRESS_REGEX).optional()
|
|
1344
1403
|
});
|
|
1345
1404
|
/** Schema for validating array of registry entries */
|
|
1346
1405
|
const VaultRegistryArraySchema = z.array(VaultRegistryEntrySchema).superRefine((vaults$1, ctx) => {
|
|
@@ -1378,10 +1437,12 @@ function getDriftProgramId(vault) {
|
|
|
1378
1437
|
* Transform a registry entry to VaultConfig with program IDs
|
|
1379
1438
|
* - Drift vaults get driftProgramId
|
|
1380
1439
|
* - Bundle vaults get bundleProgramId (registry value or cluster default via {@link getBundleProgramId})
|
|
1440
|
+
* - `chain` defaults to Solana, so consumers never branch on it being absent
|
|
1381
1441
|
*/
|
|
1382
1442
|
function toVaultConfig(entry, cluster = "mainnet") {
|
|
1383
1443
|
return {
|
|
1384
1444
|
...entry,
|
|
1445
|
+
chain: entry.chain ?? SupportedChain.Solana,
|
|
1385
1446
|
driftProgramId: getDriftProgramId(entry),
|
|
1386
1447
|
bundleProgramId: getBundleProgramId(entry, cluster)
|
|
1387
1448
|
};
|
|
@@ -1405,11 +1466,19 @@ const vaultsDevnet = vaultsDevnetRegistry;
|
|
|
1405
1466
|
function getVaultRegistry(cluster) {
|
|
1406
1467
|
return cluster === "devnet" ? vaultsDevnetRegistry : vaultsMainnetRegistry;
|
|
1407
1468
|
}
|
|
1469
|
+
/**
|
|
1470
|
+
* Compare two vault addresses. EVM addresses are compared case-insensitively
|
|
1471
|
+
* (the registry stores them checksummed), base58 Solana addresses exactly
|
|
1472
|
+
* (case is significant there).
|
|
1473
|
+
*/
|
|
1474
|
+
function isSameVaultAddress(a, b) {
|
|
1475
|
+
return a.startsWith("0x") || b.startsWith("0x") ? a.toLowerCase() === b.toLowerCase() : a === b;
|
|
1476
|
+
}
|
|
1408
1477
|
function isValidVaultAddress(address$1, cluster = "mainnet") {
|
|
1409
|
-
return
|
|
1478
|
+
return getVaultByAddress(address$1, cluster) !== void 0;
|
|
1410
1479
|
}
|
|
1411
1480
|
function getVaultByAddress(address$1, cluster = "mainnet") {
|
|
1412
|
-
return Object.values(getVaultRegistry(cluster)).find((v) => v.vaultAddress
|
|
1481
|
+
return Object.values(getVaultRegistry(cluster)).find((v) => isSameVaultAddress(v.vaultAddress, address$1));
|
|
1413
1482
|
}
|
|
1414
1483
|
function getVaultById(vaultId, cluster = "mainnet") {
|
|
1415
1484
|
return getVaultRegistry(cluster)[vaultId];
|
|
@@ -2398,4 +2467,4 @@ async function buildReferrerWithdrawRequestTx(rpc, params) {
|
|
|
2398
2467
|
}
|
|
2399
2468
|
|
|
2400
2469
|
//#endregion
|
|
2401
|
-
export { ADD_STRATEGY_DISCRIMINATOR, ALLOWLISTED_BUNDLE_PROGRAM_IDS_BY_CLUSTER, APPLY_FEES_TO_USER_DISCRIMINATOR, ASSOCIATED_TOKEN_PROGRAM_ADDRESS, BPS_DENOMINATOR, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, BUNDLE_DISCRIMINATOR, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, BUNDLE_PROGRAM_ID_V2_MAINNET, BUNDLE_TEMP_DATA_DISCRIMINATOR, BuilderDepositAmountTooLowError, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, CHANGE_MANAGER_DISCRIMINATOR, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, DEFAULT_BUNDLE_PROGRAM_ID_DEVNET, DEFAULT_BUNDLE_PROGRAM_ID_MAINNET, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, DevnetVaultId, ENABLE_STRATEGY_DISCRIMINATOR, END_DISTRIBUTION_DISCRIMINATOR, FEE_OVERRIDE_DEPOSIT, FEE_OVERRIDE_MANAGEMENT, FEE_OVERRIDE_PERFORMANCE, FEE_OVERRIDE_WITHDRAWAL, INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR, INITIALIZE_BUNDLE_DISCRIMINATOR, INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR, MANAGER_WITHDRAW_DISCRIMINATOR, MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR, MAX_DEPOSIT_FEE_BPS, MAX_REFERRAL_TIERS, NET_PENDING_TRANSACTIONS_DISCRIMINATOR, NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO, NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS, NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO, NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX, NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED, NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED, NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO, NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED, NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED, NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST, NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST, NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND, NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE, NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE, NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE, NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE, NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE, NTBUNDLE_ERROR__INSUFFICIENT_FUNDS, NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE, NTBUNDLE_ERROR__INVALID_ALLOCATIONS, NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS, NTBUNDLE_ERROR__INVALID_ASSET_PRECISION, NTBUNDLE_ERROR__INVALID_FEE_SPLIT, NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER, NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE, NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT, NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR, NTBUNDLE_ERROR__INVALID_RECEIVER, NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG, NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG, NTBUNDLE_ERROR__INVALID_TWAP_PERIOD, NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG, NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE, NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO, NTBUNDLE_ERROR__MANAGER_SHARES_ZERO, NTBUNDLE_ERROR__MATH_ERROR, NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET, NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST, NTBUNDLE_ERROR__NETTING_ALREADY_DONE, NTBUNDLE_ERROR__NETTING_NOT_DONE, NTBUNDLE_ERROR__NO_PENDING_SWITCH, NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS, NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL, NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__ORACLE_NOT_UPDATED, NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT, NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY, NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS, NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST, NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO, NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER, NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO, NTBUNDLE_ERROR__REFERRALS_DISABLED, NTBUNDLE_ERROR__REFERRAL_ALREADY_SET, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING, NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW, NTBUNDLE_ERROR__REFERRER_SHARES_ZERO, NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID, NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED, NTBUNDLE_ERROR__STRATEGY_DISABLED, NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE, NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE, NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS, NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT, NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR, NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION, NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY, NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED, NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET, NTBUNDLE_PROGRAM_ADDRESS, NtbundleAccount, NtbundleInstruction, ORACLE_DATA_DISCRIMINATOR, PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR, PERFORM_REFILL_DISCRIMINATOR, PROCESS_DEPOSIT_DISCRIMINATOR, PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR, PROCESS_SWITCH_DISCRIMINATOR, PROCESS_WITHDRAWAL_DISCRIMINATOR, REFERRAL_OVERRIDE_MFEE, REFERRAL_OVERRIDE_PFEE, REFERRER_ACCOUNT_DISCRIMINATOR, REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR, REFUND_DEPOSIT_DISCRIMINATOR, REGISTER_REFERRER_DISCRIMINATOR, REMOVE_STRATEGY_DISCRIMINATOR, REQUEST_BUNDLE_SWITCH_DISCRIMINATOR, REQUEST_DEPOSIT_DISCRIMINATOR, REQUEST_WITHDRAWAL_DISCRIMINATOR, ROBINHOOD_CHAIN_ID, SECONDS_IN_YEAR, SET_BUNDLE_CREATOR_DISCRIMINATOR, SET_DELAYS_DISCRIMINATOR, SET_FEES_DISCRIMINATOR, SET_KEEPER_DISCRIMINATOR, SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_ORACLE_BUFFER_DISCRIMINATOR, SET_ORACLE_MAX_AGE_DISCRIMINATOR, SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR, SET_REFERRAL_TIER_CONFIG_DISCRIMINATOR, SET_REFERRER_ACTIVE_DISCRIMINATOR, SET_REFERRER_CONFIG_DISCRIMINATOR, SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR, SET_USER_FEE_OVERRIDE_DISCRIMINATOR, SET_USER_REFERRER_DISCRIMINATOR, SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR, START_DISTRIBUTION_DISCRIMINATOR, STRATEGY_DISCRIMINATOR, SupportedChain, SupportedToken, TOKEN_PROGRAM_ADDRESS, U64_MAX, UPDATE_ALLOCATIONS_DISCRIMINATOR, UPDATE_ORACLE_DISCRIMINATOR, USER_BUNDLE_ACCOUNT_DISCRIMINATOR, VaultCategory, VaultId, VaultType, assertAllowlistedBundleProgramId, assertValidAmountRaw, buildAttributedDepositTx, buildBuilderRegistrationTx, buildDepositInstructions, buildEnsureAssociatedTokenAccountInstruction, buildReferrerWithdrawRequestTx, buildRequestSwitchInstructions, buildRequestWithdrawInstruction, calculateAssetsFromShares, calculateGrossDepositAmount, calculateOnChainPps, calculateReferrerTierProgress, calculateReferrerTierScheduleProgress, computeUserBundleBalance, computeWithdrawalShares, createAssociatedTokenAccountIdempotentInstruction, decodeBundle, decodeBundleCreatorAccount, decodeBundleMasterAccount, decodeBundleTempData, decodeOracleData, decodeReferrerAccount, decodeStrategy, decodeUserBundleAccount, deriveReferrerAccountForUser, estimatePendingUserFees, estimateWithdrawalAvailableTimestamp, estimateWithdrawalCooldownSeconds, fetchAllBundle, fetchAllBundleCreatorAccount, fetchAllBundleMasterAccount, fetchAllBundleTempData, fetchAllMaybeBundle, fetchAllMaybeBundleCreatorAccount, fetchAllMaybeBundleMasterAccount, fetchAllMaybeBundleTempData, fetchAllMaybeOracleData, fetchAllMaybeReferrerAccount, fetchAllMaybeStrategy, fetchAllMaybeUserBundleAccount, fetchAllOracleData, fetchAllReferrerAccount, fetchAllStrategy, fetchAllUserBundleAccount, fetchBundle, fetchBundleCreatorAccount, fetchBundleMasterAccount, fetchBundleTempData, fetchMaybeBundle, fetchMaybeBundleCreatorAccount, fetchMaybeBundleMasterAccount, fetchMaybeBundleTempData, fetchMaybeOracleData, fetchMaybeReferrerAccount, fetchMaybeStrategy, fetchMaybeUserBundleAccount, fetchOracleData, fetchReferrerAccount, fetchReferrerStatus, fetchStrategy, fetchUserBundleAccount, fetchUserBundleBalance, fetchUserBundleBalances, findAssociatedTokenPda, findBundleAccountPda, findBundleAssetAuthorityPda, findBundleCreatorAccountPda, findBundleMasterAccountPda, findBundleTempDataPda, findCloseUserBundleAccountUserBundleAccountPda, findOracleDataPda, findPendingBundleAssetAuthorityPda, findReferrerAccountPda, findReferrerUserBundleAccountPda, findRequestBundleSwitchUserBundleAccountPda, findSourceBundleAssetAuthorityPda, findSourceBundleTempDataPda, findSourceOracleDataPda, findSourceUserBundleAccountPda, findStrategyAccountPda, findTargetBundleTempDataPda, findTargetOracleDataPda, findTargetPendingBundleAssetAuthorityPda, findTargetUserBundleAccountPda, findUserBundleAccountPda, getAddStrategyDiscriminatorBytes, getAddStrategyInstruction, getAddStrategyInstructionAsync, getAddStrategyInstructionDataCodec, getAddStrategyInstructionDataDecoder, getAddStrategyInstructionDataEncoder, getApplyFeesToUserDiscriminatorBytes, getApplyFeesToUserInstruction, getApplyFeesToUserInstructionAsync, getApplyFeesToUserInstructionDataCodec, getApplyFeesToUserInstructionDataDecoder, getApplyFeesToUserInstructionDataEncoder, getBundleCodec, getBundleCreatorAccountCodec, getBundleCreatorAccountDecoder, getBundleCreatorAccountDiscriminatorBytes, getBundleCreatorAccountEncoder, getBundleCreatorAccountSize, getBundleDecoder, getBundleDiscriminatorBytes, getBundleEncoder, getBundleMasterAccountCodec, getBundleMasterAccountDecoder, getBundleMasterAccountDiscriminatorBytes, getBundleMasterAccountEncoder, getBundleMasterAccountSize, getBundleProgramId, getBundleTempDataCodec, getBundleTempDataDecoder, getBundleTempDataDiscriminatorBytes, getBundleTempDataEncoder, getBundleTempDataSize, getChangeBundleMasterAdminDiscriminatorBytes, getChangeBundleMasterAdminInstruction, getChangeBundleMasterAdminInstructionAsync, getChangeBundleMasterAdminInstructionDataCodec, getChangeBundleMasterAdminInstructionDataDecoder, getChangeBundleMasterAdminInstructionDataEncoder, getChangeManagerDiscriminatorBytes, getChangeManagerInstruction, getChangeManagerInstructionDataCodec, getChangeManagerInstructionDataDecoder, getChangeManagerInstructionDataEncoder, getClearUserFeeOverrideDiscriminatorBytes, getClearUserFeeOverrideInstruction, getClearUserFeeOverrideInstructionAsync, getClearUserFeeOverrideInstructionDataCodec, getClearUserFeeOverrideInstructionDataDecoder, getClearUserFeeOverrideInstructionDataEncoder, getClearUserWithdrawalTimingOverrideDiscriminatorBytes, getClearUserWithdrawalTimingOverrideInstruction, getClearUserWithdrawalTimingOverrideInstructionAsync, getClearUserWithdrawalTimingOverrideInstructionDataCodec, getClearUserWithdrawalTimingOverrideInstructionDataDecoder, getClearUserWithdrawalTimingOverrideInstructionDataEncoder, getCloseUserBundleAccountDiscriminatorBytes, getCloseUserBundleAccountInstruction, getCloseUserBundleAccountInstructionAsync, getCloseUserBundleAccountInstructionDataCodec, getCloseUserBundleAccountInstructionDataDecoder, getCloseUserBundleAccountInstructionDataEncoder, getDefaultBundleProgramIdByCluster, getDistributeToReceiversDiscriminatorBytes, getDistributeToReceiversInstruction, getDistributeToReceiversInstructionAsync, getDistributeToReceiversInstructionDataCodec, getDistributeToReceiversInstructionDataDecoder, getDistributeToReceiversInstructionDataEncoder, getDriftProgramId, getEnableStrategyDiscriminatorBytes, getEnableStrategyInstruction, getEnableStrategyInstructionAsync, getEnableStrategyInstructionDataCodec, getEnableStrategyInstructionDataDecoder, getEnableStrategyInstructionDataEncoder, getEndDistributionDiscriminatorBytes, getEndDistributionInstruction, getEndDistributionInstructionAsync, getEndDistributionInstructionDataCodec, getEndDistributionInstructionDataDecoder, getEndDistributionInstructionDataEncoder, getInitializeBundleDepositorDiscriminatorBytes, getInitializeBundleDepositorInstruction, getInitializeBundleDepositorInstructionAsync, getInitializeBundleDepositorInstructionDataCodec, getInitializeBundleDepositorInstructionDataDecoder, getInitializeBundleDepositorInstructionDataEncoder, getInitializeBundleDiscriminatorBytes, getInitializeBundleInstruction, getInitializeBundleInstructionAsync, getInitializeBundleInstructionDataCodec, getInitializeBundleInstructionDataDecoder, getInitializeBundleInstructionDataEncoder, getInitializeBundleMasterAccountDiscriminatorBytes, getInitializeBundleMasterAccountInstruction, getInitializeBundleMasterAccountInstructionAsync, getInitializeBundleMasterAccountInstructionDataCodec, getInitializeBundleMasterAccountInstructionDataDecoder, getInitializeBundleMasterAccountInstructionDataEncoder, getInitializePermissionedBundleDepositorDiscriminatorBytes, getInitializePermissionedBundleDepositorInstruction, getInitializePermissionedBundleDepositorInstructionAsync, getInitializePermissionedBundleDepositorInstructionDataCodec, getInitializePermissionedBundleDepositorInstructionDataDecoder, getInitializePermissionedBundleDepositorInstructionDataEncoder, getManagerWithdrawDiscriminatorBytes, getManagerWithdrawInstruction, getManagerWithdrawInstructionAsync, getManagerWithdrawInstructionDataCodec, getManagerWithdrawInstructionDataDecoder, getManagerWithdrawInstructionDataEncoder, getManagerWithdrawWithSplitDiscriminatorBytes, getManagerWithdrawWithSplitInstruction, getManagerWithdrawWithSplitInstructionAsync, getManagerWithdrawWithSplitInstructionDataCodec, getManagerWithdrawWithSplitInstructionDataDecoder, getManagerWithdrawWithSplitInstructionDataEncoder, getNetPendingTransactionsDiscriminatorBytes, getNetPendingTransactionsInstruction, getNetPendingTransactionsInstructionAsync, getNetPendingTransactionsInstructionDataCodec, getNetPendingTransactionsInstructionDataDecoder, getNetPendingTransactionsInstructionDataEncoder, getNtbundleErrorMessage, getOracleDataCodec, getOracleDataDecoder, getOracleDataDiscriminatorBytes, getOracleDataEncoder, getOracleDataSize, getPauseDepositsWithdrawalsDiscriminatorBytes, getPauseDepositsWithdrawalsInstruction, getPauseDepositsWithdrawalsInstructionAsync, getPauseDepositsWithdrawalsInstructionDataCodec, getPauseDepositsWithdrawalsInstructionDataDecoder, getPauseDepositsWithdrawalsInstructionDataEncoder, getPerformRefillDiscriminatorBytes, getPerformRefillInstruction, getPerformRefillInstructionAsync, getPerformRefillInstructionDataCodec, getPerformRefillInstructionDataDecoder, getPerformRefillInstructionDataEncoder, getPointsVaults, getProcessDepositDiscriminatorBytes, getProcessDepositInstruction, getProcessDepositInstructionAsync, getProcessDepositInstructionDataCodec, getProcessDepositInstructionDataDecoder, getProcessDepositInstructionDataEncoder, getProcessReferrerWithdrawalDiscriminatorBytes, getProcessReferrerWithdrawalInstruction, getProcessReferrerWithdrawalInstructionAsync, getProcessReferrerWithdrawalInstructionDataCodec, getProcessReferrerWithdrawalInstructionDataDecoder, getProcessReferrerWithdrawalInstructionDataEncoder, getProcessSwitchDiscriminatorBytes, getProcessSwitchInstruction, getProcessSwitchInstructionAsync, getProcessSwitchInstructionDataCodec, getProcessSwitchInstructionDataDecoder, getProcessSwitchInstructionDataEncoder, getProcessWithdrawalDiscriminatorBytes, getProcessWithdrawalInstruction, getProcessWithdrawalInstructionAsync, getProcessWithdrawalInstructionDataCodec, getProcessWithdrawalInstructionDataDecoder, getProcessWithdrawalInstructionDataEncoder, getReferralTierCodec, getReferralTierDecoder, getReferralTierEncoder, getReferrerAccountCodec, getReferrerAccountDecoder, getReferrerAccountDiscriminatorBytes, getReferrerAccountEncoder, getReferrerAccountSize, getReferrerRequestWithdrawDiscriminatorBytes, getReferrerRequestWithdrawInstruction, getReferrerRequestWithdrawInstructionAsync, getReferrerRequestWithdrawInstructionDataCodec, getReferrerRequestWithdrawInstructionDataDecoder, getReferrerRequestWithdrawInstructionDataEncoder, getRefundDepositDiscriminatorBytes, getRefundDepositInstruction, getRefundDepositInstructionAsync, getRefundDepositInstructionDataCodec, getRefundDepositInstructionDataDecoder, getRefundDepositInstructionDataEncoder, getRegisterReferrerDiscriminatorBytes, getRegisterReferrerInstruction, getRegisterReferrerInstructionAsync, getRegisterReferrerInstructionDataCodec, getRegisterReferrerInstructionDataDecoder, getRegisterReferrerInstructionDataEncoder, getRemoveStrategyDiscriminatorBytes, getRemoveStrategyInstruction, getRemoveStrategyInstructionAsync, getRemoveStrategyInstructionDataCodec, getRemoveStrategyInstructionDataDecoder, getRemoveStrategyInstructionDataEncoder, getRequestBundleSwitchDiscriminatorBytes, getRequestBundleSwitchInstruction, getRequestBundleSwitchInstructionAsync, getRequestBundleSwitchInstructionDataCodec, getRequestBundleSwitchInstructionDataDecoder, getRequestBundleSwitchInstructionDataEncoder, getRequestDepositDiscriminatorBytes, getRequestDepositInstruction, getRequestDepositInstructionAsync, getRequestDepositInstructionDataCodec, getRequestDepositInstructionDataDecoder, getRequestDepositInstructionDataEncoder, getRequestWithdrawalDiscriminatorBytes, getRequestWithdrawalInstruction, getRequestWithdrawalInstructionAsync, getRequestWithdrawalInstructionDataCodec, getRequestWithdrawalInstructionDataDecoder, getRequestWithdrawalInstructionDataEncoder, getSetBundleCreatorDiscriminatorBytes, getSetBundleCreatorInstruction, getSetBundleCreatorInstructionAsync, getSetBundleCreatorInstructionDataCodec, getSetBundleCreatorInstructionDataDecoder, getSetBundleCreatorInstructionDataEncoder, getSetDelaysDiscriminatorBytes, getSetDelaysInstruction, getSetDelaysInstructionDataCodec, getSetDelaysInstructionDataDecoder, getSetDelaysInstructionDataEncoder, getSetFeesDiscriminatorBytes, getSetFeesInstruction, getSetFeesInstructionDataCodec, getSetFeesInstructionDataDecoder, getSetFeesInstructionDataEncoder, getSetKeeperDiscriminatorBytes, getSetKeeperInstruction, getSetKeeperInstructionDataCodec, getSetKeeperInstructionDataDecoder, getSetKeeperInstructionDataEncoder, getSetMaxDepositAmountDiscriminatorBytes, getSetMaxDepositAmountInstruction, getSetMaxDepositAmountInstructionDataCodec, getSetMaxDepositAmountInstructionDataDecoder, getSetMaxDepositAmountInstructionDataEncoder, getSetMinDepositAmountDiscriminatorBytes, getSetMinDepositAmountInstruction, getSetMinDepositAmountInstructionDataCodec, getSetMinDepositAmountInstructionDataDecoder, getSetMinDepositAmountInstructionDataEncoder, getSetOracleBufferDiscriminatorBytes, getSetOracleBufferInstruction, getSetOracleBufferInstructionDataCodec, getSetOracleBufferInstructionDataDecoder, getSetOracleBufferInstructionDataEncoder, getSetOracleMaxAgeDiscriminatorBytes, getSetOracleMaxAgeInstruction, getSetOracleMaxAgeInstructionDataCodec, getSetOracleMaxAgeInstructionDataDecoder, getSetOracleMaxAgeInstructionDataEncoder, getSetOracleUpdateTimeLimitDiscriminatorBytes, getSetOracleUpdateTimeLimitInstruction, getSetOracleUpdateTimeLimitInstructionDataCodec, getSetOracleUpdateTimeLimitInstructionDataDecoder, getSetOracleUpdateTimeLimitInstructionDataEncoder, getSetReferralTierConfigDiscriminatorBytes, getSetReferralTierConfigInstruction, getSetReferralTierConfigInstructionDataCodec, getSetReferralTierConfigInstructionDataDecoder, getSetReferralTierConfigInstructionDataEncoder, getSetReferrerActiveDiscriminatorBytes, getSetReferrerActiveInstruction, getSetReferrerActiveInstructionDataCodec, getSetReferrerActiveInstructionDataDecoder, getSetReferrerActiveInstructionDataEncoder, getSetReferrerConfigDiscriminatorBytes, getSetReferrerConfigInstruction, getSetReferrerConfigInstructionDataCodec, getSetReferrerConfigInstructionDataDecoder, getSetReferrerConfigInstructionDataEncoder, getSetReferrerRateOverrideDiscriminatorBytes, getSetReferrerRateOverrideInstruction, getSetReferrerRateOverrideInstructionDataCodec, getSetReferrerRateOverrideInstructionDataDecoder, getSetReferrerRateOverrideInstructionDataEncoder, getSetUserFeeOverrideDiscriminatorBytes, getSetUserFeeOverrideInstruction, getSetUserFeeOverrideInstructionAsync, getSetUserFeeOverrideInstructionDataCodec, getSetUserFeeOverrideInstructionDataDecoder, getSetUserFeeOverrideInstructionDataEncoder, getSetUserReferrerDiscriminatorBytes, getSetUserReferrerInstruction, getSetUserReferrerInstructionAsync, getSetUserReferrerInstructionDataCodec, getSetUserReferrerInstructionDataDecoder, getSetUserReferrerInstructionDataEncoder, getSetUserWithdrawalTimingOverrideDiscriminatorBytes, getSetUserWithdrawalTimingOverrideInstruction, getSetUserWithdrawalTimingOverrideInstructionAsync, getSetUserWithdrawalTimingOverrideInstructionDataCodec, getSetUserWithdrawalTimingOverrideInstructionDataDecoder, getSetUserWithdrawalTimingOverrideInstructionDataEncoder, getSetWithdrawalRedemptionScheduleDiscriminatorBytes, getSetWithdrawalRedemptionScheduleInstruction, getSetWithdrawalRedemptionScheduleInstructionDataCodec, getSetWithdrawalRedemptionScheduleInstructionDataDecoder, getSetWithdrawalRedemptionScheduleInstructionDataEncoder, getSolanaTokenDecimals, getSolanaTokenMint, getStartDistributionDiscriminatorBytes, getStartDistributionInstruction, getStartDistributionInstructionAsync, getStartDistributionInstructionDataCodec, getStartDistributionInstructionDataDecoder, getStartDistributionInstructionDataEncoder, getStrategyCodec, getStrategyDecoder, getStrategyDiscriminatorBytes, getStrategyEncoder, getStrategySize, getUpdateAllocationsDiscriminatorBytes, getUpdateAllocationsInstruction, getUpdateAllocationsInstructionAsync, getUpdateAllocationsInstructionDataCodec, getUpdateAllocationsInstructionDataDecoder, getUpdateAllocationsInstructionDataEncoder, getUpdateOracleDiscriminatorBytes, getUpdateOracleInstruction, getUpdateOracleInstructionAsync, getUpdateOracleInstructionDataCodec, getUpdateOracleInstructionDataDecoder, getUpdateOracleInstructionDataEncoder, getUserBundleAccountCodec, getUserBundleAccountDecoder, getUserBundleAccountDiscriminatorBytes, getUserBundleAccountEncoder, getUserBundleAccountSize, getVaultByAddress, getVaultById, getVaultRegistry, humanFloatToAmountRaw, identifyNtbundleAccount, identifyNtbundleInstruction, isAllowlistedBundleProgramId, isNtbundleError, isValidVaultAddress, ntbundleProgram, parseAddStrategyInstruction, parseAmountRaw, parseApplyFeesToUserInstruction, parseChangeBundleMasterAdminInstruction, parseChangeManagerInstruction, parseClearUserFeeOverrideInstruction, parseClearUserWithdrawalTimingOverrideInstruction, parseCloseUserBundleAccountInstruction, parseDistributeToReceiversInstruction, parseEnableStrategyInstruction, parseEndDistributionInstruction, parseInitializeBundleDepositorInstruction, parseInitializeBundleInstruction, parseInitializeBundleMasterAccountInstruction, parseInitializePermissionedBundleDepositorInstruction, parseManagerWithdrawInstruction, parseManagerWithdrawWithSplitInstruction, parseNetPendingTransactionsInstruction, parseNtbundleInstruction, parsePauseDepositsWithdrawalsInstruction, parsePerformRefillInstruction, parseProcessDepositInstruction, parseProcessReferrerWithdrawalInstruction, parseProcessSwitchInstruction, parseProcessWithdrawalInstruction, parseReferrerRequestWithdrawInstruction, parseRefundDepositInstruction, parseRegisterReferrerInstruction, parseRemoveStrategyInstruction, parseRequestBundleSwitchInstruction, parseRequestDepositInstruction, parseRequestWithdrawalInstruction, parseSetBundleCreatorInstruction, parseSetDelaysInstruction, parseSetFeesInstruction, parseSetKeeperInstruction, parseSetMaxDepositAmountInstruction, parseSetMinDepositAmountInstruction, parseSetOracleBufferInstruction, parseSetOracleMaxAgeInstruction, parseSetOracleUpdateTimeLimitInstruction, parseSetReferralTierConfigInstruction, parseSetReferrerActiveInstruction, parseSetReferrerConfigInstruction, parseSetReferrerRateOverrideInstruction, parseSetUserFeeOverrideInstruction, parseSetUserReferrerInstruction, parseSetUserWithdrawalTimingOverrideInstruction, parseSetWithdrawalRedemptionScheduleInstruction, parseStartDistributionInstruction, parseUpdateAllocationsInstruction, parseUpdateOracleInstruction, resolveBundleReferralRates, resolveEffectiveFees, resolveEffectiveReferralRates, sharePriceRaw, toVaultConfig, toVaultRegistry, tokens, totalEquityRaw, vaults, vaultsDevnet };
|
|
2470
|
+
export { ADD_STRATEGY_DISCRIMINATOR, ALLOWLISTED_BUNDLE_PROGRAM_IDS_BY_CLUSTER, APPLY_FEES_TO_USER_DISCRIMINATOR, ASSOCIATED_TOKEN_PROGRAM_ADDRESS, BPS_DENOMINATOR, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, BUNDLE_DISCRIMINATOR, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, BUNDLE_PROGRAM_ID_V2_MAINNET, BUNDLE_TEMP_DATA_DISCRIMINATOR, BuilderDepositAmountTooLowError, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, CHANGE_MANAGER_DISCRIMINATOR, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, DEFAULT_BUNDLE_PROGRAM_ID_DEVNET, DEFAULT_BUNDLE_PROGRAM_ID_MAINNET, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, DevnetVaultId, ENABLE_STRATEGY_DISCRIMINATOR, END_DISTRIBUTION_DISCRIMINATOR, FEE_OVERRIDE_DEPOSIT, FEE_OVERRIDE_MANAGEMENT, FEE_OVERRIDE_PERFORMANCE, FEE_OVERRIDE_WITHDRAWAL, INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR, INITIALIZE_BUNDLE_DISCRIMINATOR, INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR, MANAGER_WITHDRAW_DISCRIMINATOR, MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR, MAX_DEPOSIT_FEE_BPS, MAX_REFERRAL_TIERS, MONAD_TESTNET_CHAIN_ID, NET_PENDING_TRANSACTIONS_DISCRIMINATOR, NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO, NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS, NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO, NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX, NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED, NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED, NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO, NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED, NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED, NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST, NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST, NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND, NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE, NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE, NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE, NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE, NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE, NTBUNDLE_ERROR__INSUFFICIENT_FUNDS, NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE, NTBUNDLE_ERROR__INVALID_ALLOCATIONS, NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS, NTBUNDLE_ERROR__INVALID_ASSET_PRECISION, NTBUNDLE_ERROR__INVALID_FEE_SPLIT, NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER, NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER, NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE, NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT, NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR, NTBUNDLE_ERROR__INVALID_RECEIVER, NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG, NTBUNDLE_ERROR__INVALID_REFERRAL_TIER_CONFIG, NTBUNDLE_ERROR__INVALID_TWAP_PERIOD, NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG, NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY, NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE, NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO, NTBUNDLE_ERROR__MANAGER_SHARES_ZERO, NTBUNDLE_ERROR__MATH_ERROR, NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET, NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST, NTBUNDLE_ERROR__NETTING_ALREADY_DONE, NTBUNDLE_ERROR__NETTING_NOT_DONE, NTBUNDLE_ERROR__NO_PENDING_SWITCH, NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS, NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL, NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR, NTBUNDLE_ERROR__ORACLE_NOT_UPDATED, NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT, NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY, NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO, NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS, NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST, NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS, NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO, NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER, NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO, NTBUNDLE_ERROR__REFERRALS_DISABLED, NTBUNDLE_ERROR__REFERRAL_ALREADY_SET, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING, NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW, NTBUNDLE_ERROR__REFERRER_SHARES_ZERO, NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED, NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID, NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED, NTBUNDLE_ERROR__STRATEGY_DISABLED, NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE, NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING, NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH, NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE, NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS, NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT, NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR, NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION, NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION, NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY, NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY, NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED, NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET, NTBUNDLE_PROGRAM_ADDRESS, NtbundleAccount, NtbundleInstruction, ORACLE_DATA_DISCRIMINATOR, PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR, PERFORM_REFILL_DISCRIMINATOR, PROCESS_DEPOSIT_DISCRIMINATOR, PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR, PROCESS_SWITCH_DISCRIMINATOR, PROCESS_WITHDRAWAL_DISCRIMINATOR, REFERRAL_OVERRIDE_MFEE, REFERRAL_OVERRIDE_PFEE, REFERRER_ACCOUNT_DISCRIMINATOR, REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR, REFUND_DEPOSIT_DISCRIMINATOR, REGISTER_REFERRER_DISCRIMINATOR, REMOVE_STRATEGY_DISCRIMINATOR, REQUEST_BUNDLE_SWITCH_DISCRIMINATOR, REQUEST_DEPOSIT_DISCRIMINATOR, REQUEST_WITHDRAWAL_DISCRIMINATOR, ROBINHOOD_CHAIN_ID, SECONDS_IN_YEAR, SET_BUNDLE_CREATOR_DISCRIMINATOR, SET_DELAYS_DISCRIMINATOR, SET_FEES_DISCRIMINATOR, SET_KEEPER_DISCRIMINATOR, SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR, SET_ORACLE_BUFFER_DISCRIMINATOR, SET_ORACLE_MAX_AGE_DISCRIMINATOR, SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR, SET_REFERRAL_TIER_CONFIG_DISCRIMINATOR, SET_REFERRER_ACTIVE_DISCRIMINATOR, SET_REFERRER_CONFIG_DISCRIMINATOR, SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR, SET_USER_FEE_OVERRIDE_DISCRIMINATOR, SET_USER_REFERRER_DISCRIMINATOR, SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR, START_DISTRIBUTION_DISCRIMINATOR, STRATEGY_DISCRIMINATOR, SupportedChain, SupportedToken, TOKEN_PROGRAM_ADDRESS, U64_MAX, UPDATE_ALLOCATIONS_DISCRIMINATOR, UPDATE_ORACLE_DISCRIMINATOR, USER_BUNDLE_ACCOUNT_DISCRIMINATOR, VaultCategory, VaultId, VaultType, assertAllowlistedBundleProgramId, assertValidAmountRaw, buildAttributedDepositTx, buildBuilderRegistrationTx, buildDepositInstructions, buildEnsureAssociatedTokenAccountInstruction, buildReferrerWithdrawRequestTx, buildRequestSwitchInstructions, buildRequestWithdrawInstruction, calculateAssetsFromShares, calculateGrossDepositAmount, calculateOnChainPps, calculateReferrerTierProgress, calculateReferrerTierScheduleProgress, computeUserBundleBalance, computeWithdrawalShares, createAssociatedTokenAccountIdempotentInstruction, decodeBundle, decodeBundleCreatorAccount, decodeBundleMasterAccount, decodeBundleTempData, decodeOracleData, decodeReferrerAccount, decodeStrategy, decodeUserBundleAccount, deriveReferrerAccountForUser, estimatePendingUserFees, estimateWithdrawalAvailableTimestamp, estimateWithdrawalCooldownSeconds, fetchAllBundle, fetchAllBundleCreatorAccount, fetchAllBundleMasterAccount, fetchAllBundleTempData, fetchAllMaybeBundle, fetchAllMaybeBundleCreatorAccount, fetchAllMaybeBundleMasterAccount, fetchAllMaybeBundleTempData, fetchAllMaybeOracleData, fetchAllMaybeReferrerAccount, fetchAllMaybeStrategy, fetchAllMaybeUserBundleAccount, fetchAllOracleData, fetchAllReferrerAccount, fetchAllStrategy, fetchAllUserBundleAccount, fetchBundle, fetchBundleCreatorAccount, fetchBundleMasterAccount, fetchBundleTempData, fetchMaybeBundle, fetchMaybeBundleCreatorAccount, fetchMaybeBundleMasterAccount, fetchMaybeBundleTempData, fetchMaybeOracleData, fetchMaybeReferrerAccount, fetchMaybeStrategy, fetchMaybeUserBundleAccount, fetchOracleData, fetchReferrerAccount, fetchReferrerStatus, fetchStrategy, fetchUserBundleAccount, fetchUserBundleBalance, fetchUserBundleBalances, findAssociatedTokenPda, findBundleAccountPda, findBundleAssetAuthorityPda, findBundleCreatorAccountPda, findBundleMasterAccountPda, findBundleTempDataPda, findCloseUserBundleAccountUserBundleAccountPda, findOracleDataPda, findPendingBundleAssetAuthorityPda, findReferrerAccountPda, findReferrerUserBundleAccountPda, findRequestBundleSwitchUserBundleAccountPda, findSourceBundleAssetAuthorityPda, findSourceBundleTempDataPda, findSourceOracleDataPda, findSourceUserBundleAccountPda, findStrategyAccountPda, findTargetBundleTempDataPda, findTargetOracleDataPda, findTargetPendingBundleAssetAuthorityPda, findTargetUserBundleAccountPda, findUserBundleAccountPda, getAddStrategyDiscriminatorBytes, getAddStrategyInstruction, getAddStrategyInstructionAsync, getAddStrategyInstructionDataCodec, getAddStrategyInstructionDataDecoder, getAddStrategyInstructionDataEncoder, getApplyFeesToUserDiscriminatorBytes, getApplyFeesToUserInstruction, getApplyFeesToUserInstructionAsync, getApplyFeesToUserInstructionDataCodec, getApplyFeesToUserInstructionDataDecoder, getApplyFeesToUserInstructionDataEncoder, getBundleCodec, getBundleCreatorAccountCodec, getBundleCreatorAccountDecoder, getBundleCreatorAccountDiscriminatorBytes, getBundleCreatorAccountEncoder, getBundleCreatorAccountSize, getBundleDecoder, getBundleDiscriminatorBytes, getBundleEncoder, getBundleMasterAccountCodec, getBundleMasterAccountDecoder, getBundleMasterAccountDiscriminatorBytes, getBundleMasterAccountEncoder, getBundleMasterAccountSize, getBundleProgramId, getBundleTempDataCodec, getBundleTempDataDecoder, getBundleTempDataDiscriminatorBytes, getBundleTempDataEncoder, getBundleTempDataSize, getChangeBundleMasterAdminDiscriminatorBytes, getChangeBundleMasterAdminInstruction, getChangeBundleMasterAdminInstructionAsync, getChangeBundleMasterAdminInstructionDataCodec, getChangeBundleMasterAdminInstructionDataDecoder, getChangeBundleMasterAdminInstructionDataEncoder, getChangeManagerDiscriminatorBytes, getChangeManagerInstruction, getChangeManagerInstructionDataCodec, getChangeManagerInstructionDataDecoder, getChangeManagerInstructionDataEncoder, getClearUserFeeOverrideDiscriminatorBytes, getClearUserFeeOverrideInstruction, getClearUserFeeOverrideInstructionAsync, getClearUserFeeOverrideInstructionDataCodec, getClearUserFeeOverrideInstructionDataDecoder, getClearUserFeeOverrideInstructionDataEncoder, getClearUserWithdrawalTimingOverrideDiscriminatorBytes, getClearUserWithdrawalTimingOverrideInstruction, getClearUserWithdrawalTimingOverrideInstructionAsync, getClearUserWithdrawalTimingOverrideInstructionDataCodec, getClearUserWithdrawalTimingOverrideInstructionDataDecoder, getClearUserWithdrawalTimingOverrideInstructionDataEncoder, getCloseUserBundleAccountDiscriminatorBytes, getCloseUserBundleAccountInstruction, getCloseUserBundleAccountInstructionAsync, getCloseUserBundleAccountInstructionDataCodec, getCloseUserBundleAccountInstructionDataDecoder, getCloseUserBundleAccountInstructionDataEncoder, getDefaultBundleProgramIdByCluster, getDistributeToReceiversDiscriminatorBytes, getDistributeToReceiversInstruction, getDistributeToReceiversInstructionAsync, getDistributeToReceiversInstructionDataCodec, getDistributeToReceiversInstructionDataDecoder, getDistributeToReceiversInstructionDataEncoder, getDriftProgramId, getEnableStrategyDiscriminatorBytes, getEnableStrategyInstruction, getEnableStrategyInstructionAsync, getEnableStrategyInstructionDataCodec, getEnableStrategyInstructionDataDecoder, getEnableStrategyInstructionDataEncoder, getEndDistributionDiscriminatorBytes, getEndDistributionInstruction, getEndDistributionInstructionAsync, getEndDistributionInstructionDataCodec, getEndDistributionInstructionDataDecoder, getEndDistributionInstructionDataEncoder, getInitializeBundleDepositorDiscriminatorBytes, getInitializeBundleDepositorInstruction, getInitializeBundleDepositorInstructionAsync, getInitializeBundleDepositorInstructionDataCodec, getInitializeBundleDepositorInstructionDataDecoder, getInitializeBundleDepositorInstructionDataEncoder, getInitializeBundleDiscriminatorBytes, getInitializeBundleInstruction, getInitializeBundleInstructionAsync, getInitializeBundleInstructionDataCodec, getInitializeBundleInstructionDataDecoder, getInitializeBundleInstructionDataEncoder, getInitializeBundleMasterAccountDiscriminatorBytes, getInitializeBundleMasterAccountInstruction, getInitializeBundleMasterAccountInstructionAsync, getInitializeBundleMasterAccountInstructionDataCodec, getInitializeBundleMasterAccountInstructionDataDecoder, getInitializeBundleMasterAccountInstructionDataEncoder, getInitializePermissionedBundleDepositorDiscriminatorBytes, getInitializePermissionedBundleDepositorInstruction, getInitializePermissionedBundleDepositorInstructionAsync, getInitializePermissionedBundleDepositorInstructionDataCodec, getInitializePermissionedBundleDepositorInstructionDataDecoder, getInitializePermissionedBundleDepositorInstructionDataEncoder, getManagerWithdrawDiscriminatorBytes, getManagerWithdrawInstruction, getManagerWithdrawInstructionAsync, getManagerWithdrawInstructionDataCodec, getManagerWithdrawInstructionDataDecoder, getManagerWithdrawInstructionDataEncoder, getManagerWithdrawWithSplitDiscriminatorBytes, getManagerWithdrawWithSplitInstruction, getManagerWithdrawWithSplitInstructionAsync, getManagerWithdrawWithSplitInstructionDataCodec, getManagerWithdrawWithSplitInstructionDataDecoder, getManagerWithdrawWithSplitInstructionDataEncoder, getNetPendingTransactionsDiscriminatorBytes, getNetPendingTransactionsInstruction, getNetPendingTransactionsInstructionAsync, getNetPendingTransactionsInstructionDataCodec, getNetPendingTransactionsInstructionDataDecoder, getNetPendingTransactionsInstructionDataEncoder, getNtbundleErrorMessage, getOracleDataCodec, getOracleDataDecoder, getOracleDataDiscriminatorBytes, getOracleDataEncoder, getOracleDataSize, getPauseDepositsWithdrawalsDiscriminatorBytes, getPauseDepositsWithdrawalsInstruction, getPauseDepositsWithdrawalsInstructionAsync, getPauseDepositsWithdrawalsInstructionDataCodec, getPauseDepositsWithdrawalsInstructionDataDecoder, getPauseDepositsWithdrawalsInstructionDataEncoder, getPerformRefillDiscriminatorBytes, getPerformRefillInstruction, getPerformRefillInstructionAsync, getPerformRefillInstructionDataCodec, getPerformRefillInstructionDataDecoder, getPerformRefillInstructionDataEncoder, getPointsVaults, getProcessDepositDiscriminatorBytes, getProcessDepositInstruction, getProcessDepositInstructionAsync, getProcessDepositInstructionDataCodec, getProcessDepositInstructionDataDecoder, getProcessDepositInstructionDataEncoder, getProcessReferrerWithdrawalDiscriminatorBytes, getProcessReferrerWithdrawalInstruction, getProcessReferrerWithdrawalInstructionAsync, getProcessReferrerWithdrawalInstructionDataCodec, getProcessReferrerWithdrawalInstructionDataDecoder, getProcessReferrerWithdrawalInstructionDataEncoder, getProcessSwitchDiscriminatorBytes, getProcessSwitchInstruction, getProcessSwitchInstructionAsync, getProcessSwitchInstructionDataCodec, getProcessSwitchInstructionDataDecoder, getProcessSwitchInstructionDataEncoder, getProcessWithdrawalDiscriminatorBytes, getProcessWithdrawalInstruction, getProcessWithdrawalInstructionAsync, getProcessWithdrawalInstructionDataCodec, getProcessWithdrawalInstructionDataDecoder, getProcessWithdrawalInstructionDataEncoder, getReferralTierCodec, getReferralTierDecoder, getReferralTierEncoder, getReferrerAccountCodec, getReferrerAccountDecoder, getReferrerAccountDiscriminatorBytes, getReferrerAccountEncoder, getReferrerAccountSize, getReferrerRequestWithdrawDiscriminatorBytes, getReferrerRequestWithdrawInstruction, getReferrerRequestWithdrawInstructionAsync, getReferrerRequestWithdrawInstructionDataCodec, getReferrerRequestWithdrawInstructionDataDecoder, getReferrerRequestWithdrawInstructionDataEncoder, getRefundDepositDiscriminatorBytes, getRefundDepositInstruction, getRefundDepositInstructionAsync, getRefundDepositInstructionDataCodec, getRefundDepositInstructionDataDecoder, getRefundDepositInstructionDataEncoder, getRegisterReferrerDiscriminatorBytes, getRegisterReferrerInstruction, getRegisterReferrerInstructionAsync, getRegisterReferrerInstructionDataCodec, getRegisterReferrerInstructionDataDecoder, getRegisterReferrerInstructionDataEncoder, getRemoveStrategyDiscriminatorBytes, getRemoveStrategyInstruction, getRemoveStrategyInstructionAsync, getRemoveStrategyInstructionDataCodec, getRemoveStrategyInstructionDataDecoder, getRemoveStrategyInstructionDataEncoder, getRequestBundleSwitchDiscriminatorBytes, getRequestBundleSwitchInstruction, getRequestBundleSwitchInstructionAsync, getRequestBundleSwitchInstructionDataCodec, getRequestBundleSwitchInstructionDataDecoder, getRequestBundleSwitchInstructionDataEncoder, getRequestDepositDiscriminatorBytes, getRequestDepositInstruction, getRequestDepositInstructionAsync, getRequestDepositInstructionDataCodec, getRequestDepositInstructionDataDecoder, getRequestDepositInstructionDataEncoder, getRequestWithdrawalDiscriminatorBytes, getRequestWithdrawalInstruction, getRequestWithdrawalInstructionAsync, getRequestWithdrawalInstructionDataCodec, getRequestWithdrawalInstructionDataDecoder, getRequestWithdrawalInstructionDataEncoder, getSetBundleCreatorDiscriminatorBytes, getSetBundleCreatorInstruction, getSetBundleCreatorInstructionAsync, getSetBundleCreatorInstructionDataCodec, getSetBundleCreatorInstructionDataDecoder, getSetBundleCreatorInstructionDataEncoder, getSetDelaysDiscriminatorBytes, getSetDelaysInstruction, getSetDelaysInstructionDataCodec, getSetDelaysInstructionDataDecoder, getSetDelaysInstructionDataEncoder, getSetFeesDiscriminatorBytes, getSetFeesInstruction, getSetFeesInstructionDataCodec, getSetFeesInstructionDataDecoder, getSetFeesInstructionDataEncoder, getSetKeeperDiscriminatorBytes, getSetKeeperInstruction, getSetKeeperInstructionDataCodec, getSetKeeperInstructionDataDecoder, getSetKeeperInstructionDataEncoder, getSetMaxDepositAmountDiscriminatorBytes, getSetMaxDepositAmountInstruction, getSetMaxDepositAmountInstructionDataCodec, getSetMaxDepositAmountInstructionDataDecoder, getSetMaxDepositAmountInstructionDataEncoder, getSetMinDepositAmountDiscriminatorBytes, getSetMinDepositAmountInstruction, getSetMinDepositAmountInstructionDataCodec, getSetMinDepositAmountInstructionDataDecoder, getSetMinDepositAmountInstructionDataEncoder, getSetOracleBufferDiscriminatorBytes, getSetOracleBufferInstruction, getSetOracleBufferInstructionDataCodec, getSetOracleBufferInstructionDataDecoder, getSetOracleBufferInstructionDataEncoder, getSetOracleMaxAgeDiscriminatorBytes, getSetOracleMaxAgeInstruction, getSetOracleMaxAgeInstructionDataCodec, getSetOracleMaxAgeInstructionDataDecoder, getSetOracleMaxAgeInstructionDataEncoder, getSetOracleUpdateTimeLimitDiscriminatorBytes, getSetOracleUpdateTimeLimitInstruction, getSetOracleUpdateTimeLimitInstructionDataCodec, getSetOracleUpdateTimeLimitInstructionDataDecoder, getSetOracleUpdateTimeLimitInstructionDataEncoder, getSetReferralTierConfigDiscriminatorBytes, getSetReferralTierConfigInstruction, getSetReferralTierConfigInstructionDataCodec, getSetReferralTierConfigInstructionDataDecoder, getSetReferralTierConfigInstructionDataEncoder, getSetReferrerActiveDiscriminatorBytes, getSetReferrerActiveInstruction, getSetReferrerActiveInstructionDataCodec, getSetReferrerActiveInstructionDataDecoder, getSetReferrerActiveInstructionDataEncoder, getSetReferrerConfigDiscriminatorBytes, getSetReferrerConfigInstruction, getSetReferrerConfigInstructionDataCodec, getSetReferrerConfigInstructionDataDecoder, getSetReferrerConfigInstructionDataEncoder, getSetReferrerRateOverrideDiscriminatorBytes, getSetReferrerRateOverrideInstruction, getSetReferrerRateOverrideInstructionDataCodec, getSetReferrerRateOverrideInstructionDataDecoder, getSetReferrerRateOverrideInstructionDataEncoder, getSetUserFeeOverrideDiscriminatorBytes, getSetUserFeeOverrideInstruction, getSetUserFeeOverrideInstructionAsync, getSetUserFeeOverrideInstructionDataCodec, getSetUserFeeOverrideInstructionDataDecoder, getSetUserFeeOverrideInstructionDataEncoder, getSetUserReferrerDiscriminatorBytes, getSetUserReferrerInstruction, getSetUserReferrerInstructionAsync, getSetUserReferrerInstructionDataCodec, getSetUserReferrerInstructionDataDecoder, getSetUserReferrerInstructionDataEncoder, getSetUserWithdrawalTimingOverrideDiscriminatorBytes, getSetUserWithdrawalTimingOverrideInstruction, getSetUserWithdrawalTimingOverrideInstructionAsync, getSetUserWithdrawalTimingOverrideInstructionDataCodec, getSetUserWithdrawalTimingOverrideInstructionDataDecoder, getSetUserWithdrawalTimingOverrideInstructionDataEncoder, getSetWithdrawalRedemptionScheduleDiscriminatorBytes, getSetWithdrawalRedemptionScheduleInstruction, getSetWithdrawalRedemptionScheduleInstructionDataCodec, getSetWithdrawalRedemptionScheduleInstructionDataDecoder, getSetWithdrawalRedemptionScheduleInstructionDataEncoder, getSolanaTokenDecimals, getSolanaTokenMint, getStartDistributionDiscriminatorBytes, getStartDistributionInstruction, getStartDistributionInstructionAsync, getStartDistributionInstructionDataCodec, getStartDistributionInstructionDataDecoder, getStartDistributionInstructionDataEncoder, getStrategyCodec, getStrategyDecoder, getStrategyDiscriminatorBytes, getStrategyEncoder, getStrategySize, getUpdateAllocationsDiscriminatorBytes, getUpdateAllocationsInstruction, getUpdateAllocationsInstructionAsync, getUpdateAllocationsInstructionDataCodec, getUpdateAllocationsInstructionDataDecoder, getUpdateAllocationsInstructionDataEncoder, getUpdateOracleDiscriminatorBytes, getUpdateOracleInstruction, getUpdateOracleInstructionAsync, getUpdateOracleInstructionDataCodec, getUpdateOracleInstructionDataDecoder, getUpdateOracleInstructionDataEncoder, getUserBundleAccountCodec, getUserBundleAccountDecoder, getUserBundleAccountDiscriminatorBytes, getUserBundleAccountEncoder, getUserBundleAccountSize, getVaultByAddress, getVaultById, getVaultRegistry, humanFloatToAmountRaw, identifyNtbundleAccount, identifyNtbundleInstruction, isAllowlistedBundleProgramId, isNtbundleError, isValidVaultAddress, ntbundleProgram, parseAddStrategyInstruction, parseAmountRaw, parseApplyFeesToUserInstruction, parseChangeBundleMasterAdminInstruction, parseChangeManagerInstruction, parseClearUserFeeOverrideInstruction, parseClearUserWithdrawalTimingOverrideInstruction, parseCloseUserBundleAccountInstruction, parseDistributeToReceiversInstruction, parseEnableStrategyInstruction, parseEndDistributionInstruction, parseInitializeBundleDepositorInstruction, parseInitializeBundleInstruction, parseInitializeBundleMasterAccountInstruction, parseInitializePermissionedBundleDepositorInstruction, parseManagerWithdrawInstruction, parseManagerWithdrawWithSplitInstruction, parseNetPendingTransactionsInstruction, parseNtbundleInstruction, parsePauseDepositsWithdrawalsInstruction, parsePerformRefillInstruction, parseProcessDepositInstruction, parseProcessReferrerWithdrawalInstruction, parseProcessSwitchInstruction, parseProcessWithdrawalInstruction, parseReferrerRequestWithdrawInstruction, parseRefundDepositInstruction, parseRegisterReferrerInstruction, parseRemoveStrategyInstruction, parseRequestBundleSwitchInstruction, parseRequestDepositInstruction, parseRequestWithdrawalInstruction, parseSetBundleCreatorInstruction, parseSetDelaysInstruction, parseSetFeesInstruction, parseSetKeeperInstruction, parseSetMaxDepositAmountInstruction, parseSetMinDepositAmountInstruction, parseSetOracleBufferInstruction, parseSetOracleMaxAgeInstruction, parseSetOracleUpdateTimeLimitInstruction, parseSetReferralTierConfigInstruction, parseSetReferrerActiveInstruction, parseSetReferrerConfigInstruction, parseSetReferrerRateOverrideInstruction, parseSetUserFeeOverrideInstruction, parseSetUserReferrerInstruction, parseSetUserWithdrawalTimingOverrideInstruction, parseSetWithdrawalRedemptionScheduleInstruction, parseStartDistributionInstruction, parseUpdateAllocationsInstruction, parseUpdateOracleInstruction, resolveBundleReferralRates, resolveEffectiveFees, resolveEffectiveReferralRates, sharePriceRaw, toVaultConfig, toVaultRegistry, tokens, totalEquityRaw, vaults, vaultsDevnet };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutral-trade/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"description": "Neutral Trade vault registry and Codama-generated ntbundle client for @solana/kit",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/neutral-trade/sdk#readme",
|
|
@@ -39,32 +39,32 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@solana/program-client-core": "^6.10.0",
|
|
42
|
-
"zod": "^4.
|
|
42
|
+
"zod": "^4.5.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@antfu/eslint-config": "^6.
|
|
46
|
-
"@antfu/ni": "^28.
|
|
45
|
+
"@antfu/eslint-config": "^6.7.3",
|
|
46
|
+
"@antfu/ni": "^28.3.0",
|
|
47
47
|
"@antfu/utils": "^9.3.0",
|
|
48
48
|
"@solana/kit": "^6.10.0",
|
|
49
|
-
"@types/chai": "^5.2.
|
|
50
|
-
"@types/node": "^25.
|
|
51
|
-
"baseline-browser-mapping": "^2.
|
|
52
|
-
"bumpp": "^10.
|
|
53
|
-
"chai": "^5.
|
|
54
|
-
"dotenv": "^17.2
|
|
55
|
-
"eslint": "^9.39.
|
|
56
|
-
"lint-staged": "^16.
|
|
57
|
-
"publint": "^0.3.
|
|
58
|
-
"simple-git-hooks": "^2.
|
|
59
|
-
"tinyexec": "^1.
|
|
60
|
-
"tsdown": "^0.17.
|
|
61
|
-
"tsx": "^4.
|
|
62
|
-
"typedoc": "^0.28.
|
|
49
|
+
"@types/chai": "^5.2.3",
|
|
50
|
+
"@types/node": "^25.9.5",
|
|
51
|
+
"baseline-browser-mapping": "^2.11.21",
|
|
52
|
+
"bumpp": "^10.4.1",
|
|
53
|
+
"chai": "^5.3.3",
|
|
54
|
+
"dotenv": "^17.4.2",
|
|
55
|
+
"eslint": "^9.39.5",
|
|
56
|
+
"lint-staged": "^16.4.0",
|
|
57
|
+
"publint": "^0.3.24",
|
|
58
|
+
"simple-git-hooks": "^2.14.0",
|
|
59
|
+
"tinyexec": "^1.3.1",
|
|
60
|
+
"tsdown": "^0.17.4",
|
|
61
|
+
"tsx": "^4.23.13",
|
|
62
|
+
"typedoc": "^0.28.20",
|
|
63
63
|
"typescript": "^5.9.3",
|
|
64
|
-
"vite": "^7.
|
|
65
|
-
"vitest": "^4.
|
|
64
|
+
"vite": "^7.3.6",
|
|
65
|
+
"vitest": "^4.1.11",
|
|
66
66
|
"vitest-package-exports": "^0.1.1",
|
|
67
|
-
"yaml": "^2.
|
|
67
|
+
"yaml": "^2.9.0"
|
|
68
68
|
},
|
|
69
69
|
"simple-git-hooks": {
|
|
70
70
|
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
|