@scallop-io/sui-scallop-sdk 2.0.0-alpha.9 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -5
- package/dist/index.d.mts +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +3 -3
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/builders/oracles/index.ts +0 -15
- package/src/constants/common.ts +0 -125
- package/src/constants/testAddress.ts +9 -5
- package/src/models/scallop.ts +14 -1
- package/src/models/scallopBuilder.ts +0 -42
- package/src/models/scallopConstants.ts +16 -3
- package/src/models/scallopQuery.ts +0 -7
- package/src/models/scallopUtils.ts +3 -1
- package/src/queries/coreQuery.ts +0 -15
- package/src/queries/poolAddressesQuery.ts +0 -2
- package/src/queries/portfolioQuery.ts +3 -4
- package/src/queries/xOracleQuery.ts +0 -10
- package/src/types/builder/core.ts +2 -23
- package/src/types/constant/common.ts +1 -0
- package/src/types/query/portfolio.ts +3 -2
- package/src/builders/oracles/switchboard.ts +0 -270
- package/src/constants/pyth.ts +0 -25
package/README.md
CHANGED
|
@@ -45,11 +45,13 @@ 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: '67c44a103fe1b8c454eb9699',
|
|
48
49
|
networkType: 'mainnet',
|
|
49
50
|
...
|
|
50
51
|
});
|
|
51
52
|
|
|
52
53
|
const scallopAddress = await scallopSDK.getScallopAddress(...);
|
|
54
|
+
const scallopConstants = await scallopSDK.getScallopConstants(...);
|
|
53
55
|
const scallopQuery = await scallopSDK.createScallopQuery(...);
|
|
54
56
|
const scallopBuilder = await scallopSDK.createScallopBuilder(...);
|
|
55
57
|
const scallopUtils = await scallopSDK.createScallopUtils(...);
|
|
@@ -59,6 +61,7 @@ This SDK is used to interact with [sui-lending-protocol](https://github.com/scal
|
|
|
59
61
|
// Or, you can choose to import the class directly to create an instance.
|
|
60
62
|
import {
|
|
61
63
|
ScallopAddress,
|
|
64
|
+
ScallopConstants,
|
|
62
65
|
ScallopBuilder,
|
|
63
66
|
ScallopQuery,
|
|
64
67
|
ScallopUtils,
|
|
@@ -66,14 +69,34 @@ This SDK is used to interact with [sui-lending-protocol](https://github.com/scal
|
|
|
66
69
|
ScallopClient,
|
|
67
70
|
} from '@scallop-io/sui-scallop-sdk'
|
|
68
71
|
|
|
69
|
-
const scallopAddress = new ScallopAddress(
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
const
|
|
72
|
+
const scallopAddress = new ScallopAddress(
|
|
73
|
+
addressId: '67c44a103fe1b8c454eb9699',
|
|
74
|
+
...
|
|
75
|
+
);
|
|
76
|
+
const scallopConstants = new ScallopConstants(
|
|
77
|
+
addressId: '67c44a103fe1b8c454eb9699',
|
|
78
|
+
...
|
|
79
|
+
);
|
|
80
|
+
const ScallopQuery = new ScallopQuery(
|
|
81
|
+
addressId: '67c44a103fe1b8c454eb9699',
|
|
82
|
+
...
|
|
83
|
+
);
|
|
84
|
+
const ScallopBuilder = new ScallopBuilder(
|
|
85
|
+
addressId: '67c44a103fe1b8c454eb9699',
|
|
86
|
+
...
|
|
87
|
+
);
|
|
88
|
+
const ScallopUtils = new ScallopUtils(
|
|
89
|
+
addressId: '67c44a103fe1b8c454eb9699',
|
|
90
|
+
...
|
|
91
|
+
);
|
|
92
|
+
const scallopClient = new ScallopClient(
|
|
93
|
+
addressId: '67c44a103fe1b8c454eb9699',
|
|
94
|
+
...
|
|
95
|
+
);
|
|
74
96
|
const ScallopIndexer = new ScallopIndexer();
|
|
75
97
|
// Remember to initialize the instance before using it
|
|
76
98
|
await scallopAddress.read();
|
|
99
|
+
await scallopConstants.init();
|
|
77
100
|
await ScallopQuery.init();
|
|
78
101
|
await ScallopBuilder.init();
|
|
79
102
|
await ScallopUtils.init();
|
|
@@ -90,6 +113,7 @@ Below we will give a brief introduction to these instances respectively, and int
|
|
|
90
113
|
- [Use Scallop Builder](./document/builder.md)
|
|
91
114
|
- [Use Scallop Utils](./document/utils.md)
|
|
92
115
|
- [Use Scallop Indexer](./document/indexer.md)
|
|
116
|
+
- [Use Scallop Indexer](./document/constants.md)
|
|
93
117
|
|
|
94
118
|
For the original codes, please refer to `test` folder.
|
|
95
119
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1690,6 +1690,11 @@ declare class Scallop {
|
|
|
1690
1690
|
* @return Scallop Address.
|
|
1691
1691
|
*/
|
|
1692
1692
|
getScallopAddress(id?: string): Promise<ScallopAddress>;
|
|
1693
|
+
/**
|
|
1694
|
+
* Get a scallop constants instance that already has initial data.
|
|
1695
|
+
* @returns Scallop Constants
|
|
1696
|
+
*/
|
|
1697
|
+
getScallopConstants(params?: Partial<ScallopConstantsParams>): Promise<ScallopConstants>;
|
|
1693
1698
|
/**
|
|
1694
1699
|
* Create a scallop builder instance that already has initial data.
|
|
1695
1700
|
*
|
|
@@ -1998,6 +2003,7 @@ type Whitelist = {
|
|
|
1998
2003
|
wormhole: Set<string>;
|
|
1999
2004
|
oracles: Set<string>;
|
|
2000
2005
|
borrowIncentiveRewards: Set<string>;
|
|
2006
|
+
rewardsAsPoint: Set<string>;
|
|
2001
2007
|
pythEndpoints: Set<string>;
|
|
2002
2008
|
deprecated: Set<string>;
|
|
2003
2009
|
};
|
|
@@ -2798,12 +2804,13 @@ type ObligationDebt = {
|
|
|
2798
2804
|
availableRepayAmount: number;
|
|
2799
2805
|
availableRepayCoin: number;
|
|
2800
2806
|
};
|
|
2801
|
-
type
|
|
2807
|
+
type ObligationBorrowIncentiveReward = {
|
|
2802
2808
|
coinName: string;
|
|
2803
2809
|
coinType: string;
|
|
2804
2810
|
symbol: string;
|
|
2805
2811
|
coinDecimal: number;
|
|
2806
2812
|
coinPrice: number;
|
|
2813
|
+
weightedBorrowAmount: number;
|
|
2807
2814
|
availableClaimCoin: number;
|
|
2808
2815
|
availableClaimAmount: number;
|
|
2809
2816
|
boostValue: number;
|
|
@@ -2814,7 +2821,7 @@ type ObligationBorrowIncentive = {
|
|
|
2814
2821
|
symbol: string;
|
|
2815
2822
|
coinDecimal: number;
|
|
2816
2823
|
coinPrice: number;
|
|
2817
|
-
rewards:
|
|
2824
|
+
rewards: ObligationBorrowIncentiveReward[];
|
|
2818
2825
|
};
|
|
2819
2826
|
type TotalValueLocked = {
|
|
2820
2827
|
supplyLendingValue: number;
|
|
@@ -3063,4 +3070,4 @@ declare const MIN_TOP_UP_AMOUNT: 1000000000;
|
|
|
3063
3070
|
|
|
3064
3071
|
declare const xOracleList: xOracleListType;
|
|
3065
3072
|
|
|
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
|
|
3073
|
+
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
|
@@ -1690,6 +1690,11 @@ declare class Scallop {
|
|
|
1690
1690
|
* @return Scallop Address.
|
|
1691
1691
|
*/
|
|
1692
1692
|
getScallopAddress(id?: string): Promise<ScallopAddress>;
|
|
1693
|
+
/**
|
|
1694
|
+
* Get a scallop constants instance that already has initial data.
|
|
1695
|
+
* @returns Scallop Constants
|
|
1696
|
+
*/
|
|
1697
|
+
getScallopConstants(params?: Partial<ScallopConstantsParams>): Promise<ScallopConstants>;
|
|
1693
1698
|
/**
|
|
1694
1699
|
* Create a scallop builder instance that already has initial data.
|
|
1695
1700
|
*
|
|
@@ -1998,6 +2003,7 @@ type Whitelist = {
|
|
|
1998
2003
|
wormhole: Set<string>;
|
|
1999
2004
|
oracles: Set<string>;
|
|
2000
2005
|
borrowIncentiveRewards: Set<string>;
|
|
2006
|
+
rewardsAsPoint: Set<string>;
|
|
2001
2007
|
pythEndpoints: Set<string>;
|
|
2002
2008
|
deprecated: Set<string>;
|
|
2003
2009
|
};
|
|
@@ -2798,12 +2804,13 @@ type ObligationDebt = {
|
|
|
2798
2804
|
availableRepayAmount: number;
|
|
2799
2805
|
availableRepayCoin: number;
|
|
2800
2806
|
};
|
|
2801
|
-
type
|
|
2807
|
+
type ObligationBorrowIncentiveReward = {
|
|
2802
2808
|
coinName: string;
|
|
2803
2809
|
coinType: string;
|
|
2804
2810
|
symbol: string;
|
|
2805
2811
|
coinDecimal: number;
|
|
2806
2812
|
coinPrice: number;
|
|
2813
|
+
weightedBorrowAmount: number;
|
|
2807
2814
|
availableClaimCoin: number;
|
|
2808
2815
|
availableClaimAmount: number;
|
|
2809
2816
|
boostValue: number;
|
|
@@ -2814,7 +2821,7 @@ type ObligationBorrowIncentive = {
|
|
|
2814
2821
|
symbol: string;
|
|
2815
2822
|
coinDecimal: number;
|
|
2816
2823
|
coinPrice: number;
|
|
2817
|
-
rewards:
|
|
2824
|
+
rewards: ObligationBorrowIncentiveReward[];
|
|
2818
2825
|
};
|
|
2819
2826
|
type TotalValueLocked = {
|
|
2820
2827
|
supplyLendingValue: number;
|
|
@@ -3063,4 +3070,4 @@ declare const MIN_TOP_UP_AMOUNT: 1000000000;
|
|
|
3063
3070
|
|
|
3064
3071
|
declare const xOracleList: xOracleListType;
|
|
3065
3072
|
|
|
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
|
|
3073
|
+
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 };
|