@ref-finance/ref-sdk 1.3.11 → 1.4.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/dist/constant.d.ts +1 -0
- package/dist/ref-sdk.cjs.development.js +93 -23
- package/dist/ref-sdk.cjs.development.js.map +1 -1
- package/dist/ref-sdk.cjs.production.min.js +1 -1
- package/dist/ref-sdk.cjs.production.min.js.map +1 -1
- package/dist/ref-sdk.esm.js +92 -24
- package/dist/ref-sdk.esm.js.map +1 -1
- package/dist/ref-sdk.umd.development.js +96 -27
- package/dist/ref-sdk.umd.development.js.map +1 -1
- package/dist/ref-sdk.umd.production.min.js +1 -1
- package/dist/ref-sdk.umd.production.min.js.map +1 -1
- package/dist/ref.d.ts +1 -0
- package/package.json +1 -1
package/dist/ref.d.ts
CHANGED
|
@@ -39,3 +39,4 @@ export declare const nearDepositTransaction: (amount: string) => Transaction;
|
|
|
39
39
|
export declare const nearWithdrawTransaction: (amount: string) => Transaction;
|
|
40
40
|
export declare const refDCLSwapViewFunction: ({ methodName, args, }: RefFiViewFunctionOptions) => Promise<any>;
|
|
41
41
|
export declare const DCLSwapGetStorageBalance: (tokenId: string, AccountId: string) => Promise<any>;
|
|
42
|
+
export declare const getMinStorageBalance: (nep141Address: string) => Promise<string>;
|
package/package.json
CHANGED