@scallop-io/sui-scallop-sdk 2.0.0-alpha.8 → 2.0.0
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 +28 -5
- package/dist/index.d.mts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +29 -31
- package/dist/index.mjs +4 -6
- package/package.json +1 -2
- package/src/builders/oracles/index.ts +13 -13
- package/src/builders/oracles/switchboard.ts +240 -240
- package/src/constants/testAddress.ts +9 -5
- package/src/models/scallopConstants.ts +14 -3
- package/src/models/scallopUtils.ts +3 -1
- package/src/queries/portfolioQuery.ts +3 -2
- package/src/types/constant/common.ts +1 -0
- package/src/types/query/portfolio.ts +3 -2
package/README.md
CHANGED
|
@@ -45,6 +45,7 @@ This SDK is used to interact with [sui-lending-protocol](https://github.com/scal
|
|
|
45
45
|
```typescript
|
|
46
46
|
// Create an instance quickly through the`Scallop` class to construct other models.
|
|
47
47
|
const scallopSDK = new Scallop({
|
|
48
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
48
49
|
networkType: 'mainnet',
|
|
49
50
|
...
|
|
50
51
|
});
|
|
@@ -59,6 +60,7 @@ This SDK is used to interact with [sui-lending-protocol](https://github.com/scal
|
|
|
59
60
|
// Or, you can choose to import the class directly to create an instance.
|
|
60
61
|
import {
|
|
61
62
|
ScallopAddress,
|
|
63
|
+
ScallopConstants,
|
|
62
64
|
ScallopBuilder,
|
|
63
65
|
ScallopQuery,
|
|
64
66
|
ScallopUtils,
|
|
@@ -66,14 +68,34 @@ This SDK is used to interact with [sui-lending-protocol](https://github.com/scal
|
|
|
66
68
|
ScallopClient,
|
|
67
69
|
} from '@scallop-io/sui-scallop-sdk'
|
|
68
70
|
|
|
69
|
-
const scallopAddress = new ScallopAddress(
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
const
|
|
71
|
+
const scallopAddress = new ScallopAddress(
|
|
72
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
73
|
+
...
|
|
74
|
+
);
|
|
75
|
+
const scallopConstants = new ScallopConstants(
|
|
76
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
77
|
+
...
|
|
78
|
+
);
|
|
79
|
+
const ScallopQuery = new ScallopQuery(
|
|
80
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
81
|
+
...
|
|
82
|
+
);
|
|
83
|
+
const ScallopBuilder = new ScallopBuilder(
|
|
84
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
85
|
+
...
|
|
86
|
+
);
|
|
87
|
+
const ScallopUtils = new ScallopUtils(
|
|
88
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
89
|
+
...
|
|
90
|
+
);
|
|
91
|
+
const scallopClient = new ScallopClient(
|
|
92
|
+
addressId: '675c65cd301dd817ea262e76',
|
|
93
|
+
...
|
|
94
|
+
);
|
|
74
95
|
const ScallopIndexer = new ScallopIndexer();
|
|
75
96
|
// Remember to initialize the instance before using it
|
|
76
97
|
await scallopAddress.read();
|
|
98
|
+
await scallopConstants.init();
|
|
77
99
|
await ScallopQuery.init();
|
|
78
100
|
await ScallopBuilder.init();
|
|
79
101
|
await ScallopUtils.init();
|
|
@@ -90,6 +112,7 @@ Below we will give a brief introduction to these instances respectively, and int
|
|
|
90
112
|
- [Use Scallop Builder](./document/builder.md)
|
|
91
113
|
- [Use Scallop Utils](./document/utils.md)
|
|
92
114
|
- [Use Scallop Indexer](./document/indexer.md)
|
|
115
|
+
- [Use Scallop Indexer](./document/constants.md)
|
|
93
116
|
|
|
94
117
|
For the original codes, please refer to `test` folder.
|
|
95
118
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1998,6 +1998,7 @@ type Whitelist = {
|
|
|
1998
1998
|
wormhole: Set<string>;
|
|
1999
1999
|
oracles: Set<string>;
|
|
2000
2000
|
borrowIncentiveRewards: Set<string>;
|
|
2001
|
+
rewardsAsPoint: Set<string>;
|
|
2001
2002
|
pythEndpoints: Set<string>;
|
|
2002
2003
|
deprecated: Set<string>;
|
|
2003
2004
|
};
|
|
@@ -2798,12 +2799,13 @@ type ObligationDebt = {
|
|
|
2798
2799
|
availableRepayAmount: number;
|
|
2799
2800
|
availableRepayCoin: number;
|
|
2800
2801
|
};
|
|
2801
|
-
type
|
|
2802
|
+
type ObligationBorrowIncentiveReward = {
|
|
2802
2803
|
coinName: string;
|
|
2803
2804
|
coinType: string;
|
|
2804
2805
|
symbol: string;
|
|
2805
2806
|
coinDecimal: number;
|
|
2806
2807
|
coinPrice: number;
|
|
2808
|
+
weightedBorrowAmount: number;
|
|
2807
2809
|
availableClaimCoin: number;
|
|
2808
2810
|
availableClaimAmount: number;
|
|
2809
2811
|
boostValue: number;
|
|
@@ -2814,7 +2816,7 @@ type ObligationBorrowIncentive = {
|
|
|
2814
2816
|
symbol: string;
|
|
2815
2817
|
coinDecimal: number;
|
|
2816
2818
|
coinPrice: number;
|
|
2817
|
-
rewards:
|
|
2819
|
+
rewards: ObligationBorrowIncentiveReward[];
|
|
2818
2820
|
};
|
|
2819
2821
|
type TotalValueLocked = {
|
|
2820
2822
|
supplyLendingValue: number;
|
|
@@ -3063,4 +3065,4 @@ declare const MIN_TOP_UP_AMOUNT: 1000000000;
|
|
|
3063
3065
|
|
|
3064
3066
|
declare const xOracleList: xOracleListType;
|
|
3065
3067
|
|
|
3066
|
-
export { API_BASE_URL, type AddressStringPath, type AddressesInterface, type AssetCoinIds, type AssetCoins, type BalanceSheet, type BaseScallopTxBlock, type BorrowDynamic, type BorrowFee, type BorrowIncentiveAccountKey, type BorrowIncentiveAccounts, type BorrowIncentiveAccountsQueryInterface, type BorrowIncentiveIds, type BorrowIncentiveNormalMethods, type BorrowIncentivePool, type BorrowIncentivePoolPoints, type BorrowIncentivePools, type BorrowIncentivePoolsQueryInterface, type BorrowIncentiveQuickMethods, type BorrowIncentiveRewardCoins, type BorrowIncentiveTxBlock, type CalculatedBorrowIncentivePoolPointData, type CalculatedMarketCollateralData, type CalculatedMarketPoolData, type CalculatedSpoolData, type CalculatedSpoolRewardPoolData, type CoinAmounts, type CoinPrices, type CoinWrappedType, type Coins, type CollateralStat, type CoreIds, type CoreNormalMethods, type CoreQuickMethods, type CoreTxBlock, DEFAULT_CACHE_OPTIONS, type GenerateBorrowIncentiveNormalMethod, type GenerateBorrowIncentiveQuickMethod, type GenerateCoreNormalMethod, type GenerateCoreQuickMethod, type GenerateLoyaltyProgramNormalMethod, type GenerateLoyaltyProgramQuickMethod, type GenerateSCoinNormalMethod, type GenerateSCoinQuickMethod, type GenerateSpoolNormalMethod, type GenerateSpoolQuickMethod, type GenerateVeScaNormalMethod, type GenerateVeScaQuickMethod, IS_VE_SCA_TEST, type InterestModel, type Lending, type Lendings, type LoyaltyProgramIds, type LoyaltyProgramInfo, type LoyaltyProgramNormalMethods, type LoyaltyProgramQuickMethods, type LoyaltyProgramTxBlock, MAX_LOCK_DURATION, MAX_LOCK_ROUNDS, MIN_INITIAL_LOCK_AMOUNT, MIN_TOP_UP_AMOUNT, type Market, type MarketCoinAmounts, type MarketCoins, type MarketCollateral, type MarketCollaterals, type MarketPool, type MarketPools, type MarketQueryInterface, type NestedResult, OLD_BORROW_INCENTIVE_PROTOCOL_ID, type Obligation, type ObligationAccount, type ObligationAccounts, type
|
|
3068
|
+
export { API_BASE_URL, type AddressStringPath, type AddressesInterface, type AssetCoinIds, type AssetCoins, type BalanceSheet, type BaseScallopTxBlock, type BorrowDynamic, type BorrowFee, type BorrowIncentiveAccountKey, type BorrowIncentiveAccounts, type BorrowIncentiveAccountsQueryInterface, type BorrowIncentiveIds, type BorrowIncentiveNormalMethods, type BorrowIncentivePool, type BorrowIncentivePoolPoints, type BorrowIncentivePools, type BorrowIncentivePoolsQueryInterface, type BorrowIncentiveQuickMethods, type BorrowIncentiveRewardCoins, type BorrowIncentiveTxBlock, type CalculatedBorrowIncentivePoolPointData, type CalculatedMarketCollateralData, type CalculatedMarketPoolData, type CalculatedSpoolData, type CalculatedSpoolRewardPoolData, type CoinAmounts, type CoinPrices, type CoinWrappedType, type Coins, type CollateralStat, type CoreIds, type CoreNormalMethods, type CoreQuickMethods, type CoreTxBlock, DEFAULT_CACHE_OPTIONS, type GenerateBorrowIncentiveNormalMethod, type GenerateBorrowIncentiveQuickMethod, type GenerateCoreNormalMethod, type GenerateCoreQuickMethod, type GenerateLoyaltyProgramNormalMethod, type GenerateLoyaltyProgramQuickMethod, type GenerateSCoinNormalMethod, type GenerateSCoinQuickMethod, type GenerateSpoolNormalMethod, type GenerateSpoolQuickMethod, type GenerateVeScaNormalMethod, type GenerateVeScaQuickMethod, IS_VE_SCA_TEST, type InterestModel, type Lending, type Lendings, type LoyaltyProgramIds, type LoyaltyProgramInfo, type LoyaltyProgramNormalMethods, type LoyaltyProgramQuickMethods, type LoyaltyProgramTxBlock, MAX_LOCK_DURATION, MAX_LOCK_ROUNDS, MIN_INITIAL_LOCK_AMOUNT, MIN_TOP_UP_AMOUNT, type Market, type MarketCoinAmounts, type MarketCoins, type MarketCollateral, type MarketCollaterals, type MarketPool, type MarketPools, type MarketQueryInterface, type NestedResult, OLD_BORROW_INCENTIVE_PROTOCOL_ID, type Obligation, type ObligationAccount, type ObligationAccounts, type ObligationBorrowIncentive, type ObligationBorrowIncentiveReward, type ObligationCollateral, type ObligationDebt, type ObligationQueryInterface, type OptionalKeys, type OriginBorrowIncentiveAccountData, type OriginBorrowIncentiveAccountPoolData, type OriginBorrowIncentivePoolData, type OriginBorrowIncentivePoolPointData, type OriginMarketCollateralData, type OriginMarketPoolData, type OriginSpoolData, type OriginSpoolRewardPoolData, type ParsedBorrowIncentiveAccountData, type ParsedBorrowIncentiveAccountPoolData, type ParsedBorrowIncentivePoolData, type ParsedBorrowIncentivePoolPointData, type ParsedMarketCollateralData, type ParsedMarketPoolData, type ParsedSpoolData, type ParsedSpoolRewardPoolData, type PoolAddress, RPC_PROVIDERS, type RedeemScaQuickReturnType, type RiskModel, SCA_COIN_TYPE, type SCoinAmounts, type SCoinConverterTreasury, type SCoinIds, type SCoinTreasuryCaps, type SCoinTxBlock, type SCoins, SDK_API_BASE_URL, Scallop, ScallopAddress, type ScallopAddressInstanceParams, type ScallopAddressParams, type ScallopBaseInstanceParams, ScallopBuilder, type ScallopBuilderInstanceParams, type ScallopBuilderParams, ScallopCache, type ScallopCacheConfig, type ScallopCacheInstanceParams, type ScallopCacheParams, ScallopClient, type ScallopClientFnReturnType, type ScallopClientInstanceParams, type ScallopClientParams, type ScallopClientVeScaReturnType, ScallopConstants, type ScallopConstantsInstanceParams, type ScallopConstantsParams, ScallopIndexer, type ScallopIndexerInstanceParams, type ScallopIndexerParams, type ScallopParams, ScallopQuery, type ScallopQueryInstanceParams, type ScallopQueryParams, type ScallopTxBlock, ScallopUtils, type ScallopUtilsInstanceParams, type ScallopUtilsParams, type SelectCoinReturnType, type Spool, type SpoolData, type SpoolIds, type SpoolNormalMethods, type SpoolQuickMethods, type SpoolRewardPool, type SpoolTxBlock, type Spools, type StakeAccount, type StakeAccounts, type StakeMarketCoins, type StakePool, type StakePools, type StakeRewardCoins, type StakeRewardPool, type StakeRewardPools, type SuiBridgeCoins, type SuiBridgedCoinPackageIds, type SuiTxBlockWithBorrowIncentiveNormalMethods, type SuiTxBlockWithCoreNormalMethods, type SuiTxBlockWithLoyaltyProgramNormalMethods, type SuiTxBlockWithSCoin, type SuiTxBlockWithSCoinNormalMethods, type SuiTxBlockWithSpool, type SuiTxBlockWithSpoolNormalMethods, type SuiTxBlockWithVeScaNormalMethods, type SupportOracleType, TEST_ADDRESSES, type TotalValueLocked, UNLOCK_ROUND_DURATION, USE_TEST_ADDRESS, type VeScaNormalMethods, type VeScaQuickMethods, type VeScaTreasuryFields, type VeScaTreasuryInfo, type VeScaTxBlock, type Vesca, type VescaIds, type VoloCoinIds, type Whitelist, type WormholeCoinIds, _SUPPORT_ORACLES, queryKeys, type sCoinBalance, type sCoinNormalMethods, type sCoinPkgIds, type sCoinQuickMethods, xOracleList, type xOracleListType, type xOracleRuleType, type xOracleRules };
|
package/dist/index.d.ts
CHANGED
|
@@ -1998,6 +1998,7 @@ type Whitelist = {
|
|
|
1998
1998
|
wormhole: Set<string>;
|
|
1999
1999
|
oracles: Set<string>;
|
|
2000
2000
|
borrowIncentiveRewards: Set<string>;
|
|
2001
|
+
rewardsAsPoint: Set<string>;
|
|
2001
2002
|
pythEndpoints: Set<string>;
|
|
2002
2003
|
deprecated: Set<string>;
|
|
2003
2004
|
};
|
|
@@ -2798,12 +2799,13 @@ type ObligationDebt = {
|
|
|
2798
2799
|
availableRepayAmount: number;
|
|
2799
2800
|
availableRepayCoin: number;
|
|
2800
2801
|
};
|
|
2801
|
-
type
|
|
2802
|
+
type ObligationBorrowIncentiveReward = {
|
|
2802
2803
|
coinName: string;
|
|
2803
2804
|
coinType: string;
|
|
2804
2805
|
symbol: string;
|
|
2805
2806
|
coinDecimal: number;
|
|
2806
2807
|
coinPrice: number;
|
|
2808
|
+
weightedBorrowAmount: number;
|
|
2807
2809
|
availableClaimCoin: number;
|
|
2808
2810
|
availableClaimAmount: number;
|
|
2809
2811
|
boostValue: number;
|
|
@@ -2814,7 +2816,7 @@ type ObligationBorrowIncentive = {
|
|
|
2814
2816
|
symbol: string;
|
|
2815
2817
|
coinDecimal: number;
|
|
2816
2818
|
coinPrice: number;
|
|
2817
|
-
rewards:
|
|
2819
|
+
rewards: ObligationBorrowIncentiveReward[];
|
|
2818
2820
|
};
|
|
2819
2821
|
type TotalValueLocked = {
|
|
2820
2822
|
supplyLendingValue: number;
|
|
@@ -3063,4 +3065,4 @@ declare const MIN_TOP_UP_AMOUNT: 1000000000;
|
|
|
3063
3065
|
|
|
3064
3066
|
declare const xOracleList: xOracleListType;
|
|
3065
3067
|
|
|
3066
|
-
export { API_BASE_URL, type AddressStringPath, type AddressesInterface, type AssetCoinIds, type AssetCoins, type BalanceSheet, type BaseScallopTxBlock, type BorrowDynamic, type BorrowFee, type BorrowIncentiveAccountKey, type BorrowIncentiveAccounts, type BorrowIncentiveAccountsQueryInterface, type BorrowIncentiveIds, type BorrowIncentiveNormalMethods, type BorrowIncentivePool, type BorrowIncentivePoolPoints, type BorrowIncentivePools, type BorrowIncentivePoolsQueryInterface, type BorrowIncentiveQuickMethods, type BorrowIncentiveRewardCoins, type BorrowIncentiveTxBlock, type CalculatedBorrowIncentivePoolPointData, type CalculatedMarketCollateralData, type CalculatedMarketPoolData, type CalculatedSpoolData, type CalculatedSpoolRewardPoolData, type CoinAmounts, type CoinPrices, type CoinWrappedType, type Coins, type CollateralStat, type CoreIds, type CoreNormalMethods, type CoreQuickMethods, type CoreTxBlock, DEFAULT_CACHE_OPTIONS, type GenerateBorrowIncentiveNormalMethod, type GenerateBorrowIncentiveQuickMethod, type GenerateCoreNormalMethod, type GenerateCoreQuickMethod, type GenerateLoyaltyProgramNormalMethod, type GenerateLoyaltyProgramQuickMethod, type GenerateSCoinNormalMethod, type GenerateSCoinQuickMethod, type GenerateSpoolNormalMethod, type GenerateSpoolQuickMethod, type GenerateVeScaNormalMethod, type GenerateVeScaQuickMethod, IS_VE_SCA_TEST, type InterestModel, type Lending, type Lendings, type LoyaltyProgramIds, type LoyaltyProgramInfo, type LoyaltyProgramNormalMethods, type LoyaltyProgramQuickMethods, type LoyaltyProgramTxBlock, MAX_LOCK_DURATION, MAX_LOCK_ROUNDS, MIN_INITIAL_LOCK_AMOUNT, MIN_TOP_UP_AMOUNT, type Market, type MarketCoinAmounts, type MarketCoins, type MarketCollateral, type MarketCollaterals, type MarketPool, type MarketPools, type MarketQueryInterface, type NestedResult, OLD_BORROW_INCENTIVE_PROTOCOL_ID, type Obligation, type ObligationAccount, type ObligationAccounts, type
|
|
3068
|
+
export { API_BASE_URL, type AddressStringPath, type AddressesInterface, type AssetCoinIds, type AssetCoins, type BalanceSheet, type BaseScallopTxBlock, type BorrowDynamic, type BorrowFee, type BorrowIncentiveAccountKey, type BorrowIncentiveAccounts, type BorrowIncentiveAccountsQueryInterface, type BorrowIncentiveIds, type BorrowIncentiveNormalMethods, type BorrowIncentivePool, type BorrowIncentivePoolPoints, type BorrowIncentivePools, type BorrowIncentivePoolsQueryInterface, type BorrowIncentiveQuickMethods, type BorrowIncentiveRewardCoins, type BorrowIncentiveTxBlock, type CalculatedBorrowIncentivePoolPointData, type CalculatedMarketCollateralData, type CalculatedMarketPoolData, type CalculatedSpoolData, type CalculatedSpoolRewardPoolData, type CoinAmounts, type CoinPrices, type CoinWrappedType, type Coins, type CollateralStat, type CoreIds, type CoreNormalMethods, type CoreQuickMethods, type CoreTxBlock, DEFAULT_CACHE_OPTIONS, type GenerateBorrowIncentiveNormalMethod, type GenerateBorrowIncentiveQuickMethod, type GenerateCoreNormalMethod, type GenerateCoreQuickMethod, type GenerateLoyaltyProgramNormalMethod, type GenerateLoyaltyProgramQuickMethod, type GenerateSCoinNormalMethod, type GenerateSCoinQuickMethod, type GenerateSpoolNormalMethod, type GenerateSpoolQuickMethod, type GenerateVeScaNormalMethod, type GenerateVeScaQuickMethod, IS_VE_SCA_TEST, type InterestModel, type Lending, type Lendings, type LoyaltyProgramIds, type LoyaltyProgramInfo, type LoyaltyProgramNormalMethods, type LoyaltyProgramQuickMethods, type LoyaltyProgramTxBlock, MAX_LOCK_DURATION, MAX_LOCK_ROUNDS, MIN_INITIAL_LOCK_AMOUNT, MIN_TOP_UP_AMOUNT, type Market, type MarketCoinAmounts, type MarketCoins, type MarketCollateral, type MarketCollaterals, type MarketPool, type MarketPools, type MarketQueryInterface, type NestedResult, OLD_BORROW_INCENTIVE_PROTOCOL_ID, type Obligation, type ObligationAccount, type ObligationAccounts, type ObligationBorrowIncentive, type ObligationBorrowIncentiveReward, type ObligationCollateral, type ObligationDebt, type ObligationQueryInterface, type OptionalKeys, type OriginBorrowIncentiveAccountData, type OriginBorrowIncentiveAccountPoolData, type OriginBorrowIncentivePoolData, type OriginBorrowIncentivePoolPointData, type OriginMarketCollateralData, type OriginMarketPoolData, type OriginSpoolData, type OriginSpoolRewardPoolData, type ParsedBorrowIncentiveAccountData, type ParsedBorrowIncentiveAccountPoolData, type ParsedBorrowIncentivePoolData, type ParsedBorrowIncentivePoolPointData, type ParsedMarketCollateralData, type ParsedMarketPoolData, type ParsedSpoolData, type ParsedSpoolRewardPoolData, type PoolAddress, RPC_PROVIDERS, type RedeemScaQuickReturnType, type RiskModel, SCA_COIN_TYPE, type SCoinAmounts, type SCoinConverterTreasury, type SCoinIds, type SCoinTreasuryCaps, type SCoinTxBlock, type SCoins, SDK_API_BASE_URL, Scallop, ScallopAddress, type ScallopAddressInstanceParams, type ScallopAddressParams, type ScallopBaseInstanceParams, ScallopBuilder, type ScallopBuilderInstanceParams, type ScallopBuilderParams, ScallopCache, type ScallopCacheConfig, type ScallopCacheInstanceParams, type ScallopCacheParams, ScallopClient, type ScallopClientFnReturnType, type ScallopClientInstanceParams, type ScallopClientParams, type ScallopClientVeScaReturnType, ScallopConstants, type ScallopConstantsInstanceParams, type ScallopConstantsParams, ScallopIndexer, type ScallopIndexerInstanceParams, type ScallopIndexerParams, type ScallopParams, ScallopQuery, type ScallopQueryInstanceParams, type ScallopQueryParams, type ScallopTxBlock, ScallopUtils, type ScallopUtilsInstanceParams, type ScallopUtilsParams, type SelectCoinReturnType, type Spool, type SpoolData, type SpoolIds, type SpoolNormalMethods, type SpoolQuickMethods, type SpoolRewardPool, type SpoolTxBlock, type Spools, type StakeAccount, type StakeAccounts, type StakeMarketCoins, type StakePool, type StakePools, type StakeRewardCoins, type StakeRewardPool, type StakeRewardPools, type SuiBridgeCoins, type SuiBridgedCoinPackageIds, type SuiTxBlockWithBorrowIncentiveNormalMethods, type SuiTxBlockWithCoreNormalMethods, type SuiTxBlockWithLoyaltyProgramNormalMethods, type SuiTxBlockWithSCoin, type SuiTxBlockWithSCoinNormalMethods, type SuiTxBlockWithSpool, type SuiTxBlockWithSpoolNormalMethods, type SuiTxBlockWithVeScaNormalMethods, type SupportOracleType, TEST_ADDRESSES, type TotalValueLocked, UNLOCK_ROUND_DURATION, USE_TEST_ADDRESS, type VeScaNormalMethods, type VeScaQuickMethods, type VeScaTreasuryFields, type VeScaTreasuryInfo, type VeScaTxBlock, type Vesca, type VescaIds, type VoloCoinIds, type Whitelist, type WormholeCoinIds, _SUPPORT_ORACLES, queryKeys, type sCoinBalance, type sCoinNormalMethods, type sCoinPkgIds, type sCoinQuickMethods, xOracleList, type xOracleListType, type xOracleRuleType, type xOracleRules };
|