@scallop-io/sui-scallop-sdk 2.2.5 → 2.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/builders/coreBuilder.ts +8 -2
- package/src/types/builder/core.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -1837,7 +1837,7 @@ type CoreQuickMethods = {
|
|
|
1837
1837
|
sponsoredFeeds?: string[];
|
|
1838
1838
|
isSponsoredTx?: boolean;
|
|
1839
1839
|
}) => Promise<TransactionResult>;
|
|
1840
|
-
depositQuick: (amount: number, poolCoinName: string, returnSCoin?: boolean) => Promise<TransactionResult>;
|
|
1840
|
+
depositQuick: (amount: number, poolCoinName: string, returnSCoin?: boolean, isSponsoredTx?: boolean) => Promise<TransactionResult>;
|
|
1841
1841
|
withdrawQuick: (amount: number, poolCoinName: string) => Promise<TransactionResult>;
|
|
1842
1842
|
repayQuick: (amount: number, poolCoinName: string, obligationId?: SuiObjectArg, isSponsoredTx?: boolean) => Promise<void>;
|
|
1843
1843
|
updateAssetPricesQuick: (assetCoinNames?: string[], updateOracleOptions?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1837,7 +1837,7 @@ type CoreQuickMethods = {
|
|
|
1837
1837
|
sponsoredFeeds?: string[];
|
|
1838
1838
|
isSponsoredTx?: boolean;
|
|
1839
1839
|
}) => Promise<TransactionResult>;
|
|
1840
|
-
depositQuick: (amount: number, poolCoinName: string, returnSCoin?: boolean) => Promise<TransactionResult>;
|
|
1840
|
+
depositQuick: (amount: number, poolCoinName: string, returnSCoin?: boolean, isSponsoredTx?: boolean) => Promise<TransactionResult>;
|
|
1841
1841
|
withdrawQuick: (amount: number, poolCoinName: string) => Promise<TransactionResult>;
|
|
1842
1842
|
repayQuick: (amount: number, poolCoinName: string, obligationId?: SuiObjectArg, isSponsoredTx?: boolean) => Promise<void>;
|
|
1843
1843
|
updateAssetPricesQuick: (assetCoinNames?: string[], updateOracleOptions?: {
|