@paraspell/sdk 11.14.3 → 11.14.5
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.cjs +165 -418
- package/dist/index.d.ts +4 -2
- package/dist/index.mjs +166 -419
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ declare const getBalanceNative: (options: _paraspell_sdk_core.TGetBalanceNativeO
|
|
|
23
23
|
*
|
|
24
24
|
* @returns The balance of the foreign asset as a bigint, or null if not found.
|
|
25
25
|
*/
|
|
26
|
-
declare const getBalanceForeign: (options: _paraspell_sdk_core.
|
|
26
|
+
declare const getBalanceForeign: (options: _paraspell_sdk_core.TGetBalanceCommonOptions & {
|
|
27
27
|
currency: _paraspell_sdk_core.TCurrencyCore;
|
|
28
28
|
} & {
|
|
29
29
|
api?: TPapiApiOrUrl;
|
|
@@ -33,7 +33,9 @@ declare const getBalanceForeign: (options: _paraspell_sdk_core.TGetBalanceForeig
|
|
|
33
33
|
*
|
|
34
34
|
* @returns The asset balance as a bigint.
|
|
35
35
|
*/
|
|
36
|
-
declare const getAssetBalance: (options: _paraspell_sdk_core.
|
|
36
|
+
declare const getAssetBalance: (options: _paraspell_sdk_core.TGetBalanceCommonOptions & {
|
|
37
|
+
currency: _paraspell_sdk_core.TCurrencyCore;
|
|
38
|
+
} & {
|
|
37
39
|
api?: TPapiApiOrUrl;
|
|
38
40
|
}) => Promise<bigint>;
|
|
39
41
|
/**
|