@neutral-trade/sdk 0.4.19 → 1.0.2
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/README.md +27 -98
- package/dist/generated/index.d.mts +2 -0
- package/dist/generated/index.mjs +3 -0
- package/dist/generated-Dz86hd_Y.mjs +10240 -0
- package/dist/idl/index.d.mts +1536 -0
- package/dist/{neutral-trade-core-CHeKdVSh.mjs → idl/index.mjs} +1388 -7497
- package/dist/index-CCGD4ixE.d.mts +3489 -0
- package/dist/index.d.mts +352 -192
- package/dist/index.mjs +1606 -330
- package/package.json +25 -18
- package/dist/internal.d.mts +0 -2
- package/dist/internal.mjs +0 -3
- package/dist/neutral-trade-core-CtFKbCrr.d.mts +0 -4162
package/README.md
CHANGED
|
@@ -1,121 +1,50 @@
|
|
|
1
1
|
# @neutral-trade/sdk
|
|
2
2
|
|
|
3
|
-
[
|
|
4
|
-
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
5
|
-
[![License][license-src]][license-href]
|
|
3
|
+
TypeScript SDK for [Neutral Trade](https://neutral.trade) vaults on Solana — the vault registry plus a [Codama](https://github.com/codama-idl/codama)-generated client for the ntbundle program, built on [`@solana/kit`](https://github.com/anza-xyz/kit).
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
📚 **[Documentation](https://sdk.neutral.trade/)**
|
|
10
|
-
|
|
11
|
-
## Drift vault balances (legacy)
|
|
12
|
-
|
|
13
|
-
This package **does not** depend on `@drift-labs/*`. The public registry may still list historical Drift vault metadata, but **`NeutralTrade.getUserBalanceByVaultIds` only returns Bundle vaults**. Drift depositor balances are outside this package’s scope.
|
|
5
|
+
📚 **API reference:** https://sdk.neutral.trade
|
|
14
6
|
|
|
15
7
|
## Installation
|
|
16
8
|
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
npm install @neutral-trade/sdk
|
|
20
|
-
|
|
21
|
-
# yarn
|
|
22
|
-
yarn add @neutral-trade/sdk
|
|
23
|
-
|
|
24
|
-
# pnpm
|
|
25
|
-
pnpm add @neutral-trade/sdk
|
|
26
|
-
|
|
27
|
-
# bun
|
|
28
|
-
bun add @neutral-trade/sdk
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
Runtime dependencies are declared normally (Anchor, Solana web3, etc.); consumers should not need extra setup for Bundle flows.
|
|
32
|
-
|
|
33
|
-
## Quick Start
|
|
34
|
-
|
|
35
|
-
```typescript
|
|
36
|
-
import { NeutralTrade, VaultId } from '@neutral-trade/sdk'
|
|
37
|
-
|
|
38
|
-
// Initialize the SDK (uses built-in vault registry for your cluster)
|
|
39
|
-
const sdk = await NeutralTrade.create({
|
|
40
|
-
rpcUrl: 'YOUR_RPC_URL_HERE',
|
|
41
|
-
})
|
|
42
|
-
|
|
43
|
-
// Get user balance for Bundle vaults only
|
|
44
|
-
const balances = await sdk.getUserBalanceByVaultIds({
|
|
45
|
-
vaultIds: [VaultId.hyperliquid_funding_arb_48, VaultId.alp_delta_neutral_49],
|
|
46
|
-
userAddress: 'YOUR_WALLET_ADDRESS',
|
|
47
|
-
})
|
|
48
|
-
|
|
49
|
-
console.log(balances)
|
|
9
|
+
```sh
|
|
10
|
+
npm install @neutral-trade/sdk @solana/kit
|
|
50
11
|
```
|
|
51
12
|
|
|
52
|
-
|
|
13
|
+
`@solana/kit` v6 is a peer dependency. Node 20+ is required.
|
|
53
14
|
|
|
54
|
-
|
|
15
|
+
> Migrating from 0.x? The 1.x line is a full rewrite on `@solana/kit` — `PublicKey` → `Address`, `BN` → `bigint`, instruction builders return plain `Instruction` objects, and the `NeutralTrade` class is gone. The 0.x (anchor/web3.js v1) line lives on the `legacy-v0` branch.
|
|
55
16
|
|
|
56
|
-
|
|
17
|
+
## Usage
|
|
57
18
|
|
|
58
|
-
|
|
19
|
+
```ts
|
|
20
|
+
import { createSolanaRpc } from "@solana/kit";
|
|
21
|
+
import { fetchBundle, getVaultById, vaults } from "@neutral-trade/sdk";
|
|
59
22
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
23
|
+
const rpc = createSolanaRpc("https://api.mainnet-beta.solana.com");
|
|
24
|
+
const vault = getVaultById(1); // vault registry, bundled
|
|
25
|
+
const bundle = await fetchBundle(rpc, vault.address);
|
|
63
26
|
```
|
|
64
27
|
|
|
65
|
-
|
|
28
|
+
Build deposit instructions (extensions layer):
|
|
66
29
|
|
|
67
|
-
|
|
30
|
+
```ts
|
|
31
|
+
import { buildDepositInstructions } from "@neutral-trade/sdk";
|
|
68
32
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
import { VaultId } from '@neutral-trade/sdk'
|
|
76
|
-
|
|
77
|
-
// Examples — Bundle vaults (balances supported here)
|
|
78
|
-
VaultId.hyperliquid_funding_arb_48 // Hyperliquid Funding Arb
|
|
79
|
-
VaultId.alp_delta_neutral_49 // ALP Delta Neutral
|
|
33
|
+
const instructions = await buildDepositInstructions(rpc, {
|
|
34
|
+
user, // TransactionSigner
|
|
35
|
+
bundleAccount: bundleAddress,
|
|
36
|
+
amountRaw: 1_000_000n,
|
|
37
|
+
});
|
|
38
|
+
// Assemble and send with your own transaction pipeline.
|
|
80
39
|
```
|
|
81
40
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
### Cluster selection
|
|
85
|
-
|
|
86
|
-
Use `bundleCluster` to select the built-in registry and default Bundle program ID (`mainnet` or `devnet`):
|
|
87
|
-
|
|
88
|
-
```typescript
|
|
89
|
-
const sdk = await NeutralTrade.create({
|
|
90
|
-
rpcUrl: 'YOUR_RPC_URL_HERE',
|
|
91
|
-
bundleCluster: 'devnet',
|
|
92
|
-
})
|
|
93
|
-
```
|
|
41
|
+
Low-level generated bindings are also available from the `./generated` subpath.
|
|
94
42
|
|
|
95
|
-
|
|
43
|
+
## Repo layout & contributing
|
|
96
44
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
See the [examples](./examples) directory. From the `sdk/` package root (clone this repo):
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
# Local validator default RPC: http://127.0.0.1:8899 — override with SOLANA_RPC_URL
|
|
103
|
-
export SOLANA_KEYPAIR_PATH="$HOME/.config/solana/id.json"
|
|
104
|
-
pnpm example:devnet:deposit
|
|
105
|
-
pnpm example:devnet:withdraw
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
Uses the built-in devnet registry (`src/registry/vaults.devnet.json`, e.g. vault `100000001`). Your RPC must serve that vault on-chain; override vault id with `DEVNET_BUNDLE_VAULT_ID`.
|
|
45
|
+
- `src/registry/**`, `src/constants/**`, `src/types/**` — the vault registry. **PRs welcome** (new vault listings land here).
|
|
46
|
+
- `src/generated/**`, `src/extensions/**`, `test/client/**` — **bot-owned**: replaced wholesale by automated client drops from the (private) program monorepo, verified by `client-drop.manifest` + CI. Don't edit by hand — changes there belong upstream.
|
|
109
47
|
|
|
110
48
|
## License
|
|
111
49
|
|
|
112
|
-
[MIT](./LICENSE)
|
|
113
|
-
|
|
114
|
-
<!-- Badges -->
|
|
115
|
-
|
|
116
|
-
[npm-version-src]: https://img.shields.io/npm/v/@neutral-trade/sdk?style=flat&colorA=080f12&colorB=1fa669
|
|
117
|
-
[npm-version-href]: https://npmjs.com/package/@neutral-trade/sdk
|
|
118
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/@neutral-trade/sdk?style=flat&colorA=080f12&colorB=1fa669
|
|
119
|
-
[npm-downloads-href]: https://npmjs.com/package/@neutral-trade/sdk
|
|
120
|
-
[license-src]: https://img.shields.io/github/license/neutral-trade/sdk.svg?style=flat&colorA=080f12&colorB=1fa669
|
|
121
|
-
[license-href]: https://github.com/neutral-trade/sdk/blob/main/LICENSE
|
|
50
|
+
[MIT](./LICENSE.md)
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { $ as getSetWithdrawalRedemptionScheduleInstructionDataEncoder, $a as getRefundDepositInstructionDataCodec, $c as InitializeBundleMasterAccountInstructionData, $d as ADD_STRATEGY_DISCRIMINATOR, $f as findPendingBundleAssetAuthorityPda, $h as BUNDLE_TEMP_DATA_DISCRIMINATOR, $i as getRequestDepositInstructionDataEncoder, $l as EnableStrategyInput, $m as getNtbundleErrorMessage, $n as SetOracleBufferInstructionData, $o as getProcessReferrerWithdrawalInstruction, $p as NTBUNDLE_ERROR__MANAGER_SHARES_ZERO, $r as getSetFeesInstructionDataEncoder, $s as ParsedNetPendingTransactionsInstruction, $t as getSetReferrerRateOverrideInstructionDataEncoder, $u as CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, A as START_DISTRIBUTION_DISCRIMINATOR, Aa as REGISTER_REFERRER_DISCRIMINATOR, Ac as getManagerWithdrawInstructionAsync, Ad as ChangeBundleMasterAdminInstructionDataArgs, Af as TargetPendingBundleAssetAuthoritySeeds, Ag as fetchAllMaybeBundleCreatorAccount, Ah as decodeReferrerAccount, Ai as RequestWithdrawalInput, Al as getInitializeBundleDiscriminatorBytes, Am as NTBUNDLE_ERROR__REFERRER_SHARES_ZERO, An as SetOracleUpdateTimeLimitInstructionDataArgs, Ao as parseProcessWithdrawalInstruction, Ap as NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE, Ar as parseSetMaxDepositAmountInstruction, As as getPerformRefillInstructionDataDecoder, At as SET_USER_FEE_OVERRIDE_DISCRIMINATOR, Au as CloseUserBundleAccountInstructionDataArgs, B as getStartDistributionInstructionDataDecoder, Ba as getRegisterReferrerInstructionDataDecoder, Bc as InitializePermissionedBundleDepositorInstructionDataArgs, Bd as ApplyFeesToUserAsyncInput, Bf as SourceOracleDataSeeds, Bg as BundleArgs, Bh as ORACLE_DATA_DISCRIMINATOR, Bi as parseRequestWithdrawalInstruction, Bl as EndDistributionInstruction, Bm as NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS, Bn as SetOracleMaxAgeInstruction, Bo as getProcessSwitchInstructionAsync, Bp as NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE, Br as getSetKeeperInstructionDataDecoder, Bs as getPauseDepositsWithdrawalsDiscriminatorBytes, Bt as getSetUserFeeOverrideInstructionDataDecoder, Bu as ClearUserWithdrawalTimingOverrideAsyncInput, C as getUpdateAllocationsInstruction, Ca as getRemoveStrategyInstruction, Cc as ManagerWithdrawInput, Cd as getChangeManagerInstructionDataEncoder, Cf as identifyNtbundleInstruction, Cg as getBundleMasterAccountEncoder, Ch as getStrategyDecoder, Ci as getSetBundleCreatorInstructionDataCodec, Cl as INITIALIZE_BUNDLE_DISCRIMINATOR, Cm as NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED, Cn as getSetReferrerActiveInstructionDataEncoder, Co as ProcessWithdrawalInstructionDataArgs, Cp as NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED, Cr as SetMaxDepositAmountInstructionData, Cs as PerformRefillInstruction, Ct as getSetUserReferrerInstruction, Cu as getDistributeToReceiversInstructionDataEncoder, D as getUpdateAllocationsInstructionDataEncoder, Da as getRemoveStrategyInstructionDataEncoder, Dc as ParsedManagerWithdrawInstruction, Dd as ChangeBundleMasterAdminInput, Df as findUserBundleAccountPda, Dg as BundleCreatorAccountArgs, Dh as REFERRER_ACCOUNT_DISCRIMINATOR, Di as ParsedRequestWithdrawalInstruction, Dl as InitializeBundleInstructionData, Dm as NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH, Dn as SetOracleUpdateTimeLimitInput, Do as getProcessWithdrawalInstructionDataCodec, Dp as NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE, Dr as getSetMaxDepositAmountInstructionDataCodec, Ds as getPerformRefillInstruction, Dt as getSetUserReferrerInstructionDataEncoder, Du as CloseUserBundleAccountInput, E as getUpdateAllocationsInstructionDataDecoder, Ea as getRemoveStrategyInstructionDataDecoder, Ec as ManagerWithdrawInstructionDataArgs, Ed as ChangeBundleMasterAdminAsyncInput, Ef as UserBundleAccountSeeds, Eg as BundleCreatorAccount, Eh as getStrategySize, Ei as parseSetBundleCreatorInstruction, El as InitializeBundleInstruction, Em as NTBUNDLE_ERROR__REFERRAL_ALREADY_SET, En as SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR, Eo as getProcessWithdrawalInstructionAsync, Ep as NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND, Er as getSetMaxDepositAmountInstruction, Es as getPerformRefillDiscriminatorBytes, Et as getSetUserReferrerInstructionDataDecoder, Eu as CloseUserBundleAccountAsyncInput, F as StartDistributionInstructionDataArgs, Fa as RegisterReferrerInstructionDataArgs, Fc as INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR, Fd as getChangeBundleMasterAdminInstructionDataCodec, Ff as findTargetBundleTempDataPda, Fg as getBundleCreatorAccountDiscriminatorBytes, Fh as getReferrerAccountCodec, Fi as getRequestWithdrawalInstruction, Fl as getInitializeBundleInstructionDataEncoder, Fm as NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE, Fn as getSetOracleUpdateTimeLimitInstructionDataEncoder, Fo as ProcessSwitchInstruction, Fp as NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS, Fr as SetKeeperInstructionData, Fs as PauseDepositsWithdrawalsAsyncInput, Ft as SetUserFeeOverrideInstructionDataArgs, Fu as getCloseUserBundleAccountInstructionDataCodec, G as SetWithdrawalRedemptionScheduleInput, Ga as RefundDepositAsyncInput, Gc as getInitializePermissionedBundleDepositorInstructionDataCodec, Gd as ParsedApplyFeesToUserInstruction, Gf as findSourceBundleAssetAuthorityPda, Gg as fetchMaybeBundle, Gh as fetchAllOracleData, Gi as RequestDepositInstruction, Gl as getEndDistributionInstruction, Gm as NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION, Gn as getSetOracleMaxAgeInstructionDataCodec, Go as PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR, Gp as NTBUNDLE_ERROR__INVALID_TWAP_PERIOD, Gr as SetFeesInput, Gs as getPauseDepositsWithdrawalsInstructionDataEncoder, Gt as SetReferrerRateOverrideInput, Gu as ParsedClearUserWithdrawalTimingOverrideInstruction, H as parseStartDistributionInstruction, Ha as parseRegisterReferrerInstruction, Hc as getInitializePermissionedBundleDepositorDiscriminatorBytes, Hd as ApplyFeesToUserInstruction, Hf as SourceBundleTempDataSeeds, Hg as fetchAllBundle, Hh as OracleDataArgs, Hi as REQUEST_DEPOSIT_DISCRIMINATOR, Hl as EndDistributionInstructionDataArgs, Hm as NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION, Hn as SetOracleMaxAgeInstructionDataArgs, Ho as getProcessSwitchInstructionDataDecoder, Hp as NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR, Hr as parseSetKeeperInstruction, Hs as getPauseDepositsWithdrawalsInstructionAsync, Ht as parseSetUserFeeOverrideInstruction, Hu as ClearUserWithdrawalTimingOverrideInstruction, I as getStartDistributionDiscriminatorBytes, Ia as getRegisterReferrerDiscriminatorBytes, Ic as InitializePermissionedBundleDepositorAsyncInput, Id as getChangeBundleMasterAdminInstructionDataDecoder, If as StrategyAccountSeeds, Ig as getBundleCreatorAccountEncoder, Ih as getReferrerAccountDecoder, Ii as getRequestWithdrawalInstructionAsync, Il as parseInitializeBundleInstruction, Im as NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH, In as parseSetOracleUpdateTimeLimitInstruction, Io as ProcessSwitchInstructionData, Ip as NTBUNDLE_ERROR__INVALID_ASSET_PRECISION, Ir as SetKeeperInstructionDataArgs, Is as PauseDepositsWithdrawalsInput, It as getSetUserFeeOverrideDiscriminatorBytes, Iu as getCloseUserBundleAccountInstructionDataDecoder, J as SetWithdrawalRedemptionScheduleInstructionDataArgs, Ja as RefundDepositInstructionData, Jc as parseInitializePermissionedBundleDepositorInstruction, Jd as getApplyFeesToUserInstructionAsync, Jf as ReferrerUserBundleAccountSeeds, Jg as getBundleDiscriminatorBytes, Jh as getOracleDataCodec, Ji as getRequestDepositDiscriminatorBytes, Jl as getEndDistributionInstructionDataDecoder, Jm as NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY, Jn as parseSetOracleMaxAgeInstruction, Jo as ProcessReferrerWithdrawalInput, Jp as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT, Jr as SetFeesInstructionDataArgs, Js as NetPendingTransactionsAsyncInput, Jt as SetReferrerRateOverrideInstructionDataArgs, Ju as getClearUserWithdrawalTimingOverrideInstructionAsync, K as SetWithdrawalRedemptionScheduleInstruction, Ka as RefundDepositInput, Kc as getInitializePermissionedBundleDepositorInstructionDataDecoder, Kd as getApplyFeesToUserDiscriminatorBytes, Kf as RequestBundleSwitchUserBundleAccountSeeds, Kg as getBundleCodec, Kh as fetchMaybeOracleData, Ki as RequestDepositInstructionData, Kl as getEndDistributionInstructionAsync, Km as NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION, Kn as getSetOracleMaxAgeInstructionDataDecoder, Ko as ParsedProcessReferrerWithdrawalInstruction, Kp as NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG, Kr as SetFeesInstruction, Ks as parsePauseDepositsWithdrawalsInstruction, Kt as SetReferrerRateOverrideInstruction, Ku as getClearUserWithdrawalTimingOverrideDiscriminatorBytes, L as getStartDistributionInstruction, La as getRegisterReferrerInstruction, Lc as InitializePermissionedBundleDepositorInput, Ld as getChangeBundleMasterAdminInstructionDataEncoder, Lf as findStrategyAccountPda, Lg as getBundleCreatorAccountSize, Lh as getReferrerAccountDiscriminatorBytes, Li as getRequestWithdrawalInstructionDataCodec, Ll as END_DISTRIBUTION_DISCRIMINATOR, Lm as NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING, Ln as ParsedSetOracleMaxAgeInstruction, Lo as ProcessSwitchInstructionDataArgs, Lp as NTBUNDLE_ERROR__INVALID_FEE_SPLIT, Lr as getSetKeeperDiscriminatorBytes, Ls as PauseDepositsWithdrawalsInstruction, Lt as getSetUserFeeOverrideInstruction, Lu as getCloseUserBundleAccountInstructionDataEncoder, M as StartDistributionInput, Ma as RegisterReferrerInput, Mc as getManagerWithdrawInstructionDataDecoder, Md as getChangeBundleMasterAdminDiscriminatorBytes, Mf as TargetOracleDataSeeds, Mg as fetchMaybeBundleCreatorAccount, Mh as fetchAllReferrerAccount, Mi as RequestWithdrawalInstructionData, Ml as getInitializeBundleInstructionAsync, Mm as NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID, Mn as getSetOracleUpdateTimeLimitInstruction, Mo as ParsedProcessSwitchInstruction, Mp as NTBUNDLE_ERROR__INSUFFICIENT_FUNDS, Mr as SET_KEEPER_DISCRIMINATOR, Ms as parsePerformRefillInstruction, Mt as SetUserFeeOverrideInput, Mu as getCloseUserBundleAccountDiscriminatorBytes, N as StartDistributionInstruction, Na as RegisterReferrerInstruction, Nc as getManagerWithdrawInstructionDataEncoder, Nd as getChangeBundleMasterAdminInstruction, Nf as findTargetOracleDataPda, Ng as getBundleCreatorAccountCodec, Nh as fetchMaybeReferrerAccount, Ni as RequestWithdrawalInstructionDataArgs, Nl as getInitializeBundleInstructionDataCodec, Nm as NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED, Nn as getSetOracleUpdateTimeLimitInstructionDataCodec, No as ProcessSwitchAsyncInput, Np as NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE, Nr as SetKeeperInput, Ns as PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR, Nt as SetUserFeeOverrideInstruction, Nu as getCloseUserBundleAccountInstruction, O as parseUpdateAllocationsInstruction, Oa as parseRemoveStrategyInstruction, Oc as getManagerWithdrawDiscriminatorBytes, Od as ChangeBundleMasterAdminInstruction, Of as TargetUserBundleAccountSeeds, Og as decodeBundleCreatorAccount, Oh as ReferrerAccount, Oi as REQUEST_WITHDRAWAL_DISCRIMINATOR, Ol as InitializeBundleInstructionDataArgs, Om as NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING, On as SetOracleUpdateTimeLimitInstruction, Oo as getProcessWithdrawalInstructionDataDecoder, Op as NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE, Or as getSetMaxDepositAmountInstructionDataDecoder, Os as getPerformRefillInstructionAsync, Ot as parseSetUserReferrerInstruction, Ou as CloseUserBundleAccountInstruction, P as StartDistributionInstructionData, Pa as RegisterReferrerInstructionData, Pc as parseManagerWithdrawInstruction, Pd as getChangeBundleMasterAdminInstructionAsync, Pf as TargetBundleTempDataSeeds, Pg as getBundleCreatorAccountDecoder, Ph as fetchReferrerAccount, Pi as getRequestWithdrawalDiscriminatorBytes, Pl as getInitializeBundleInstructionDataDecoder, Pm as NTBUNDLE_ERROR__STRATEGY_DISABLED, Pn as getSetOracleUpdateTimeLimitInstructionDataDecoder, Po as ProcessSwitchInput, Pp as NTBUNDLE_ERROR__INVALID_ALLOCATIONS, Pr as SetKeeperInstruction, Ps as ParsedPauseDepositsWithdrawalsInstruction, Pt as SetUserFeeOverrideInstructionData, Pu as getCloseUserBundleAccountInstructionAsync, Q as getSetWithdrawalRedemptionScheduleInstructionDataDecoder, Qa as getRefundDepositInstructionAsync, Qc as InitializeBundleMasterAccountInstruction, Qd as parseApplyFeesToUserInstruction, Qf as PendingBundleAssetAuthoritySeeds, Qh as getOracleDataSize, Qi as getRequestDepositInstructionDataDecoder, Ql as EnableStrategyAsyncInput, Qm as NtbundleError, Qn as SetOracleBufferInstruction, Qo as getProcessReferrerWithdrawalDiscriminatorBytes, Qp as NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO, Qr as getSetFeesInstructionDataDecoder, Qs as NetPendingTransactionsInstructionDataArgs, Qt as getSetReferrerRateOverrideInstructionDataDecoder, Qu as parseClearUserWithdrawalTimingOverrideInstruction, R as getStartDistributionInstructionAsync, Ra as getRegisterReferrerInstructionAsync, Rc as InitializePermissionedBundleDepositorInstruction, Rd as parseChangeBundleMasterAdminInstruction, Rf as SourceUserBundleAccountSeeds, Rg as BUNDLE_DISCRIMINATOR, Rh as getReferrerAccountEncoder, Ri as getRequestWithdrawalInstructionDataDecoder, Rl as EndDistributionAsyncInput, Rm as NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH, Rn as SET_ORACLE_MAX_AGE_DISCRIMINATOR, Ro as getProcessSwitchDiscriminatorBytes, Rp as NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER, Rr as getSetKeeperInstruction, Rs as PauseDepositsWithdrawalsInstructionData, Rt as getSetUserFeeOverrideInstructionAsync, Ru as parseCloseUserBundleAccountInstruction, S as getUpdateAllocationsDiscriminatorBytes, Sa as getRemoveStrategyDiscriminatorBytes, Sc as ManagerWithdrawAsyncInput, Sd as getChangeManagerInstructionDataDecoder, Sf as identifyNtbundleAccount, Sg as getBundleMasterAccountDiscriminatorBytes, Sh as getStrategyCodec, Si as getSetBundleCreatorInstructionAsync, Sl as parseInitializeBundleDepositorInstruction, Sm as NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED, Sn as getSetReferrerActiveInstructionDataDecoder, So as ProcessWithdrawalInstructionData, Sp as NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED, Sr as SetMaxDepositAmountInstruction, Ss as PerformRefillInput, St as getSetUserReferrerDiscriminatorBytes, Su as getDistributeToReceiversInstructionDataDecoder, T as getUpdateAllocationsInstructionDataCodec, Ta as getRemoveStrategyInstructionDataCodec, Tc as ManagerWithdrawInstructionData, Td as CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, Tf as parseNtbundleInstruction, Tg as BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, Th as getStrategyEncoder, Ti as getSetBundleCreatorInstructionDataEncoder, Tl as InitializeBundleInput, Tm as NTBUNDLE_ERROR__REFERRALS_DISABLED, Tn as ParsedSetOracleUpdateTimeLimitInstruction, To as getProcessWithdrawalInstruction, Tp as NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST, Tr as getSetMaxDepositAmountDiscriminatorBytes, Ts as PerformRefillInstructionDataArgs, Tt as getSetUserReferrerInstructionDataCodec, Tu as CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, U as ParsedSetWithdrawalRedemptionScheduleInstruction, Ua as ParsedRefundDepositInstruction, Uc as getInitializePermissionedBundleDepositorInstruction, Ud as ApplyFeesToUserInstructionData, Uf as findSourceBundleTempDataPda, Ug as fetchAllMaybeBundle, Uh as decodeOracleData, Ui as RequestDepositAsyncInput, Ul as ParsedEndDistributionInstruction, Um as NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR, Un as getSetOracleMaxAgeDiscriminatorBytes, Uo as getProcessSwitchInstructionDataEncoder, Up as NTBUNDLE_ERROR__INVALID_RECEIVER, Ur as ParsedSetFeesInstruction, Us as getPauseDepositsWithdrawalsInstructionDataCodec, Ut as ParsedSetReferrerRateOverrideInstruction, Uu as ClearUserWithdrawalTimingOverrideInstructionData, V as getStartDistributionInstructionDataEncoder, Va as getRegisterReferrerInstructionDataEncoder, Vc as ParsedInitializePermissionedBundleDepositorInstruction, Vd as ApplyFeesToUserInput, Vf as findSourceOracleDataPda, Vg as decodeBundle, Vh as OracleData, Vi as ParsedRequestDepositInstruction, Vl as EndDistributionInstructionData, Vm as NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT, Vn as SetOracleMaxAgeInstructionData, Vo as getProcessSwitchInstructionDataCodec, Vp as NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT, Vr as getSetKeeperInstructionDataEncoder, Vs as getPauseDepositsWithdrawalsInstruction, Vt as getSetUserFeeOverrideInstructionDataEncoder, Vu as ClearUserWithdrawalTimingOverrideInput, W as SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR, Wa as REFUND_DEPOSIT_DISCRIMINATOR, Wc as getInitializePermissionedBundleDepositorInstructionAsync, Wd as ApplyFeesToUserInstructionDataArgs, Wf as SourceBundleAssetAuthoritySeeds, Wg as fetchBundle, Wh as fetchAllMaybeOracleData, Wi as RequestDepositInput, Wl as getEndDistributionDiscriminatorBytes, Wm as NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION, Wn as getSetOracleMaxAgeInstruction, Wo as parseProcessSwitchInstruction, Wp as NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG, Wr as SET_FEES_DISCRIMINATOR, Ws as getPauseDepositsWithdrawalsInstructionDataDecoder, Wt as SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR, Wu as ClearUserWithdrawalTimingOverrideInstructionDataArgs, X as getSetWithdrawalRedemptionScheduleInstruction, Xa as getRefundDepositDiscriminatorBytes, Xc as InitializeBundleMasterAccountAsyncInput, Xd as getApplyFeesToUserInstructionDataDecoder, Xf as ReferrerAccountSeeds, Xh as getOracleDataDiscriminatorBytes, Xi as getRequestDepositInstructionAsync, Xl as parseEndDistributionInstruction, Xm as NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED, Xn as SET_ORACLE_BUFFER_DISCRIMINATOR, Xo as ProcessReferrerWithdrawalInstructionData, Xp as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY, Xr as getSetFeesInstruction, Xs as NetPendingTransactionsInstruction, Xt as getSetReferrerRateOverrideInstruction, Xu as getClearUserWithdrawalTimingOverrideInstructionDataDecoder, Y as getSetWithdrawalRedemptionScheduleDiscriminatorBytes, Ya as RefundDepositInstructionDataArgs, Yc as INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, Yd as getApplyFeesToUserInstructionDataCodec, Yf as findReferrerUserBundleAccountPda, Yg as getBundleEncoder, Yh as getOracleDataDecoder, Yi as getRequestDepositInstruction, Yl as getEndDistributionInstructionDataEncoder, Ym as NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY, Yn as ParsedSetOracleBufferInstruction, Yo as ProcessReferrerWithdrawalInstruction, Yp as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD, Yr as getSetFeesDiscriminatorBytes, Ys as NetPendingTransactionsInput, Yt as getSetReferrerRateOverrideDiscriminatorBytes, Yu as getClearUserWithdrawalTimingOverrideInstructionDataCodec, Z as getSetWithdrawalRedemptionScheduleInstructionDataCodec, Za as getRefundDepositInstruction, Zc as InitializeBundleMasterAccountInput, Zd as getApplyFeesToUserInstructionDataEncoder, Zf as findReferrerAccountPda, Zh as getOracleDataEncoder, Zi as getRequestDepositInstructionDataCodec, Zl as ENABLE_STRATEGY_DISCRIMINATOR, Zm as NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET, Zn as SetOracleBufferInput, Zo as ProcessReferrerWithdrawalInstructionDataArgs, Zp as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE, Zr as getSetFeesInstructionDataCodec, Zs as NetPendingTransactionsInstructionData, Zt as getSetReferrerRateOverrideInstructionDataCodec, Zu as getClearUserWithdrawalTimingOverrideInstructionDataEncoder, _ as UpdateAllocationsAsyncInput, _a as RemoveStrategyAsyncInput, _c as getManagerWithdrawWithSplitInstructionDataCodec, _d as ChangeManagerInstructionDataArgs, _f as NtbundlePluginAccounts, _g as fetchAllMaybeBundleMasterAccount, _h as decodeStrategy, _i as SetBundleCreatorInstruction, _l as getInitializeBundleDepositorInstruction, _m as NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS, _n as SetReferrerActiveInstructionData, _o as PROCESS_WITHDRAWAL_DISCRIMINATOR, _p as NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED, _r as getSetMinDepositAmountInstructionDataEncoder, _s as getProcessDepositInstructionDataEncoder, _t as SetUserReferrerAsyncInput, _u as ParsedDistributeToReceiversInstruction, a as UpdateOracleInstruction, aa as RequestBundleSwitchInstruction, ac as getNetPendingTransactionsInstructionDataEncoder, ad as ParsedClearUserFeeOverrideInstruction, af as ParsedAddStrategyInstruction, ag as fetchBundleTempData, ah as fetchAllMaybeUserBundleAccount, ai as SetDelaysInstructionData, al as getInitializeBundleMasterAccountInstructionDataCodec, am as NTBUNDLE_ERROR__NETTING_NOT_DONE, an as SetReferrerConfigInstructionData, ao as ReferrerRequestWithdrawAsyncInput, ap as findBundleTempDataPda, ar as getSetOracleBufferInstructionDataEncoder, as as PROCESS_DEPOSIT_DISCRIMINATOR, at as SetUserWithdrawalTimingOverrideInstruction, au as getEnableStrategyInstruction, b as UpdateAllocationsInstructionData, ba as RemoveStrategyInstructionData, bc as parseManagerWithdrawWithSplitInstruction, bd as getChangeManagerInstruction, bf as NtbundlePluginRequirements, bg as getBundleMasterAccountCodec, bh as fetchMaybeStrategy, bi as getSetBundleCreatorDiscriminatorBytes, bl as getInitializeBundleDepositorInstructionDataDecoder, bm as NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO, bn as getSetReferrerActiveInstruction, bo as ProcessWithdrawalInput, bp as NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO, br as SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR, bs as ParsedPerformRefillInstruction, bt as SetUserReferrerInstructionData, bu as getDistributeToReceiversInstructionAsync, c as getUpdateOracleDiscriminatorBytes, ca as getRequestBundleSwitchDiscriminatorBytes, cc as ManagerWithdrawWithSplitAsyncInput, cd as getClearUserFeeOverrideInstructionAsync, cf as getAddStrategyInstructionAsync, cg as getBundleTempDataDecoder, ch as fetchUserBundleAccount, ci as getSetDelaysInstruction, cl as parseInitializeBundleMasterAccountInstruction, cm as NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL, cn as getSetReferrerConfigInstruction, co as ReferrerRequestWithdrawInstructionData, cp as findBundleCreatorAccountPda, cr as SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR, cs as ProcessDepositInput, ct as getSetUserWithdrawalTimingOverrideDiscriminatorBytes, cu as getEnableStrategyInstructionDataDecoder, d as getUpdateOracleInstructionDataCodec, da as getRequestBundleSwitchInstructionDataCodec, dc as ManagerWithdrawWithSplitInstructionData, dd as getClearUserFeeOverrideInstructionDataEncoder, df as getAddStrategyInstructionDataEncoder, dg as getBundleTempDataSize, dh as getUserBundleAccountDiscriminatorBytes, di as getSetDelaysInstructionDataEncoder, dl as InitializeBundleDepositorInput, dm as NTBUNDLE_ERROR__ORACLE_NOT_UPDATED, dn as getSetReferrerConfigInstructionDataEncoder, do as getReferrerRequestWithdrawInstruction, dp as BundleAccountSeeds, dr as SetMinDepositAmountInstructionData, ds as ProcessDepositInstructionDataArgs, dt as getSetUserWithdrawalTimingOverrideInstructionDataCodec, du as DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, ea as parseRequestDepositInstruction, ec as getNetPendingTransactionsDiscriminatorBytes, ed as ClearUserFeeOverrideAsyncInput, ef as AddStrategyAsyncInput, eg as BundleTempData, eh as isNtbundleError, ei as parseSetFeesInstruction, el as InitializeBundleMasterAccountInstructionDataArgs, em as NTBUNDLE_ERROR__MATH_ERROR, en as parseSetReferrerRateOverrideInstruction, eo as getRefundDepositInstructionDataDecoder, ep as OracleDataSeeds, er as SetOracleBufferInstructionDataArgs, es as getProcessReferrerWithdrawalInstructionAsync, et as parseSetWithdrawalRedemptionScheduleInstruction, eu as EnableStrategyInstruction, f as getUpdateOracleInstructionDataDecoder, fa as getRequestBundleSwitchInstructionDataDecoder, fc as ManagerWithdrawWithSplitInstructionDataArgs, fd as parseClearUserFeeOverrideInstruction, ff as parseAddStrategyInstruction, fg as BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, fh as getUserBundleAccountEncoder, fi as parseSetDelaysInstruction, fl as InitializeBundleDepositorInstruction, fm as NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT, fn as parseSetReferrerConfigInstruction, fo as getReferrerRequestWithdrawInstructionAsync, fp as findBundleAccountPda, fr as SetMinDepositAmountInstructionDataArgs, fs as getProcessDepositDiscriminatorBytes, ft as getSetUserWithdrawalTimingOverrideInstructionDataDecoder, fu as DistributeToReceiversAsyncInput, g as UPDATE_ALLOCATIONS_DISCRIMINATOR, ga as REMOVE_STRATEGY_DISCRIMINATOR, gc as getManagerWithdrawWithSplitInstructionAsync, gd as ChangeManagerInstructionData, gf as NtbundlePlugin, gg as fetchAllBundleMasterAccount, gh as StrategyArgs, gi as SetBundleCreatorInput, gl as getInitializeBundleDepositorDiscriminatorBytes, gm as NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS, gn as SetReferrerActiveInstruction, go as parseReferrerRequestWithdrawInstruction, gp as NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX, gr as getSetMinDepositAmountInstructionDataDecoder, gs as getProcessDepositInstructionDataDecoder, gt as SET_USER_REFERRER_DISCRIMINATOR, gu as DistributeToReceiversInstructionDataArgs, h as ParsedUpdateAllocationsInstruction, ha as ParsedRemoveStrategyInstruction, hc as getManagerWithdrawWithSplitInstruction, hd as ChangeManagerInstruction, hf as NtbundleInstruction, hg as decodeBundleMasterAccount, hh as Strategy, hi as SetBundleCreatorAsyncInput, hl as ParsedInitializeBundleDepositorInstruction, hm as NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO, hn as SetReferrerActiveInput, ho as getReferrerRequestWithdrawInstructionDataEncoder, hp as NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO, hr as getSetMinDepositAmountInstructionDataCodec, hs as getProcessDepositInstructionDataCodec, ht as ParsedSetUserReferrerInstruction, hu as DistributeToReceiversInstructionData, i as UpdateOracleInput, ia as RequestBundleSwitchInput, ic as getNetPendingTransactionsInstructionDataDecoder, id as ClearUserFeeOverrideInstructionDataArgs, if as AddStrategyInstructionDataArgs, ig as fetchAllMaybeBundleTempData, ih as decodeUserBundleAccount, ii as SetDelaysInstruction, il as getInitializeBundleMasterAccountInstructionAsync, im as NTBUNDLE_ERROR__NETTING_ALREADY_DONE, in as SetReferrerConfigInstruction, io as REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR, ip as BundleTempDataSeeds, ir as getSetOracleBufferInstructionDataDecoder, is as parseProcessReferrerWithdrawalInstruction, it as SetUserWithdrawalTimingOverrideInput, iu as getEnableStrategyDiscriminatorBytes, j as StartDistributionAsyncInput, ja as RegisterReferrerAsyncInput, jc as getManagerWithdrawInstructionDataCodec, jd as ParsedChangeBundleMasterAdminInstruction, jf as findTargetPendingBundleAssetAuthorityPda, jg as fetchBundleCreatorAccount, jh as fetchAllMaybeReferrerAccount, ji as RequestWithdrawalInstruction, jl as getInitializeBundleInstruction, jm as NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED, jn as getSetOracleUpdateTimeLimitDiscriminatorBytes, jo as PROCESS_SWITCH_DISCRIMINATOR, jp as NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE, jr as ParsedSetKeeperInstruction, js as getPerformRefillInstructionDataEncoder, jt as SetUserFeeOverrideAsyncInput, ju as ParsedCloseUserBundleAccountInstruction, k as ParsedStartDistributionInstruction, ka as ParsedRegisterReferrerInstruction, kc as getManagerWithdrawInstruction, kd as ChangeBundleMasterAdminInstructionData, kf as findTargetUserBundleAccountPda, kg as fetchAllBundleCreatorAccount, kh as ReferrerAccountArgs, ki as RequestWithdrawalAsyncInput, kl as ParsedInitializeBundleInstruction, km as NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW, kn as SetOracleUpdateTimeLimitInstructionData, ko as getProcessWithdrawalInstructionDataEncoder, kp as NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE, kr as getSetMaxDepositAmountInstructionDataEncoder, ks as getPerformRefillInstructionDataCodec, kt as ParsedSetUserFeeOverrideInstruction, ku as CloseUserBundleAccountInstructionData, l as getUpdateOracleInstruction, la as getRequestBundleSwitchInstruction, lc as ManagerWithdrawWithSplitInput, ld as getClearUserFeeOverrideInstructionDataCodec, lf as getAddStrategyInstructionDataCodec, lg as getBundleTempDataDiscriminatorBytes, lh as getUserBundleAccountCodec, li as getSetDelaysInstructionDataCodec, ll as INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR, lm as NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR, ln as getSetReferrerConfigInstructionDataCodec, lo as ReferrerRequestWithdrawInstructionDataArgs, lp as BundleAssetAuthoritySeeds, lr as SetMinDepositAmountInput, ls as ProcessDepositInstruction, lt as getSetUserWithdrawalTimingOverrideInstruction, lu as getEnableStrategyInstructionDataEncoder, m as parseUpdateOracleInstruction, ma as parseRequestBundleSwitchInstruction, mc as getManagerWithdrawWithSplitDiscriminatorBytes, md as ChangeManagerInput, mf as NtbundleAccount, mg as BundleMasterAccountArgs, mh as STRATEGY_DISCRIMINATOR, mi as SET_BUNDLE_CREATOR_DISCRIMINATOR, ml as InitializeBundleDepositorInstructionDataArgs, mm as NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY, mn as SET_REFERRER_ACTIVE_DISCRIMINATOR, mo as getReferrerRequestWithdrawInstructionDataDecoder, mp as NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS, mr as getSetMinDepositAmountInstruction, ms as getProcessDepositInstructionAsync, mt as parseSetUserWithdrawalTimingOverrideInstruction, mu as DistributeToReceiversInstruction, n as UPDATE_ORACLE_DISCRIMINATOR, na as REQUEST_BUNDLE_SWITCH_DISCRIMINATOR, nc as getNetPendingTransactionsInstructionAsync, nd as ClearUserFeeOverrideInstruction, nf as AddStrategyInstruction, ng as decodeBundleTempData, nh as UserBundleAccount, ni as SET_DELAYS_DISCRIMINATOR, nl as getInitializeBundleMasterAccountDiscriminatorBytes, nm as NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET, nn as SET_REFERRER_CONFIG_DISCRIMINATOR, no as parseRefundDepositInstruction, np as CloseUserBundleAccountUserBundleAccountSeeds, nr as getSetOracleBufferInstruction, ns as getProcessReferrerWithdrawalInstructionDataDecoder, nt as SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, nu as EnableStrategyInstructionDataArgs, o as UpdateOracleInstructionData, oa as RequestBundleSwitchInstructionData, oc as parseNetPendingTransactionsInstruction, od as getClearUserFeeOverrideDiscriminatorBytes, of as getAddStrategyDiscriminatorBytes, og as fetchMaybeBundleTempData, oh as fetchAllUserBundleAccount, oi as SetDelaysInstructionDataArgs, ol as getInitializeBundleMasterAccountInstructionDataDecoder, om as NTBUNDLE_ERROR__NO_PENDING_SWITCH, on as SetReferrerConfigInstructionDataArgs, oo as ReferrerRequestWithdrawInput, op as findBundleMasterAccountPda, or as parseSetOracleBufferInstruction, os as ParsedProcessDepositInstruction, ot as SetUserWithdrawalTimingOverrideInstructionData, ou as getEnableStrategyInstructionAsync, p as getUpdateOracleInstructionDataEncoder, pa as getRequestBundleSwitchInstructionDataEncoder, pc as ParsedManagerWithdrawWithSplitInstruction, pd as CHANGE_MANAGER_DISCRIMINATOR, pf as NTBUNDLE_PROGRAM_ADDRESS, pg as BundleMasterAccount, ph as getUserBundleAccountSize, pi as ParsedSetBundleCreatorInstruction, pl as InitializeBundleDepositorInstructionData, pm as NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS, pn as ParsedSetReferrerActiveInstruction, po as getReferrerRequestWithdrawInstructionDataCodec, pp as NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO, pr as getSetMinDepositAmountDiscriminatorBytes, ps as getProcessDepositInstruction, pt as getSetUserWithdrawalTimingOverrideInstructionDataEncoder, pu as DistributeToReceiversInput, q as SetWithdrawalRedemptionScheduleInstructionData, qa as RefundDepositInstruction, qc as getInitializePermissionedBundleDepositorInstructionDataEncoder, qd as getApplyFeesToUserInstruction, qf as findRequestBundleSwitchUserBundleAccountPda, qg as getBundleDecoder, qh as fetchOracleData, qi as RequestDepositInstructionDataArgs, ql as getEndDistributionInstructionDataCodec, qm as NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS, qn as getSetOracleMaxAgeInstructionDataEncoder, qo as ProcessReferrerWithdrawalAsyncInput, qp as NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG, qr as SetFeesInstructionData, qs as NET_PENDING_TRANSACTIONS_DISCRIMINATOR, qt as SetReferrerRateOverrideInstructionData, qu as getClearUserWithdrawalTimingOverrideInstruction, r as UpdateOracleAsyncInput, ra as RequestBundleSwitchAsyncInput, rc as getNetPendingTransactionsInstructionDataCodec, rd as ClearUserFeeOverrideInstructionData, rf as AddStrategyInstructionData, rg as fetchAllBundleTempData, rh as UserBundleAccountArgs, ri as SetDelaysInput, rl as getInitializeBundleMasterAccountInstruction, rm as NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST, rn as SetReferrerConfigInput, ro as ParsedReferrerRequestWithdrawInstruction, rp as findCloseUserBundleAccountUserBundleAccountPda, rr as getSetOracleBufferInstructionDataCodec, rs as getProcessReferrerWithdrawalInstructionDataEncoder, rt as SetUserWithdrawalTimingOverrideAsyncInput, ru as ParsedEnableStrategyInstruction, s as UpdateOracleInstructionDataArgs, sa as RequestBundleSwitchInstructionDataArgs, sc as MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR, sd as getClearUserFeeOverrideInstruction, sf as getAddStrategyInstruction, sg as getBundleTempDataCodec, sh as fetchMaybeUserBundleAccount, si as getSetDelaysDiscriminatorBytes, sl as getInitializeBundleMasterAccountInstructionDataEncoder, sm as NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS, sn as getSetReferrerConfigDiscriminatorBytes, so as ReferrerRequestWithdrawInstruction, sp as BundleCreatorAccountSeeds, sr as ParsedSetMinDepositAmountInstruction, ss as ProcessDepositAsyncInput, st as SetUserWithdrawalTimingOverrideInstructionDataArgs, su as getEnableStrategyInstructionDataCodec, t as ParsedUpdateOracleInstruction, ta as ParsedRequestBundleSwitchInstruction, tc as getNetPendingTransactionsInstruction, td as ClearUserFeeOverrideInput, tf as AddStrategyInput, tg as BundleTempDataArgs, th as USER_BUNDLE_ACCOUNT_DISCRIMINATOR, ti as ParsedSetDelaysInstruction, tl as ParsedInitializeBundleMasterAccountInstruction, tm as NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED, tn as ParsedSetReferrerConfigInstruction, to as getRefundDepositInstructionDataEncoder, tp as findOracleDataPda, tr as getSetOracleBufferDiscriminatorBytes, ts as getProcessReferrerWithdrawalInstructionDataCodec, tt as ParsedSetUserWithdrawalTimingOverrideInstruction, tu as EnableStrategyInstructionData, u as getUpdateOracleInstructionAsync, ua as getRequestBundleSwitchInstructionAsync, uc as ManagerWithdrawWithSplitInstruction, ud as getClearUserFeeOverrideInstructionDataDecoder, uf as getAddStrategyInstructionDataDecoder, ug as getBundleTempDataEncoder, uh as getUserBundleAccountDecoder, ui as getSetDelaysInstructionDataDecoder, ul as InitializeBundleDepositorAsyncInput, um as NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR, un as getSetReferrerConfigInstructionDataDecoder, uo as getReferrerRequestWithdrawDiscriminatorBytes, up as findBundleAssetAuthorityPda, ur as SetMinDepositAmountInstruction, us as ProcessDepositInstructionData, ut as getSetUserWithdrawalTimingOverrideInstructionAsync, uu as parseEnableStrategyInstruction, v as UpdateAllocationsInput, va as RemoveStrategyInput, vc as getManagerWithdrawWithSplitInstructionDataDecoder, vd as ParsedChangeManagerInstruction, vf as NtbundlePluginInstructions, vg as fetchBundleMasterAccount, vh as fetchAllMaybeStrategy, vi as SetBundleCreatorInstructionData, vl as getInitializeBundleDepositorInstructionAsync, vm as NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST, vn as SetReferrerActiveInstructionDataArgs, vo as ParsedProcessWithdrawalInstruction, vp as NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED, vr as parseSetMinDepositAmountInstruction, vs as parseProcessDepositInstruction, vt as SetUserReferrerInput, vu as getDistributeToReceiversDiscriminatorBytes, w as getUpdateAllocationsInstructionAsync, wa as getRemoveStrategyInstructionAsync, wc as ManagerWithdrawInstruction, wd as parseChangeManagerInstruction, wf as ntbundleProgram, wg as getBundleMasterAccountSize, wh as getStrategyDiscriminatorBytes, wi as getSetBundleCreatorInstructionDataDecoder, wl as InitializeBundleAsyncInput, wm as NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO, wn as parseSetReferrerActiveInstruction, wo as getProcessWithdrawalDiscriminatorBytes, wp as NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST, wr as SetMaxDepositAmountInstructionDataArgs, ws as PerformRefillInstructionData, wt as getSetUserReferrerInstructionAsync, wu as parseDistributeToReceiversInstruction, x as UpdateAllocationsInstructionDataArgs, xa as RemoveStrategyInstructionDataArgs, xc as MANAGER_WITHDRAW_DISCRIMINATOR, xd as getChangeManagerInstructionDataCodec, xf as ParsedNtbundleInstruction, xg as getBundleMasterAccountDecoder, xh as fetchStrategy, xi as getSetBundleCreatorInstruction, xl as getInitializeBundleDepositorInstructionDataEncoder, xm as NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER, xn as getSetReferrerActiveInstructionDataCodec, xo as ProcessWithdrawalInstruction, xp as NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO, xr as SetMaxDepositAmountInput, xs as PerformRefillAsyncInput, xt as SetUserReferrerInstructionDataArgs, xu as getDistributeToReceiversInstructionDataCodec, y as UpdateAllocationsInstruction, ya as RemoveStrategyInstruction, yc as getManagerWithdrawWithSplitInstructionDataEncoder, yd as getChangeManagerDiscriminatorBytes, yf as NtbundlePluginPdas, yg as fetchMaybeBundleMasterAccount, yh as fetchAllStrategy, yi as SetBundleCreatorInstructionDataArgs, yl as getInitializeBundleDepositorInstructionDataCodec, ym as NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS, yn as getSetReferrerActiveDiscriminatorBytes, yo as ProcessWithdrawalAsyncInput, yp as NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER, yr as ParsedSetMaxDepositAmountInstruction, ys as PERFORM_REFILL_DISCRIMINATOR, yt as SetUserReferrerInstruction, yu as getDistributeToReceiversInstruction, z as getStartDistributionInstructionDataCodec, za as getRegisterReferrerInstructionDataCodec, zc as InitializePermissionedBundleDepositorInstructionData, zd as APPLY_FEES_TO_USER_DISCRIMINATOR, zf as findSourceUserBundleAccountPda, zg as Bundle, zh as getReferrerAccountSize, zi as getRequestWithdrawalInstructionDataEncoder, zl as EndDistributionInput, zm as NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE, zn as SetOracleMaxAgeInput, zo as getProcessSwitchInstruction, zp as NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER, zr as getSetKeeperInstructionDataCodec, zs as PauseDepositsWithdrawalsInstructionDataArgs, zt as getSetUserFeeOverrideInstructionDataCodec, zu as CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR } from "../index-CCGD4ixE.mjs";
|
|
2
|
+
export { ADD_STRATEGY_DISCRIMINATOR, APPLY_FEES_TO_USER_DISCRIMINATOR, AddStrategyAsyncInput, AddStrategyInput, AddStrategyInstruction, AddStrategyInstructionData, AddStrategyInstructionDataArgs, ApplyFeesToUserAsyncInput, ApplyFeesToUserInput, ApplyFeesToUserInstruction, ApplyFeesToUserInstructionData, ApplyFeesToUserInstructionDataArgs, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, BUNDLE_DISCRIMINATOR, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, BUNDLE_TEMP_DATA_DISCRIMINATOR, Bundle, BundleAccountSeeds, BundleArgs, BundleAssetAuthoritySeeds, BundleCreatorAccount, BundleCreatorAccountArgs, BundleCreatorAccountSeeds, BundleMasterAccount, BundleMasterAccountArgs, BundleTempData, BundleTempDataArgs, BundleTempDataSeeds, 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, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, DistributeToReceiversAsyncInput, DistributeToReceiversInput, DistributeToReceiversInstruction, DistributeToReceiversInstructionData, DistributeToReceiversInstructionDataArgs, ENABLE_STRATEGY_DISCRIMINATOR, END_DISTRIBUTION_DISCRIMINATOR, EnableStrategyAsyncInput, EnableStrategyInput, EnableStrategyInstruction, EnableStrategyInstructionData, EnableStrategyInstructionDataArgs, EndDistributionAsyncInput, EndDistributionInput, EndDistributionInstruction, EndDistributionInstructionData, EndDistributionInstructionDataArgs, 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, 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_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, 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, ParsedSetReferrerActiveInstruction, ParsedSetReferrerConfigInstruction, ParsedSetReferrerRateOverrideInstruction, ParsedSetUserFeeOverrideInstruction, ParsedSetUserReferrerInstruction, ParsedSetUserWithdrawalTimingOverrideInstruction, ParsedSetWithdrawalRedemptionScheduleInstruction, ParsedStartDistributionInstruction, ParsedUpdateAllocationsInstruction, ParsedUpdateOracleInstruction, PauseDepositsWithdrawalsAsyncInput, PauseDepositsWithdrawalsInput, PauseDepositsWithdrawalsInstruction, PauseDepositsWithdrawalsInstructionData, PauseDepositsWithdrawalsInstructionDataArgs, PendingBundleAssetAuthoritySeeds, PerformRefillAsyncInput, PerformRefillInput, PerformRefillInstruction, PerformRefillInstructionData, PerformRefillInstructionDataArgs, ProcessDepositAsyncInput, ProcessDepositInput, ProcessDepositInstruction, ProcessDepositInstructionData, ProcessDepositInstructionDataArgs, ProcessReferrerWithdrawalAsyncInput, ProcessReferrerWithdrawalInput, ProcessReferrerWithdrawalInstruction, ProcessReferrerWithdrawalInstructionData, ProcessReferrerWithdrawalInstructionDataArgs, ProcessSwitchAsyncInput, ProcessSwitchInput, ProcessSwitchInstruction, ProcessSwitchInstructionData, ProcessSwitchInstructionDataArgs, ProcessWithdrawalAsyncInput, ProcessWithdrawalInput, ProcessWithdrawalInstruction, ProcessWithdrawalInstructionData, ProcessWithdrawalInstructionDataArgs, 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, ReferrerAccount, ReferrerAccountArgs, ReferrerAccountSeeds, ReferrerRequestWithdrawAsyncInput, ReferrerRequestWithdrawInput, ReferrerRequestWithdrawInstruction, ReferrerRequestWithdrawInstructionData, ReferrerRequestWithdrawInstructionDataArgs, ReferrerUserBundleAccountSeeds, 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, 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_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, 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, SourceBundleAssetAuthoritySeeds, SourceBundleTempDataSeeds, SourceOracleDataSeeds, SourceUserBundleAccountSeeds, StartDistributionAsyncInput, StartDistributionInput, StartDistributionInstruction, StartDistributionInstructionData, StartDistributionInstructionDataArgs, Strategy, StrategyAccountSeeds, StrategyArgs, TargetBundleTempDataSeeds, TargetOracleDataSeeds, TargetPendingBundleAssetAuthoritySeeds, TargetUserBundleAccountSeeds, UPDATE_ALLOCATIONS_DISCRIMINATOR, UPDATE_ORACLE_DISCRIMINATOR, USER_BUNDLE_ACCOUNT_DISCRIMINATOR, UpdateAllocationsAsyncInput, UpdateAllocationsInput, UpdateAllocationsInstruction, UpdateAllocationsInstructionData, UpdateAllocationsInstructionDataArgs, UpdateOracleAsyncInput, UpdateOracleInput, UpdateOracleInstruction, UpdateOracleInstructionData, UpdateOracleInstructionDataArgs, UserBundleAccount, UserBundleAccountArgs, UserBundleAccountSeeds, decodeBundle, decodeBundleCreatorAccount, decodeBundleMasterAccount, decodeBundleTempData, decodeOracleData, decodeReferrerAccount, decodeStrategy, decodeUserBundleAccount, 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, fetchStrategy, fetchUserBundleAccount, 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, 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, getDistributeToReceiversDiscriminatorBytes, getDistributeToReceiversInstruction, getDistributeToReceiversInstructionAsync, getDistributeToReceiversInstructionDataCodec, getDistributeToReceiversInstructionDataDecoder, getDistributeToReceiversInstructionDataEncoder, 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, getProcessDepositDiscriminatorBytes, getProcessDepositInstruction, getProcessDepositInstructionAsync, getProcessDepositInstructionDataCodec, getProcessDepositInstructionDataDecoder, getProcessDepositInstructionDataEncoder, getProcessReferrerWithdrawalDiscriminatorBytes, getProcessReferrerWithdrawalInstruction, getProcessReferrerWithdrawalInstructionAsync, getProcessReferrerWithdrawalInstructionDataCodec, getProcessReferrerWithdrawalInstructionDataDecoder, getProcessReferrerWithdrawalInstructionDataEncoder, getProcessSwitchDiscriminatorBytes, getProcessSwitchInstruction, getProcessSwitchInstructionAsync, getProcessSwitchInstructionDataCodec, getProcessSwitchInstructionDataDecoder, getProcessSwitchInstructionDataEncoder, getProcessWithdrawalDiscriminatorBytes, getProcessWithdrawalInstruction, getProcessWithdrawalInstructionAsync, getProcessWithdrawalInstructionDataCodec, getProcessWithdrawalInstructionDataDecoder, getProcessWithdrawalInstructionDataEncoder, 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, 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, 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, identifyNtbundleAccount, identifyNtbundleInstruction, isNtbundleError, ntbundleProgram, parseAddStrategyInstruction, 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, parseSetReferrerActiveInstruction, parseSetReferrerConfigInstruction, parseSetReferrerRateOverrideInstruction, parseSetUserFeeOverrideInstruction, parseSetUserReferrerInstruction, parseSetUserWithdrawalTimingOverrideInstruction, parseSetWithdrawalRedemptionScheduleInstruction, parseStartDistributionInstruction, parseUpdateAllocationsInstruction, parseUpdateOracleInstruction };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { $ as NTBUNDLE_ERROR__ORACLE_NOT_UPDATED, $a as PROCESS_DEPOSIT_DISCRIMINATOR, $c as findTargetOracleDataPda, $i as getRemoveStrategyInstruction, $l as fetchAllOracleData, $n as getSetReferrerRateOverrideInstructionDataCodec, $o as getInitializePermissionedBundleDepositorInstructionDataEncoder, $r as getSetKeeperDiscriminatorBytes, $s as getCloseUserBundleAccountInstructionDataCodec, $t as getUpdateOracleInstructionDataCodec, A as NTBUNDLE_ERROR__INVALID_PERMISSIONNED_DEPOSITOR, Aa as getProcessWithdrawalDiscriminatorBytes, Ac as getChangeBundleMasterAdminInstructionDataCodec, Ai as getRequestWithdrawalInstructionAsync, Al as fetchAllMaybeStrategy, An as getSetUserWithdrawalTimingOverrideInstructionDataCodec, Ao as parseNetPendingTransactionsInstruction, Ar as parseSetOracleMaxAgeInstruction, As as getEndDistributionInstructionDataDecoder, At as NTBUNDLE_ERROR__UNAUTHORIZED_ADMIN_ACTION, Au as decodeBundleCreatorAccount, B as NTBUNDLE_ERROR__LEFT_TO_DISTRIBUTE_NOT_ZERO, Ba as getProcessSwitchInstructionAsync, Bc as getApplyFeesToUserInstructionDataEncoder, Bi as getRequestDepositInstructionDataDecoder, Bl as decodeReferrerAccount, Bn as getSetUserReferrerInstructionDataEncoder, Bo as getManagerWithdrawDiscriminatorBytes, Br as getSetMinDepositAmountInstruction, Bs as parseEnableStrategyInstruction, Bt as getNtbundleErrorMessage, Bu as BUNDLE_DISCRIMINATOR, C as NTBUNDLE_ERROR__INVALID_ASSET_ADDRESS, Ca as getReferrerRequestWithdrawInstruction, Cc as getChangeManagerInstructionDataDecoder, Ci as getSetBundleCreatorInstructionDataCodec, Cl as getUserBundleAccountCodec, Cn as getSetWithdrawalRedemptionScheduleInstructionDataDecoder, Co as NET_PENDING_TRANSACTIONS_DISCRIMINATOR, Cr as parseSetOracleUpdateTimeLimitInstruction, Cs as getInitializeBundleInstructionDataEncoder, Ct as NTBUNDLE_ERROR__SWITCH_ALREADY_ACTIVE, Cu as fetchMaybeBundleMasterAccount, D as NTBUNDLE_ERROR__INVALID_ORACLE_BUFFER, Da as getReferrerRequestWithdrawInstructionDataEncoder, Dc as getChangeBundleMasterAdminDiscriminatorBytes, Di as REQUEST_WITHDRAWAL_DISCRIMINATOR, Dl as getUserBundleAccountSize, Dn as getSetUserWithdrawalTimingOverrideDiscriminatorBytes, Do as getNetPendingTransactionsInstructionDataCodec, Dr as getSetOracleMaxAgeInstructionDataCodec, Ds as getEndDistributionInstruction, Dt as NTBUNDLE_ERROR__SWITCH_TARGET_SAME_AS_SOURCE, Du as getBundleMasterAccountEncoder, E as NTBUNDLE_ERROR__INVALID_NEUTRAL_FEE_INCREMENTER, Ea as getReferrerRequestWithdrawInstructionDataDecoder, Ec as CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, Ei as parseSetBundleCreatorInstruction, El as getUserBundleAccountEncoder, En as SET_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, Eo as getNetPendingTransactionsInstructionAsync, Er as getSetOracleMaxAgeInstruction, Es as getEndDistributionDiscriminatorBytes, Et as NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNT_MISMATCH, Eu as getBundleMasterAccountDiscriminatorBytes, F as NTBUNDLE_ERROR__INVALID_USER_WITHDRAWAL_TIMING_CONFIG, Fa as getProcessWithdrawalInstructionDataEncoder, Fc as getApplyFeesToUserDiscriminatorBytes, Fi as REQUEST_DEPOSIT_DISCRIMINATOR, Fl as getStrategyDecoder, Fn as getSetUserReferrerDiscriminatorBytes, Fo as getManagerWithdrawWithSplitInstructionDataCodec, Fr as getSetOracleBufferInstructionDataDecoder, Fs as getEnableStrategyInstruction, Ft as NTBUNDLE_ERROR__UNPAUSED_DEPOSITS_WITHDRAWALS, Fu as getBundleCreatorAccountCodec, G as NTBUNDLE_ERROR__MUST_BE_IN_WHITELIST, Ga as PROCESS_REFERRER_WITHDRAWAL_DISCRIMINATOR, Gc as getAddStrategyInstructionAsync, Gi as getRequestBundleSwitchInstruction, Gl as getReferrerAccountCodec, Gn as getSetUserFeeOverrideInstructionAsync, Go as getManagerWithdrawInstructionDataEncoder, Gr as SET_MAX_DEPOSIT_AMOUNT_DISCRIMINATOR, Gs as getDistributeToReceiversInstructionDataCodec, Gt as identifyNtbundleAccount, Gu as fetchMaybeBundle, H as NTBUNDLE_ERROR__MATH_ERROR, Ha as getProcessSwitchInstructionDataDecoder, Hc as ADD_STRATEGY_DISCRIMINATOR, Hi as parseRequestDepositInstruction, Hl as fetchAllReferrerAccount, Hn as SET_USER_FEE_OVERRIDE_DISCRIMINATOR, Ho as getManagerWithdrawInstructionAsync, Hr as getSetMinDepositAmountInstructionDataDecoder, Hs as getDistributeToReceiversDiscriminatorBytes, Ht as NTBUNDLE_PROGRAM_ADDRESS, Hu as fetchAllBundle, I as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_AMOUNT, Ia as parseProcessWithdrawalInstruction, Ic as getApplyFeesToUserInstruction, Ii as getRequestDepositDiscriminatorBytes, Il as getStrategyDiscriminatorBytes, In as getSetUserReferrerInstruction, Io as getManagerWithdrawWithSplitInstructionDataDecoder, Ir as getSetOracleBufferInstructionDataEncoder, Is as getEnableStrategyInstructionAsync, It as NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_HAS_ACTIVITY, Iu as getBundleCreatorAccountDecoder, J as NTBUNDLE_ERROR__NO_PENDING_SWITCH, Ja as getProcessReferrerWithdrawalInstructionAsync, Jc as getAddStrategyInstructionDataEncoder, Ji as getRequestBundleSwitchInstructionDataDecoder, Jl as getReferrerAccountEncoder, Jn as getSetUserFeeOverrideInstructionDataEncoder, Jo as getInitializePermissionedBundleDepositorDiscriminatorBytes, Jr as getSetMaxDepositAmountInstructionDataCodec, Js as parseDistributeToReceiversInstruction, Jt as parseNtbundleInstruction, Ju as getBundleDiscriminatorBytes, K as NTBUNDLE_ERROR__NETTING_ALREADY_DONE, Ka as getProcessReferrerWithdrawalDiscriminatorBytes, Kc as getAddStrategyInstructionDataCodec, Ki as getRequestBundleSwitchInstructionAsync, Kl as getReferrerAccountDecoder, Kn as getSetUserFeeOverrideInstructionDataCodec, Ko as parseManagerWithdrawInstruction, Kr as getSetMaxDepositAmountDiscriminatorBytes, Ks as getDistributeToReceiversInstructionDataDecoder, Kt as identifyNtbundleInstruction, Ku as getBundleCodec, L as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_COOLDOWN_PERIOD, La as PROCESS_SWITCH_DISCRIMINATOR, Lc as getApplyFeesToUserInstructionAsync, Li as getRequestDepositInstruction, Ll as getStrategyEncoder, Ln as getSetUserReferrerInstructionAsync, Lo as getManagerWithdrawWithSplitInstructionDataEncoder, Lr as parseSetOracleBufferInstruction, Ls as getEnableStrategyInstructionDataCodec, Lt as NTBUNDLE_ERROR__USER_BUNDLE_ACCOUNT_NOT_EMPTY, Lu as getBundleCreatorAccountDiscriminatorBytes, M as NTBUNDLE_ERROR__INVALID_REFERRAL_CONFIG, Ma as getProcessWithdrawalInstructionAsync, Mc as getChangeBundleMasterAdminInstructionDataEncoder, Mi as getRequestWithdrawalInstructionDataDecoder, Ml as fetchMaybeStrategy, Mn as getSetUserWithdrawalTimingOverrideInstructionDataEncoder, Mo as getManagerWithdrawWithSplitDiscriminatorBytes, Mr as getSetOracleBufferDiscriminatorBytes, Ms as parseEndDistributionInstruction, Mt as NTBUNDLE_ERROR__UNAUTHORIZED_KEEPER_ACTION, Mu as fetchAllMaybeBundleCreatorAccount, N as NTBUNDLE_ERROR__INVALID_TWAP_PERIOD, Na as getProcessWithdrawalInstructionDataCodec, Nc as parseChangeBundleMasterAdminInstruction, Ni as getRequestWithdrawalInstructionDataEncoder, Nl as fetchStrategy, Nn as parseSetUserWithdrawalTimingOverrideInstruction, No as getManagerWithdrawWithSplitInstruction, Nr as getSetOracleBufferInstruction, Ns as ENABLE_STRATEGY_DISCRIMINATOR, Nt as NTBUNDLE_ERROR__UNAUTHORIZED_MANAGER_ACTION, Nu as fetchBundleCreatorAccount, O as NTBUNDLE_ERROR__INVALID_ORACLE_MAX_AGE, Oa as parseReferrerRequestWithdrawInstruction, Oc as getChangeBundleMasterAdminInstruction, Oi as getRequestWithdrawalDiscriminatorBytes, Ol as STRATEGY_DISCRIMINATOR, On as getSetUserWithdrawalTimingOverrideInstruction, Oo as getNetPendingTransactionsInstructionDataDecoder, Or as getSetOracleMaxAgeInstructionDataDecoder, Os as getEndDistributionInstructionAsync, Ot as NTBUNDLE_ERROR__TOO_MANY_ALLOCATED_RECEIVERS, Ou as getBundleMasterAccountSize, P as NTBUNDLE_ERROR__INVALID_USER_FEE_CONFIG, Pa as getProcessWithdrawalInstructionDataDecoder, Pc as APPLY_FEES_TO_USER_DISCRIMINATOR, Pi as parseRequestWithdrawalInstruction, Pl as getStrategyCodec, Pn as SET_USER_REFERRER_DISCRIMINATOR, Po as getManagerWithdrawWithSplitInstructionAsync, Pr as getSetOracleBufferInstructionDataCodec, Ps as getEnableStrategyDiscriminatorBytes, Pt as NTBUNDLE_ERROR__UNAUTHORIZED_REFERRER_ACTION, Pu as fetchMaybeBundleCreatorAccount, Q as NTBUNDLE_ERROR__NO_USER_WITHDRAWAL_TIMING_OVERRIDE_TO_CLEAR, Qa as parseProcessReferrerWithdrawalInstruction, Qc as findTargetPendingBundleAssetAuthorityPda, Qi as getRemoveStrategyDiscriminatorBytes, Ql as fetchAllMaybeOracleData, Qn as getSetReferrerRateOverrideInstruction, Qo as getInitializePermissionedBundleDepositorInstructionDataDecoder, Qr as SET_KEEPER_DISCRIMINATOR, Qs as getCloseUserBundleAccountInstructionAsync, Qt as getUpdateOracleInstructionAsync, R as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_DELAY, Ra as getProcessSwitchDiscriminatorBytes, Rc as getApplyFeesToUserInstructionDataCodec, Ri as getRequestDepositInstructionAsync, Rl as getStrategySize, Rn as getSetUserReferrerInstructionDataCodec, Ro as parseManagerWithdrawWithSplitInstruction, Rr as SET_MIN_DEPOSIT_AMOUNT_DISCRIMINATOR, Rs as getEnableStrategyInstructionDataDecoder, Rt as NTBUNDLE_ERROR__WITHDRAWAL_ALREADY_PROCESSED, Ru as getBundleCreatorAccountEncoder, S as NTBUNDLE_ERROR__INVALID_ALLOCATIONS, Sa as getReferrerRequestWithdrawDiscriminatorBytes, Sc as getChangeManagerInstructionDataCodec, Si as getSetBundleCreatorInstructionAsync, Sl as fetchUserBundleAccount, Sn as getSetWithdrawalRedemptionScheduleInstructionDataCodec, So as parsePauseDepositsWithdrawalsInstruction, Sr as getSetOracleUpdateTimeLimitInstructionDataEncoder, Ss as getInitializeBundleInstructionDataDecoder, St as NTBUNDLE_ERROR__STRATEGY_DISABLED, Su as fetchBundleMasterAccount, T as NTBUNDLE_ERROR__INVALID_FEE_SPLIT, Ta as getReferrerRequestWithdrawInstructionDataCodec, Tc as parseChangeManagerInstruction, Ti as getSetBundleCreatorInstructionDataEncoder, Tl as getUserBundleAccountDiscriminatorBytes, Tn as parseSetWithdrawalRedemptionScheduleInstruction, To as getNetPendingTransactionsInstruction, Tr as getSetOracleMaxAgeDiscriminatorBytes, Ts as END_DISTRIBUTION_DISCRIMINATOR, Tt as NTBUNDLE_ERROR__SWITCH_TARGET_ACCOUNTS_MISSING, Tu as getBundleMasterAccountDecoder, U as NTBUNDLE_ERROR__MAX_DEPOSIT_AMOUNT_EXCEEDED, Ua as getProcessSwitchInstructionDataEncoder, Uc as getAddStrategyDiscriminatorBytes, Ui as REQUEST_BUNDLE_SWITCH_DISCRIMINATOR, Ul as fetchMaybeReferrerAccount, Un as getSetUserFeeOverrideDiscriminatorBytes, Uo as getManagerWithdrawInstructionDataCodec, Ur as getSetMinDepositAmountInstructionDataEncoder, Us as getDistributeToReceiversInstruction, Ut as NtbundleAccount, Uu as fetchAllMaybeBundle, V as NTBUNDLE_ERROR__MANAGER_SHARES_ZERO, Va as getProcessSwitchInstructionDataCodec, Vc as parseApplyFeesToUserInstruction, Vi as getRequestDepositInstructionDataEncoder, Vl as fetchAllMaybeReferrerAccount, Vn as parseSetUserReferrerInstruction, Vo as getManagerWithdrawInstruction, Vr as getSetMinDepositAmountInstructionDataCodec, Vs as DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, Vt as isNtbundleError, Vu as decodeBundle, W as NTBUNDLE_ERROR__MIN_DEPOSIT_AMOUNT_NOT_MET, Wa as parseProcessSwitchInstruction, Wc as getAddStrategyInstruction, Wi as getRequestBundleSwitchDiscriminatorBytes, Wl as fetchReferrerAccount, Wn as getSetUserFeeOverrideInstruction, Wo as getManagerWithdrawInstructionDataDecoder, Wr as parseSetMinDepositAmountInstruction, Ws as getDistributeToReceiversInstructionAsync, Wt as NtbundleInstruction, Wu as fetchBundle, X as NTBUNDLE_ERROR__NO_PENDING_WITHDRAWAL, Xa as getProcessReferrerWithdrawalInstructionDataDecoder, Xc as findUserBundleAccountPda, Xi as parseRequestBundleSwitchInstruction, Xl as ORACLE_DATA_DISCRIMINATOR, Xn as SET_REFERRER_RATE_OVERRIDE_DISCRIMINATOR, Xo as getInitializePermissionedBundleDepositorInstructionAsync, Xr as getSetMaxDepositAmountInstructionDataEncoder, Xs as getCloseUserBundleAccountDiscriminatorBytes, Xt as getUpdateOracleDiscriminatorBytes, Y as NTBUNDLE_ERROR__NO_PENDING_TRANSACTIONS, Ya as getProcessReferrerWithdrawalInstructionDataCodec, Yc as parseAddStrategyInstruction, Yi as getRequestBundleSwitchInstructionDataEncoder, Yl as getReferrerAccountSize, Yn as parseSetUserFeeOverrideInstruction, Yo as getInitializePermissionedBundleDepositorInstruction, Yr as getSetMaxDepositAmountInstructionDataDecoder, Ys as CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, Yt as UPDATE_ORACLE_DISCRIMINATOR, Yu as getBundleEncoder, Z as NTBUNDLE_ERROR__NO_USER_FEE_OVERRIDE_TO_CLEAR, Za as getProcessReferrerWithdrawalInstructionDataEncoder, Zc as findTargetUserBundleAccountPda, Zi as REMOVE_STRATEGY_DISCRIMINATOR, Zl as decodeOracleData, Zn as getSetReferrerRateOverrideDiscriminatorBytes, Zo as getInitializePermissionedBundleDepositorInstructionDataCodec, Zr as parseSetMaxDepositAmountInstruction, Zs as getCloseUserBundleAccountInstruction, Zt as getUpdateOracleInstruction, _ as NTBUNDLE_ERROR__EXCESSIVE_PERFORMANCE_FEE, _a as getRefundDepositInstructionDataCodec, _c as getClearUserFeeOverrideInstructionDataEncoder, _i as getSetDelaysInstructionDataEncoder, _l as USER_BUNDLE_ACCOUNT_DISCRIMINATOR, _n as getStartDistributionInstructionDataEncoder, _o as getPauseDepositsWithdrawalsInstruction, _r as SET_ORACLE_UPDATE_TIME_LIMIT_DISCRIMINATOR, _s as INITIALIZE_BUNDLE_DISCRIMINATOR, _t as NTBUNDLE_ERROR__REFERRER_DEPOSIT_TOO_LOW, _u as getBundleTempDataSize, a as NTBUNDLE_ERROR__BUNDLE_IS_PERMISSIONNED, aa as REGISTER_REFERRER_DISCRIMINATOR, ac as getClearUserWithdrawalTimingOverrideInstruction, ai as SET_FEES_DISCRIMINATOR, al as findSourceBundleAssetAuthorityPda, an as getUpdateAllocationsInstruction, ao as getProcessDepositInstructionDataEncoder, ar as getSetReferrerConfigInstruction, as as getInitializeBundleMasterAccountInstructionDataCodec, at as NTBUNDLE_ERROR__PENDING_DEPOSIT_OR_WITHDRAWAL_EXISTS, au as getOracleDataEncoder, b as NTBUNDLE_ERROR__INSUFFICIENT_FUNDS, ba as parseRefundDepositInstruction, bc as getChangeManagerDiscriminatorBytes, bi as getSetBundleCreatorDiscriminatorBytes, bl as fetchAllUserBundleAccount, bn as getSetWithdrawalRedemptionScheduleDiscriminatorBytes, bo as getPauseDepositsWithdrawalsInstructionDataDecoder, br as getSetOracleUpdateTimeLimitInstructionDataCodec, bs as getInitializeBundleInstructionAsync, bt as NTBUNDLE_ERROR__REFILL_AMOUNT_INVALID, bu as fetchAllBundleMasterAccount, c as NTBUNDLE_ERROR__DEPOSITS_EXTRA_IN_PENDINGS_NOT_ZERO, ca as getRegisterReferrerInstructionAsync, cc as getClearUserWithdrawalTimingOverrideInstructionDataDecoder, ci as getSetFeesInstructionDataCodec, cl as findReferrerAccountPda, cn as getUpdateAllocationsInstructionDataDecoder, co as getPerformRefillDiscriminatorBytes, cr as getSetReferrerConfigInstructionDataEncoder, cs as parseInitializeBundleMasterAccountInstruction, ct as NTBUNDLE_ERROR__POD_TOKEN_TOTAL_SUPPLY_ZERO, cu as decodeBundleTempData, d as NTBUNDLE_ERROR__DISTRIBUTION_NOT_STARTED, da as getRegisterReferrerInstructionDataEncoder, dc as CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, di as parseSetFeesInstruction, dl as findCloseUserBundleAccountUserBundleAccountPda, dn as START_DISTRIBUTION_DISCRIMINATOR, do as getPerformRefillInstructionDataCodec, dr as getSetReferrerActiveDiscriminatorBytes, ds as getInitializeBundleDepositorInstruction, dt as NTBUNDLE_ERROR__REDEMPTION_AMOUNT_EXCEEDED, du as fetchBundleTempData, ea as getRemoveStrategyInstructionAsync, ec as getCloseUserBundleAccountInstructionDataDecoder, ei as getSetKeeperInstruction, el as findTargetBundleTempDataPda, en as getUpdateOracleInstructionDataDecoder, eo as getProcessDepositDiscriminatorBytes, er as getSetReferrerRateOverrideInstructionDataDecoder, es as parseInitializePermissionedBundleDepositorInstruction, et as NTBUNDLE_ERROR__ORACLE_UPDATE_TOO_FREQUENT, eu as fetchMaybeOracleData, f as NTBUNDLE_ERROR__EMPTY_USER_FEE_CLEAR_REQUEST, fa as parseRegisterReferrerInstruction, fc as getClearUserFeeOverrideDiscriminatorBytes, fi as SET_DELAYS_DISCRIMINATOR, fl as findBundleTempDataPda, fn as getStartDistributionDiscriminatorBytes, fo as getPerformRefillInstructionDataDecoder, fr as getSetReferrerActiveInstruction, fs as getInitializeBundleDepositorInstructionAsync, ft as NTBUNDLE_ERROR__REDEMPTION_AMOUNT_ZERO, fu as fetchMaybeBundleTempData, g as NTBUNDLE_ERROR__EXCESSIVE_MANAGEMENT_FEE, ga as getRefundDepositInstructionAsync, gc as getClearUserFeeOverrideInstructionDataDecoder, gi as getSetDelaysInstructionDataDecoder, gl as findBundleAccountPda, gn as getStartDistributionInstructionDataDecoder, go as getPauseDepositsWithdrawalsDiscriminatorBytes, gr as parseSetReferrerActiveInstruction, gs as parseInitializeBundleDepositorInstruction, gt as NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISSING, gu as getBundleTempDataEncoder, h as NTBUNDLE_ERROR__EXCESSIVE_DEPOSIT_FEE, ha as getRefundDepositInstruction, hc as getClearUserFeeOverrideInstructionDataCodec, hi as getSetDelaysInstructionDataCodec, hl as findBundleAssetAuthorityPda, hn as getStartDistributionInstructionDataCodec, ho as PAUSE_DEPOSITS_WITHDRAWALS_DISCRIMINATOR, hr as getSetReferrerActiveInstructionDataEncoder, hs as getInitializeBundleDepositorInstructionDataEncoder, ht as NTBUNDLE_ERROR__REFERRER_ACCOUNT_MISMATCH, hu as getBundleTempDataDiscriminatorBytes, i as NTBUNDLE_ERROR__AMOUNT_MUST_BE_BELOW_MAX, ia as parseRemoveStrategyInstruction, ic as getClearUserWithdrawalTimingOverrideDiscriminatorBytes, ii as parseSetKeeperInstruction, il as findSourceBundleTempDataPda, in as getUpdateAllocationsDiscriminatorBytes, io as getProcessDepositInstructionDataDecoder, ir as getSetReferrerConfigDiscriminatorBytes, is as getInitializeBundleMasterAccountInstructionAsync, it as NTBUNDLE_ERROR__PENDING_DEPOSIT_EXISTS, iu as getOracleDataDiscriminatorBytes, j as NTBUNDLE_ERROR__INVALID_RECEIVER, ja as getProcessWithdrawalInstruction, jc as getChangeBundleMasterAdminInstructionDataDecoder, ji as getRequestWithdrawalInstructionDataCodec, jl as fetchAllStrategy, jn as getSetUserWithdrawalTimingOverrideInstructionDataDecoder, jo as MANAGER_WITHDRAW_WITH_SPLIT_DISCRIMINATOR, jr as SET_ORACLE_BUFFER_DISCRIMINATOR, js as getEndDistributionInstructionDataEncoder, jt as NTBUNDLE_ERROR__UNAUTHORIZED_BUNDLE_CREATOR, ju as fetchAllBundleCreatorAccount, k as NTBUNDLE_ERROR__INVALID_ORACLE_UPDATE_TIME_LIMIT, ka as PROCESS_WITHDRAWAL_DISCRIMINATOR, kc as getChangeBundleMasterAdminInstructionAsync, ki as getRequestWithdrawalInstruction, kl as decodeStrategy, kn as getSetUserWithdrawalTimingOverrideInstructionAsync, ko as getNetPendingTransactionsInstructionDataEncoder, kr as getSetOracleMaxAgeInstructionDataEncoder, ks as getEndDistributionInstructionDataCodec, kt as NTBUNDLE_ERROR__TOTAL_ASSET_EXCEED_NEW_MAX_DEPOSIT_AMOUNT, ku as BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, l as NTBUNDLE_ERROR__DEPOSIT_AMOUNT_ZERO, la as getRegisterReferrerInstructionDataCodec, lc as getClearUserWithdrawalTimingOverrideInstructionDataEncoder, li as getSetFeesInstructionDataDecoder, ll as findPendingBundleAssetAuthorityPda, ln as getUpdateAllocationsInstructionDataEncoder, lo as getPerformRefillInstruction, lr as parseSetReferrerConfigInstruction, ls as INITIALIZE_BUNDLE_DEPOSITOR_DISCRIMINATOR, lt as NTBUNDLE_ERROR__RAW_TRANSFER_RECEIVER, lu as fetchAllBundleTempData, m as NTBUNDLE_ERROR__EQUITY_OUT_OF_BUFFER_BOUND, ma as getRefundDepositDiscriminatorBytes, mc as getClearUserFeeOverrideInstructionAsync, mi as getSetDelaysInstruction, ml as findBundleCreatorAccountPda, mn as getStartDistributionInstructionAsync, mo as parsePerformRefillInstruction, mr as getSetReferrerActiveInstructionDataDecoder, ms as getInitializeBundleDepositorInstructionDataDecoder, mt as NTBUNDLE_ERROR__REFERRAL_ALREADY_SET, mu as getBundleTempDataDecoder, n as NTBUNDLE_ERROR__ALLOCATION_BPS_GREATER_THAN_GLOBAL_ALLOCATION_BPS, na as getRemoveStrategyInstructionDataDecoder, nc as parseCloseUserBundleAccountInstruction, ni as getSetKeeperInstructionDataDecoder, nl as findSourceUserBundleAccountPda, nn as parseUpdateOracleInstruction, no as getProcessDepositInstructionAsync, nr as parseSetReferrerRateOverrideInstruction, ns as getInitializeBundleMasterAccountDiscriminatorBytes, nt as NTBUNDLE_ERROR__PAYER_NOT_AUTHORITY, nu as getOracleDataCodec, o as NTBUNDLE_ERROR__BUNDLE_NOT_PERMISSIONNED, oa as getRegisterReferrerDiscriminatorBytes, oc as getClearUserWithdrawalTimingOverrideInstructionAsync, oi as getSetFeesDiscriminatorBytes, ol as findRequestBundleSwitchUserBundleAccountPda, on as getUpdateAllocationsInstructionAsync, oo as parseProcessDepositInstruction, or as getSetReferrerConfigInstructionDataCodec, os as getInitializeBundleMasterAccountInstructionDataDecoder, ot as NTBUNDLE_ERROR__PENDING_TRANSACTIONS_EXIST, ou as getOracleDataSize, p as NTBUNDLE_ERROR__EMPTY_USER_WITHDRAWAL_TIMING_CLEAR_REQUEST, pa as REFUND_DEPOSIT_DISCRIMINATOR, pc as getClearUserFeeOverrideInstruction, pi as getSetDelaysDiscriminatorBytes, pl as findBundleMasterAccountPda, pn as getStartDistributionInstruction, po as getPerformRefillInstructionDataEncoder, pr as getSetReferrerActiveInstructionDataCodec, ps as getInitializeBundleDepositorInstructionDataCodec, pt as NTBUNDLE_ERROR__REFERRALS_DISABLED, pu as getBundleTempDataCodec, q as NTBUNDLE_ERROR__NETTING_NOT_DONE, qa as getProcessReferrerWithdrawalInstruction, qc as getAddStrategyInstructionDataDecoder, qi as getRequestBundleSwitchInstructionDataCodec, ql as getReferrerAccountDiscriminatorBytes, qn as getSetUserFeeOverrideInstructionDataDecoder, qo as INITIALIZE_PERMISSIONED_BUNDLE_DEPOSITOR_DISCRIMINATOR, qr as getSetMaxDepositAmountInstruction, qs as getDistributeToReceiversInstructionDataEncoder, qt as ntbundleProgram, qu as getBundleDecoder, r as NTBUNDLE_ERROR__ALLOCATION_BPS_IS_ZERO, ra as getRemoveStrategyInstructionDataEncoder, rc as CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, ri as getSetKeeperInstructionDataEncoder, rl as findSourceOracleDataPda, rn as UPDATE_ALLOCATIONS_DISCRIMINATOR, ro as getProcessDepositInstructionDataCodec, rr as SET_REFERRER_CONFIG_DISCRIMINATOR, rs as getInitializeBundleMasterAccountInstruction, rt as NTBUNDLE_ERROR__PENDING_DEPOSIT_AMOUNT_ZERO, ru as getOracleDataDecoder, s as NTBUNDLE_ERROR__CALLER_NOT_NEUTRAL_FEE_INCREMENTER, sa as getRegisterReferrerInstruction, sc as getClearUserWithdrawalTimingOverrideInstructionDataCodec, si as getSetFeesInstruction, sl as findReferrerUserBundleAccountPda, sn as getUpdateAllocationsInstructionDataCodec, so as PERFORM_REFILL_DISCRIMINATOR, sr as getSetReferrerConfigInstructionDataDecoder, ss as getInitializeBundleMasterAccountInstructionDataEncoder, st as NTBUNDLE_ERROR__PENDING_WITHDRAWAL_EXISTS, su as BUNDLE_TEMP_DATA_DISCRIMINATOR, t as NTBUNDLE_ERROR__ALLOCATION_AMOUNT_ZERO, ta as getRemoveStrategyInstructionDataCodec, tc as getCloseUserBundleAccountInstructionDataEncoder, ti as getSetKeeperInstructionDataCodec, tl as findStrategyAccountPda, tn as getUpdateOracleInstructionDataEncoder, to as getProcessDepositInstruction, tr as getSetReferrerRateOverrideInstructionDataEncoder, ts as INITIALIZE_BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, tt as NTBUNDLE_ERROR__PAUSED_DEPOSITS_WITHDRAWALS, tu as fetchOracleData, u as NTBUNDLE_ERROR__DISTRIBUTION_ALREADY_STARTED, ua as getRegisterReferrerInstructionDataDecoder, uc as parseClearUserWithdrawalTimingOverrideInstruction, ui as getSetFeesInstructionDataEncoder, ul as findOracleDataPda, un as parseUpdateAllocationsInstruction, uo as getPerformRefillInstructionAsync, ur as SET_REFERRER_ACTIVE_DISCRIMINATOR, us as getInitializeBundleDepositorDiscriminatorBytes, ut as NTBUNDLE_ERROR__RECEIVER_ALREADY_ALLOCATED, uu as fetchAllMaybeBundleTempData, v as NTBUNDLE_ERROR__EXCESSIVE_WITHDRAW_FEE, va as getRefundDepositInstructionDataDecoder, vc as parseClearUserFeeOverrideInstruction, vi as parseSetDelaysInstruction, vl as decodeUserBundleAccount, vn as parseStartDistributionInstruction, vo as getPauseDepositsWithdrawalsInstructionAsync, vr as getSetOracleUpdateTimeLimitDiscriminatorBytes, vs as getInitializeBundleDiscriminatorBytes, vt as NTBUNDLE_ERROR__REFERRER_SHARES_ZERO, vu as BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, w as NTBUNDLE_ERROR__INVALID_ASSET_PRECISION, wa as getReferrerRequestWithdrawInstructionAsync, wc as getChangeManagerInstructionDataEncoder, wi as getSetBundleCreatorInstructionDataDecoder, wl as getUserBundleAccountDecoder, wn as getSetWithdrawalRedemptionScheduleInstructionDataEncoder, wo as getNetPendingTransactionsDiscriminatorBytes, wr as SET_ORACLE_MAX_AGE_DISCRIMINATOR, ws as parseInitializeBundleInstruction, wt as NTBUNDLE_ERROR__SWITCH_ASSET_MINT_MISMATCH, wu as getBundleMasterAccountCodec, x as NTBUNDLE_ERROR__INSUFFICIENT_SHARES_BALANCE, xa as REFERRER_REQUEST_WITHDRAW_DISCRIMINATOR, xc as getChangeManagerInstruction, xi as getSetBundleCreatorInstruction, xl as fetchMaybeUserBundleAccount, xn as getSetWithdrawalRedemptionScheduleInstruction, xo as getPauseDepositsWithdrawalsInstructionDataEncoder, xr as getSetOracleUpdateTimeLimitInstructionDataDecoder, xs as getInitializeBundleInstructionDataCodec, xt as NTBUNDLE_ERROR__STRATEGY_ALREADY_ENABLED, xu as fetchAllMaybeBundleMasterAccount, y as NTBUNDLE_ERROR__INSUFFICIENT_BUNDLE_BALANCE, ya as getRefundDepositInstructionDataEncoder, yc as CHANGE_MANAGER_DISCRIMINATOR, yi as SET_BUNDLE_CREATOR_DISCRIMINATOR, yl as fetchAllMaybeUserBundleAccount, yn as SET_WITHDRAWAL_REDEMPTION_SCHEDULE_DISCRIMINATOR, yo as getPauseDepositsWithdrawalsInstructionDataCodec, yr as getSetOracleUpdateTimeLimitInstruction, ys as getInitializeBundleInstruction, yt as NTBUNDLE_ERROR__REFILL_AMOUNT_EXCEEDED, yu as decodeBundleMasterAccount, z as NTBUNDLE_ERROR__INVALID_WITHDRAWAL_REDEMPTION_SCHEDULE, za as getProcessSwitchInstruction, zc as getApplyFeesToUserInstructionDataDecoder, zi as getRequestDepositInstructionDataCodec, zl as REFERRER_ACCOUNT_DISCRIMINATOR, zn as getSetUserReferrerInstructionDataDecoder, zo as MANAGER_WITHDRAW_DISCRIMINATOR, zr as getSetMinDepositAmountDiscriminatorBytes, zs as getEnableStrategyInstructionDataEncoder, zt as NTBUNDLE_ERROR__WITHDRAWAL_DELAY_NOT_MET, zu as getBundleCreatorAccountSize } from "../generated-Dz86hd_Y.mjs";
|
|
2
|
+
|
|
3
|
+
export { ADD_STRATEGY_DISCRIMINATOR, APPLY_FEES_TO_USER_DISCRIMINATOR, BUNDLE_CREATOR_ACCOUNT_DISCRIMINATOR, BUNDLE_DISCRIMINATOR, BUNDLE_MASTER_ACCOUNT_DISCRIMINATOR, BUNDLE_TEMP_DATA_DISCRIMINATOR, CHANGE_BUNDLE_MASTER_ADMIN_DISCRIMINATOR, CHANGE_MANAGER_DISCRIMINATOR, CLEAR_USER_FEE_OVERRIDE_DISCRIMINATOR, CLEAR_USER_WITHDRAWAL_TIMING_OVERRIDE_DISCRIMINATOR, CLOSE_USER_BUNDLE_ACCOUNT_DISCRIMINATOR, DISTRIBUTE_TO_RECEIVERS_DISCRIMINATOR, ENABLE_STRATEGY_DISCRIMINATOR, END_DISTRIBUTION_DISCRIMINATOR, 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, 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_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, 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, 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_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, UPDATE_ALLOCATIONS_DISCRIMINATOR, UPDATE_ORACLE_DISCRIMINATOR, USER_BUNDLE_ACCOUNT_DISCRIMINATOR, decodeBundle, decodeBundleCreatorAccount, decodeBundleMasterAccount, decodeBundleTempData, decodeOracleData, decodeReferrerAccount, decodeStrategy, decodeUserBundleAccount, 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, fetchStrategy, fetchUserBundleAccount, 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, 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, getDistributeToReceiversDiscriminatorBytes, getDistributeToReceiversInstruction, getDistributeToReceiversInstructionAsync, getDistributeToReceiversInstructionDataCodec, getDistributeToReceiversInstructionDataDecoder, getDistributeToReceiversInstructionDataEncoder, 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, getProcessDepositDiscriminatorBytes, getProcessDepositInstruction, getProcessDepositInstructionAsync, getProcessDepositInstructionDataCodec, getProcessDepositInstructionDataDecoder, getProcessDepositInstructionDataEncoder, getProcessReferrerWithdrawalDiscriminatorBytes, getProcessReferrerWithdrawalInstruction, getProcessReferrerWithdrawalInstructionAsync, getProcessReferrerWithdrawalInstructionDataCodec, getProcessReferrerWithdrawalInstructionDataDecoder, getProcessReferrerWithdrawalInstructionDataEncoder, getProcessSwitchDiscriminatorBytes, getProcessSwitchInstruction, getProcessSwitchInstructionAsync, getProcessSwitchInstructionDataCodec, getProcessSwitchInstructionDataDecoder, getProcessSwitchInstructionDataEncoder, getProcessWithdrawalDiscriminatorBytes, getProcessWithdrawalInstruction, getProcessWithdrawalInstructionAsync, getProcessWithdrawalInstructionDataCodec, getProcessWithdrawalInstructionDataDecoder, getProcessWithdrawalInstructionDataEncoder, 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, 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, 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, identifyNtbundleAccount, identifyNtbundleInstruction, isNtbundleError, ntbundleProgram, parseAddStrategyInstruction, 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, parseSetReferrerActiveInstruction, parseSetReferrerConfigInstruction, parseSetReferrerRateOverrideInstruction, parseSetUserFeeOverrideInstruction, parseSetUserReferrerInstruction, parseSetUserWithdrawalTimingOverrideInstruction, parseSetWithdrawalRedemptionScheduleInstruction, parseStartDistributionInstruction, parseUpdateAllocationsInstruction, parseUpdateOracleInstruction };
|