@reflectmoney/stable.ts 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/classes/ApiClient.d.ts +56 -0
- package/dist/classes/PdaClient.d.ts +131 -0
- package/dist/classes/Reflect.d.ts +7 -0
- package/dist/classes/ReflectKeeper.d.ts +105 -0
- package/dist/classes/ReflectTokenisedBond.d.ts +75 -0
- package/dist/classes/Stablecoin.d.ts +219 -0
- package/dist/classes/index.d.ts +4 -0
- package/dist/constants/drift.d.ts +6 -0
- package/dist/constants/index.d.ts +8 -0
- package/dist/constants/jupiter.d.ts +4 -0
- package/dist/constants/lookupTables.d.ts +4 -0
- package/dist/constants/lst.d.ts +3 -0
- package/dist/constants/pyth.d.ts +1 -0
- package/dist/constants/usdc.d.ts +6 -0
- package/dist/constants/wsol.d.ts +6 -0
- package/dist/errors/ReflectError.d.ts +4 -0
- package/dist/generated/reflect_main/accounts/DriftJlpController.d.ts +114 -0
- package/dist/generated/reflect_main/accounts/DriftLstController.d.ts +108 -0
- package/dist/generated/reflect_main/accounts/DriftUsdcController.d.ts +126 -0
- package/dist/generated/reflect_main/accounts/Main.d.ts +110 -0
- package/dist/generated/reflect_main/accounts/PerpMarket.d.ts +226 -0
- package/dist/generated/reflect_main/accounts/PrelaunchOracle.d.ts +130 -0
- package/dist/generated/reflect_main/accounts/PythLazerOracle.d.ts +124 -0
- package/dist/generated/reflect_main/accounts/RebalanceLst.d.ts +111 -0
- package/dist/generated/reflect_main/accounts/SpotMarket.d.ts +377 -0
- package/dist/generated/reflect_main/accounts/User.d.ts +221 -0
- package/dist/generated/reflect_main/accounts/UserPermissions.d.ts +106 -0
- package/dist/generated/reflect_main/accounts/UserStats.d.ts +211 -0
- package/dist/generated/reflect_main/accounts/index.d.ts +38 -0
- package/dist/generated/reflect_main/errors/index.d.ts +969 -0
- package/dist/generated/reflect_main/index.d.ts +19 -0
- package/dist/generated/reflect_main/instructions/addLstDrift.d.ts +49 -0
- package/dist/generated/reflect_main/instructions/addSubAccount.d.ts +54 -0
- package/dist/generated/reflect_main/instructions/captureSpreadDrift.d.ts +66 -0
- package/dist/generated/reflect_main/instructions/captureSpreadDriftS1.d.ts +58 -0
- package/dist/generated/reflect_main/instructions/createAdminAccount.d.ts +51 -0
- package/dist/generated/reflect_main/instructions/createUserStatsAccount.d.ts +52 -0
- package/dist/generated/reflect_main/instructions/depositDrift.d.ts +73 -0
- package/dist/generated/reflect_main/instructions/freezeProgram.d.ts +54 -0
- package/dist/generated/reflect_main/instructions/freezeProtocolAction.d.ts +55 -0
- package/dist/generated/reflect_main/instructions/freezeStrategyAction.d.ts +58 -0
- package/dist/generated/reflect_main/instructions/index.d.ts +34 -0
- package/dist/generated/reflect_main/instructions/initDriftAccountsS1.d.ts +54 -0
- package/dist/generated/reflect_main/instructions/initDriftControllerS1.d.ts +58 -0
- package/dist/generated/reflect_main/instructions/initDriftControllerS3.d.ts +58 -0
- package/dist/generated/reflect_main/instructions/initMain.d.ts +43 -0
- package/dist/generated/reflect_main/instructions/mintDriftS1.d.ts +86 -0
- package/dist/generated/reflect_main/instructions/mintDriftS3.d.ts +86 -0
- package/dist/generated/reflect_main/instructions/processSwapDeposit.d.ts +69 -0
- package/dist/generated/reflect_main/instructions/processSwapWithdraw.d.ts +69 -0
- package/dist/generated/reflect_main/instructions/redeemDriftS1.d.ts +87 -0
- package/dist/generated/reflect_main/instructions/redeemDriftS3.d.ts +87 -0
- package/dist/generated/reflect_main/instructions/settlePnl.d.ts +55 -0
- package/dist/generated/reflect_main/instructions/settlePnlMulti.d.ts +65 -0
- package/dist/generated/reflect_main/instructions/suspendSplProtocol.d.ts +54 -0
- package/dist/generated/reflect_main/instructions/suspendSplStrategy.d.ts +56 -0
- package/dist/generated/reflect_main/instructions/swapOrca.d.ts +81 -0
- package/dist/generated/reflect_main/instructions/swapOrcaTwoHop.d.ts +101 -0
- package/dist/generated/reflect_main/instructions/updateActionRoleProtocol.d.ts +58 -0
- package/dist/generated/reflect_main/instructions/updateActionRoleStrategy.d.ts +60 -0
- package/dist/generated/reflect_main/instructions/updateAttenuation.d.ts +57 -0
- package/dist/generated/reflect_main/instructions/updateCap.d.ts +55 -0
- package/dist/generated/reflect_main/instructions/updateRebalanceSlippage.d.ts +55 -0
- package/dist/generated/reflect_main/instructions/updateRecipients.d.ts +56 -0
- package/dist/generated/reflect_main/instructions/updateRoleHolderProtocol.d.ts +60 -0
- package/dist/generated/reflect_main/instructions/updateRoleHolderStrategy.d.ts +60 -0
- package/dist/generated/reflect_main/types/AMM.d.ts +102 -0
- package/dist/generated/reflect_main/types/AccKey.d.ts +15 -0
- package/dist/generated/reflect_main/types/AccessControl.d.ts +18 -0
- package/dist/generated/reflect_main/types/AccessMap.d.ts +17 -0
- package/dist/generated/reflect_main/types/Action.d.ts +35 -0
- package/dist/generated/reflect_main/types/ActionMapping.d.ts +19 -0
- package/dist/generated/reflect_main/types/AssetTier.d.ts +23 -0
- package/dist/generated/reflect_main/types/Attenuation.d.ts +16 -0
- package/dist/generated/reflect_main/types/BalanceType.d.ts +20 -0
- package/dist/generated/reflect_main/types/Capture.d.ts +17 -0
- package/dist/generated/reflect_main/types/ContractTier.d.ts +24 -0
- package/dist/generated/reflect_main/types/ContractType.d.ts +20 -0
- package/dist/generated/reflect_main/types/CorpAction.d.ts +19 -0
- package/dist/generated/reflect_main/types/CustodyInfo.d.ts +20 -0
- package/dist/generated/reflect_main/types/DirectionCollateral.d.ts +20 -0
- package/dist/generated/reflect_main/types/DirectionPosition.d.ts +20 -0
- package/dist/generated/reflect_main/types/DriftControllerBase.d.ts +15 -0
- package/dist/generated/reflect_main/types/DriftJlpControllerFixedAccounts.d.ts +18 -0
- package/dist/generated/reflect_main/types/DriftLstData.d.ts +17 -0
- package/dist/generated/reflect_main/types/Ema.d.ts +17 -0
- package/dist/generated/reflect_main/types/Externals.d.ts +16 -0
- package/dist/generated/reflect_main/types/FlowControl.d.ts +17 -0
- package/dist/generated/reflect_main/types/HistoricalIndexData.d.ts +19 -0
- package/dist/generated/reflect_main/types/HistoricalOracleData.d.ts +20 -0
- package/dist/generated/reflect_main/types/Holding.d.ts +21 -0
- package/dist/generated/reflect_main/types/Holdings.d.ts +17 -0
- package/dist/generated/reflect_main/types/InsuranceClaim.d.ts +19 -0
- package/dist/generated/reflect_main/types/InsuranceFund.d.ts +24 -0
- package/dist/generated/reflect_main/types/JlpRebalanceSettings.d.ts +15 -0
- package/dist/generated/reflect_main/types/KillSwitch.d.ts +15 -0
- package/dist/generated/reflect_main/types/LevelRoles.d.ts +16 -0
- package/dist/generated/reflect_main/types/MarketStatus.d.ts +27 -0
- package/dist/generated/reflect_main/types/MarketType.d.ts +20 -0
- package/dist/generated/reflect_main/types/ModifyOrderParams.d.ts +32 -0
- package/dist/generated/reflect_main/types/ModifyOrderPolicy.d.ts +20 -0
- package/dist/generated/reflect_main/types/Movements.d.ts +19 -0
- package/dist/generated/reflect_main/types/OracleGuardRails.d.ts +18 -0
- package/dist/generated/reflect_main/types/OracleSource.d.ts +34 -0
- package/dist/generated/reflect_main/types/OracleValidity.d.ts +25 -0
- package/dist/generated/reflect_main/types/Order.d.ts +43 -0
- package/dist/generated/reflect_main/types/OrderDirection.d.ts +20 -0
- package/dist/generated/reflect_main/types/OrderParams.d.ts +36 -0
- package/dist/generated/reflect_main/types/OrderStatus.d.ts +22 -0
- package/dist/generated/reflect_main/types/OrderTriggerCondition.d.ts +22 -0
- package/dist/generated/reflect_main/types/OrderType.d.ts +23 -0
- package/dist/generated/reflect_main/types/PermissionLevel.d.ts +45 -0
- package/dist/generated/reflect_main/types/PerpHedge.d.ts +17 -0
- package/dist/generated/reflect_main/types/PerpPosition.d.ts +29 -0
- package/dist/generated/reflect_main/types/PoolBalance.d.ts +17 -0
- package/dist/generated/reflect_main/types/Position.d.ts +20 -0
- package/dist/generated/reflect_main/types/PositionDirection.d.ts +20 -0
- package/dist/generated/reflect_main/types/PositionDrift.d.ts +18 -0
- package/dist/generated/reflect_main/types/PostOnlyParam.d.ts +22 -0
- package/dist/generated/reflect_main/types/Price.d.ts +41 -0
- package/dist/generated/reflect_main/types/PriceComp.d.ts +19 -0
- package/dist/generated/reflect_main/types/PriceDivergenceGuardRails.d.ts +16 -0
- package/dist/generated/reflect_main/types/PriceInfo.d.ts +21 -0
- package/dist/generated/reflect_main/types/PriceStatus.d.ts +22 -0
- package/dist/generated/reflect_main/types/PriceType.d.ts +20 -0
- package/dist/generated/reflect_main/types/Program.d.ts +19 -0
- package/dist/generated/reflect_main/types/ProgramStatus.d.ts +20 -0
- package/dist/generated/reflect_main/types/Recipient.d.ts +17 -0
- package/dist/generated/reflect_main/types/Recipients.d.ts +17 -0
- package/dist/generated/reflect_main/types/Role.d.ts +25 -0
- package/dist/generated/reflect_main/types/ShiftCollateral.d.ts +19 -0
- package/dist/generated/reflect_main/types/ShiftPosition.d.ts +17 -0
- package/dist/generated/reflect_main/types/ShortHolding.d.ts +17 -0
- package/dist/generated/reflect_main/types/SplBase.d.ts +17 -0
- package/dist/generated/reflect_main/types/SplMain.d.ts +22 -0
- package/dist/generated/reflect_main/types/Spls.d.ts +17 -0
- package/dist/generated/reflect_main/types/SpotBalanceType.d.ts +20 -0
- package/dist/generated/reflect_main/types/SpotPosition.d.ts +23 -0
- package/dist/generated/reflect_main/types/Status.d.ts +21 -0
- package/dist/generated/reflect_main/types/Strategy.d.ts +32 -0
- package/dist/generated/reflect_main/types/StrategyPadding.d.ts +15 -0
- package/dist/generated/reflect_main/types/StrategyRoleEntry.d.ts +17 -0
- package/dist/generated/reflect_main/types/SubAccount.d.ts +17 -0
- package/dist/generated/reflect_main/types/Update.d.ts +20 -0
- package/dist/generated/reflect_main/types/UserFees.d.ts +20 -0
- package/dist/generated/reflect_main/types/ValidityGuardRails.d.ts +18 -0
- package/dist/generated/reflect_main/types/index.d.ts +80 -0
- package/dist/generated/reflect_tokenised_bonds/accounts/Admin.d.ts +99 -0
- package/dist/generated/reflect_tokenised_bonds/accounts/Config.d.ts +106 -0
- package/dist/generated/reflect_tokenised_bonds/accounts/Vault.d.ts +114 -0
- package/dist/generated/reflect_tokenised_bonds/accounts/index.d.ts +11 -0
- package/dist/generated/reflect_tokenised_bonds/errors/index.d.ts +144 -0
- package/dist/generated/reflect_tokenised_bonds/index.d.ts +19 -0
- package/dist/generated/reflect_tokenised_bonds/instructions/createVault.d.ts +50 -0
- package/dist/generated/reflect_tokenised_bonds/instructions/deposit.d.ts +62 -0
- package/dist/generated/reflect_tokenised_bonds/instructions/index.d.ts +4 -0
- package/dist/generated/reflect_tokenised_bonds/instructions/initialize.d.ts +43 -0
- package/dist/generated/reflect_tokenised_bonds/instructions/withdraw.d.ts +62 -0
- package/dist/generated/reflect_tokenised_bonds/types/DepositArgs.d.ts +17 -0
- package/dist/generated/reflect_tokenised_bonds/types/Permissions.d.ts +21 -0
- package/dist/generated/reflect_tokenised_bonds/types/WithdrawArgs.d.ts +16 -0
- package/dist/generated/reflect_tokenised_bonds/types/index.d.ts +3 -0
- package/dist/helpers/getOrcaQuote.d.ts +3 -0
- package/dist/idl/perpetuals.d.ts +5771 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +1 -0
- package/dist/stablecoins/LstStablecoin.d.ts +103 -0
- package/dist/stablecoins/UsdcPlusStablecoin.d.ts +86 -0
- package/dist/stablecoins/UsdjStablecoin.d.ts +1 -0
- package/dist/stablecoins/index.d.ts +3 -0
- package/dist/types/api.d.ts +1172 -0
- package/dist/types/api.js +6 -0
- package/dist/types/index.d.ts +81 -0
- package/dist/types/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* This type is used to derive the {@link PermissionLevel} type as well as the de/serializer.
|
|
10
|
+
* However don't refer to it in your code but use the {@link PermissionLevel} type instead.
|
|
11
|
+
*
|
|
12
|
+
* @category userTypes
|
|
13
|
+
* @category enums
|
|
14
|
+
* @category generated
|
|
15
|
+
* @private
|
|
16
|
+
*/
|
|
17
|
+
export type PermissionLevelRecord = {
|
|
18
|
+
Protocol: void;
|
|
19
|
+
Strategy: {
|
|
20
|
+
fields: [number];
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Union type respresenting the PermissionLevel data enum defined in Rust.
|
|
25
|
+
*
|
|
26
|
+
* NOTE: that it includes a `__kind` property which allows to narrow types in
|
|
27
|
+
* switch/if statements.
|
|
28
|
+
* Additionally `isPermissionLevel*` type guards are exposed below to narrow to a specific variant.
|
|
29
|
+
*
|
|
30
|
+
* @category userTypes
|
|
31
|
+
* @category enums
|
|
32
|
+
* @category generated
|
|
33
|
+
*/
|
|
34
|
+
export type PermissionLevel = beet.DataEnumKeyAsKind<PermissionLevelRecord>;
|
|
35
|
+
export declare const isPermissionLevelProtocol: (x: PermissionLevel) => x is PermissionLevel & {
|
|
36
|
+
__kind: "Protocol";
|
|
37
|
+
};
|
|
38
|
+
export declare const isPermissionLevelStrategy: (x: PermissionLevel) => x is PermissionLevel & {
|
|
39
|
+
__kind: "Strategy";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @category userTypes
|
|
43
|
+
* @category generated
|
|
44
|
+
*/
|
|
45
|
+
export declare const permissionLevelBeet: beet.FixableBeet<PermissionLevel, PermissionLevel>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as web3 from '@solana/web3.js';
|
|
8
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
9
|
+
export type PerpHedge = {
|
|
10
|
+
key: web3.PublicKey;
|
|
11
|
+
marketIndex: number;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const perpHedgeBeet: beet.BeetArgsStruct<PerpHedge>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
export type PerpPosition = {
|
|
9
|
+
lastCumulativeFundingRate: beet.bignum;
|
|
10
|
+
baseAssetAmount: beet.bignum;
|
|
11
|
+
quoteAssetAmount: beet.bignum;
|
|
12
|
+
quoteBreakEvenAmount: beet.bignum;
|
|
13
|
+
quoteEntryAmount: beet.bignum;
|
|
14
|
+
openBids: beet.bignum;
|
|
15
|
+
openAsks: beet.bignum;
|
|
16
|
+
settledPnl: beet.bignum;
|
|
17
|
+
lpShares: beet.bignum;
|
|
18
|
+
lastBaseAssetAmountPerLp: beet.bignum;
|
|
19
|
+
lastQuoteAssetAmountPerLp: beet.bignum;
|
|
20
|
+
remainderBaseAssetAmount: number;
|
|
21
|
+
marketIndex: number;
|
|
22
|
+
openOrders: number;
|
|
23
|
+
perLpBase: number;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @category userTypes
|
|
27
|
+
* @category generated
|
|
28
|
+
*/
|
|
29
|
+
export declare const perpPositionBeet: beet.BeetArgsStruct<PerpPosition>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
export type PoolBalance = {
|
|
9
|
+
scaledBalance: beet.bignum;
|
|
10
|
+
marketIndex: number;
|
|
11
|
+
padding: number[];
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const poolBalanceBeet: beet.BeetArgsStruct<PoolBalance>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
export type Position = {
|
|
9
|
+
dollarValue: beet.bignum;
|
|
10
|
+
desirablePercent: beet.bignum;
|
|
11
|
+
currentPercent: beet.bignum;
|
|
12
|
+
spotAmount: beet.bignum;
|
|
13
|
+
assetPrice: beet.COption<beet.bignum>;
|
|
14
|
+
baseAssetPrecision: beet.COption<number>;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* @category userTypes
|
|
18
|
+
* @category generated
|
|
19
|
+
*/
|
|
20
|
+
export declare const positionBeet: beet.FixableBeetArgsStruct<Position>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum PositionDirection {
|
|
13
|
+
Long = 0,
|
|
14
|
+
Short = 1
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @category userTypes
|
|
18
|
+
* @category generated
|
|
19
|
+
*/
|
|
20
|
+
export declare const positionDirectionBeet: beet.FixedSizeBeet<PositionDirection, PositionDirection>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { Position } from './Position';
|
|
9
|
+
export type PositionDrift = {
|
|
10
|
+
position: Position;
|
|
11
|
+
marketIndex: number;
|
|
12
|
+
userAccountIndex: number;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @category userTypes
|
|
16
|
+
* @category generated
|
|
17
|
+
*/
|
|
18
|
+
export declare const positionDriftBeet: beet.FixableBeetArgsStruct<PositionDrift>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum PostOnlyParam {
|
|
13
|
+
None = 0,
|
|
14
|
+
MustPostOnly = 1,
|
|
15
|
+
TryPostOnly = 2,
|
|
16
|
+
Slide = 3
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @category userTypes
|
|
20
|
+
* @category generated
|
|
21
|
+
*/
|
|
22
|
+
export declare const postOnlyParamBeet: beet.FixedSizeBeet<PostOnlyParam, PostOnlyParam>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { PriceType } from './PriceType';
|
|
9
|
+
import { Ema } from './Ema';
|
|
10
|
+
import { AccKey } from './AccKey';
|
|
11
|
+
import { PriceInfo } from './PriceInfo';
|
|
12
|
+
import { PriceComp } from './PriceComp';
|
|
13
|
+
export type Price = {
|
|
14
|
+
magic: number;
|
|
15
|
+
ver: number;
|
|
16
|
+
atype: number;
|
|
17
|
+
size: number;
|
|
18
|
+
ptype: PriceType;
|
|
19
|
+
expo: number;
|
|
20
|
+
num: number;
|
|
21
|
+
numQt: number;
|
|
22
|
+
lastSlot: beet.bignum;
|
|
23
|
+
validSlot: beet.bignum;
|
|
24
|
+
twap: Ema;
|
|
25
|
+
twac: Ema;
|
|
26
|
+
drv1: beet.bignum;
|
|
27
|
+
drv2: beet.bignum;
|
|
28
|
+
prod: AccKey;
|
|
29
|
+
next: AccKey;
|
|
30
|
+
prevSlot: beet.bignum;
|
|
31
|
+
prevPrice: beet.bignum;
|
|
32
|
+
prevConf: beet.bignum;
|
|
33
|
+
drv3: beet.bignum;
|
|
34
|
+
agg: PriceInfo;
|
|
35
|
+
comp: PriceComp[];
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @category userTypes
|
|
39
|
+
* @category generated
|
|
40
|
+
*/
|
|
41
|
+
export declare const priceBeet: beet.BeetArgsStruct<Price>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { AccKey } from './AccKey';
|
|
9
|
+
import { PriceInfo } from './PriceInfo';
|
|
10
|
+
export type PriceComp = {
|
|
11
|
+
publisher: AccKey;
|
|
12
|
+
agg: PriceInfo;
|
|
13
|
+
latest: PriceInfo;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @category userTypes
|
|
17
|
+
* @category generated
|
|
18
|
+
*/
|
|
19
|
+
export declare const priceCompBeet: beet.BeetArgsStruct<PriceComp>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
export type PriceDivergenceGuardRails = {
|
|
9
|
+
markOraclePercentDivergence: beet.bignum;
|
|
10
|
+
oracleTwap5minPercentDivergence: beet.bignum;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @category userTypes
|
|
14
|
+
* @category generated
|
|
15
|
+
*/
|
|
16
|
+
export declare const priceDivergenceGuardRailsBeet: beet.BeetArgsStruct<PriceDivergenceGuardRails>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { PriceStatus } from './PriceStatus';
|
|
9
|
+
import { CorpAction } from './CorpAction';
|
|
10
|
+
export type PriceInfo = {
|
|
11
|
+
price: beet.bignum;
|
|
12
|
+
conf: beet.bignum;
|
|
13
|
+
status: PriceStatus;
|
|
14
|
+
corpAct: CorpAction;
|
|
15
|
+
pubSlot: beet.bignum;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @category userTypes
|
|
19
|
+
* @category generated
|
|
20
|
+
*/
|
|
21
|
+
export declare const priceInfoBeet: beet.BeetArgsStruct<PriceInfo>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum PriceStatus {
|
|
13
|
+
Unknown = 0,
|
|
14
|
+
Trading = 1,
|
|
15
|
+
Halted = 2,
|
|
16
|
+
Auction = 3
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @category userTypes
|
|
20
|
+
* @category generated
|
|
21
|
+
*/
|
|
22
|
+
export declare const priceStatusBeet: beet.FixedSizeBeet<PriceStatus, PriceStatus>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum PriceType {
|
|
13
|
+
Unknown = 0,
|
|
14
|
+
Price = 1
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @category userTypes
|
|
18
|
+
* @category generated
|
|
19
|
+
*/
|
|
20
|
+
export declare const priceTypeBeet: beet.FixedSizeBeet<PriceType, PriceType>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as web3 from '@solana/web3.js';
|
|
8
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
9
|
+
import { ProgramStatus } from './ProgramStatus';
|
|
10
|
+
export type Program = {
|
|
11
|
+
index: number;
|
|
12
|
+
id: web3.PublicKey;
|
|
13
|
+
status: ProgramStatus;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @category userTypes
|
|
17
|
+
* @category generated
|
|
18
|
+
*/
|
|
19
|
+
export declare const programBeet: beet.BeetArgsStruct<Program>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum ProgramStatus {
|
|
13
|
+
Active = 0,
|
|
14
|
+
Suspended = 1
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @category userTypes
|
|
18
|
+
* @category generated
|
|
19
|
+
*/
|
|
20
|
+
export declare const programStatusBeet: beet.FixedSizeBeet<ProgramStatus, ProgramStatus>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as web3 from '@solana/web3.js';
|
|
8
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
9
|
+
export type Recipient = {
|
|
10
|
+
address: web3.PublicKey;
|
|
11
|
+
cut: number;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const recipientBeet: beet.BeetArgsStruct<Recipient>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { Recipient } from './Recipient';
|
|
9
|
+
export type Recipients = {
|
|
10
|
+
recipients: Recipient[];
|
|
11
|
+
recipientsCount: number;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const recipientsBeet: beet.BeetArgsStruct<Recipients>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum Role {
|
|
13
|
+
UNSET = 0,
|
|
14
|
+
PUBLIC = 1,
|
|
15
|
+
TESTEE = 2,
|
|
16
|
+
FREEZE = 3,
|
|
17
|
+
CRANK = 4,
|
|
18
|
+
MANAGER = 5,
|
|
19
|
+
SUPREMO = 6
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @category userTypes
|
|
23
|
+
* @category generated
|
|
24
|
+
*/
|
|
25
|
+
export declare const roleBeet: beet.FixedSizeBeet<Role, Role>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import * as web3 from '@solana/web3.js';
|
|
9
|
+
import { DirectionCollateral } from './DirectionCollateral';
|
|
10
|
+
export type ShiftCollateral = {
|
|
11
|
+
amount: beet.bignum;
|
|
12
|
+
direction: DirectionCollateral;
|
|
13
|
+
mint: web3.PublicKey;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @category userTypes
|
|
17
|
+
* @category generated
|
|
18
|
+
*/
|
|
19
|
+
export declare const shiftCollateralBeet: beet.BeetArgsStruct<ShiftCollateral>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { DirectionPosition } from './DirectionPosition';
|
|
9
|
+
export type ShiftPosition = {
|
|
10
|
+
amount: beet.bignum;
|
|
11
|
+
direction: DirectionPosition;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const shiftPositionBeet: beet.BeetArgsStruct<ShiftPosition>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
export type ShortHolding = {
|
|
9
|
+
amount: beet.bignum;
|
|
10
|
+
price: beet.bignum;
|
|
11
|
+
dollarValue: beet.bignum;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const shortHoldingBeet: beet.BeetArgsStruct<ShortHolding>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
export type SplBase = {
|
|
9
|
+
index: number;
|
|
10
|
+
splMainIndex: number;
|
|
11
|
+
depositsSuspended: boolean;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const splBaseBeet: beet.BeetArgsStruct<SplBase>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as web3 from '@solana/web3.js';
|
|
8
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
9
|
+
export type SplMain = {
|
|
10
|
+
mainSplIndex: number;
|
|
11
|
+
mint: web3.PublicKey;
|
|
12
|
+
oracle: web3.PublicKey;
|
|
13
|
+
fee: beet.bignum;
|
|
14
|
+
precision: number;
|
|
15
|
+
strategyIndices: Uint8Array;
|
|
16
|
+
depositsSuspended: boolean;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* @category userTypes
|
|
20
|
+
* @category generated
|
|
21
|
+
*/
|
|
22
|
+
export declare const splMainBeet: beet.FixableBeetArgsStruct<SplMain>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { SplBase } from './SplBase';
|
|
9
|
+
export type Spls = {
|
|
10
|
+
spls: SplBase[];
|
|
11
|
+
splCount: number;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @category userTypes
|
|
15
|
+
* @category generated
|
|
16
|
+
*/
|
|
17
|
+
export declare const splsBeet: beet.BeetArgsStruct<Spls>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum SpotBalanceType {
|
|
13
|
+
Deposit = 0,
|
|
14
|
+
Borrow = 1
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @category userTypes
|
|
18
|
+
* @category generated
|
|
19
|
+
*/
|
|
20
|
+
export declare const spotBalanceTypeBeet: beet.FixedSizeBeet<SpotBalanceType, SpotBalanceType>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
import { SpotBalanceType } from './SpotBalanceType';
|
|
9
|
+
export type SpotPosition = {
|
|
10
|
+
scaledBalance: beet.bignum;
|
|
11
|
+
openBids: beet.bignum;
|
|
12
|
+
openAsks: beet.bignum;
|
|
13
|
+
cumulativeDeposits: beet.bignum;
|
|
14
|
+
marketIndex: number;
|
|
15
|
+
balanceType: SpotBalanceType;
|
|
16
|
+
openOrders: number;
|
|
17
|
+
padding: number[];
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* @category userTypes
|
|
21
|
+
* @category generated
|
|
22
|
+
*/
|
|
23
|
+
export declare const spotPositionBeet: beet.BeetArgsStruct<SpotPosition>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
8
|
+
/**
|
|
9
|
+
* @category enums
|
|
10
|
+
* @category generated
|
|
11
|
+
*/
|
|
12
|
+
export declare enum Status {
|
|
13
|
+
ACTIVE = 0,
|
|
14
|
+
LIQUIDATED = 1,
|
|
15
|
+
CASHEDOUT = 2
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @category userTypes
|
|
19
|
+
* @category generated
|
|
20
|
+
*/
|
|
21
|
+
export declare const statusBeet: beet.FixedSizeBeet<Status, Status>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was GENERATED using the solita package.
|
|
3
|
+
* Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality.
|
|
4
|
+
*
|
|
5
|
+
* See: https://github.com/metaplex-foundation/solita
|
|
6
|
+
*/
|
|
7
|
+
import * as web3 from '@solana/web3.js';
|
|
8
|
+
import * as beet from '@metaplex-foundation/beet';
|
|
9
|
+
import { Status } from './Status';
|
|
10
|
+
import { AccessControl } from './AccessControl';
|
|
11
|
+
import { FlowControl } from './FlowControl';
|
|
12
|
+
import { Spls } from './Spls';
|
|
13
|
+
import { Recipients } from './Recipients';
|
|
14
|
+
import { StrategyPadding } from './StrategyPadding';
|
|
15
|
+
export type Strategy = {
|
|
16
|
+
bump: number;
|
|
17
|
+
index: number;
|
|
18
|
+
status: Status;
|
|
19
|
+
mint: web3.PublicKey;
|
|
20
|
+
cap: beet.bignum;
|
|
21
|
+
accessControl: AccessControl;
|
|
22
|
+
flow: FlowControl;
|
|
23
|
+
spls: Spls;
|
|
24
|
+
recipients: Recipients;
|
|
25
|
+
rebalanceSlipagge: number;
|
|
26
|
+
reserved: StrategyPadding;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @category userTypes
|
|
30
|
+
* @category generated
|
|
31
|
+
*/
|
|
32
|
+
export declare const strategyBeet: beet.BeetArgsStruct<Strategy>;
|