@lendasat/lendaswap-sdk 0.1.4 → 0.1.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/README.md +59 -0
- package/dist/api.d.ts +1 -10
- package/dist/api.d.ts.map +1 -1
- package/dist/api.js +3 -48
- package/dist/api.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/price-feed.d.ts +1 -1
- package/dist/price-feed.js +1 -1
- package/dist/storage/dexieSwapStorage.d.ts +2 -2
- package/dist/storage/dexieSwapStorage.js +2 -2
- package/dist/storage/dexieWalletStorage.d.ts +2 -2
- package/dist/storage/dexieWalletStorage.js +2 -2
- package/dist/usd-price.d.ts +1 -1
- package/dist/usd-price.js +1 -1
- package/package.json +3 -3
- package/wasm/lendaswap_wasm_sdk.d.ts +0 -209
- package/wasm/lendaswap_wasm_sdk.js +5 -2959
- package/wasm/lendaswap_wasm_sdk_bg.js +3004 -0
- package/wasm/lendaswap_wasm_sdk_bg.wasm +0 -0
- package/wasm/lendaswap_wasm_sdk_bg.wasm.d.ts +2 -2
- package/wasm/package.json +2 -0
|
Binary file
|
|
@@ -169,10 +169,10 @@ export const rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
|
169
169
|
export const rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
170
170
|
export const rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
171
171
|
export const rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|
|
172
|
-
export const wasm_bindgen__convert__closures_____invoke__h49d21def8d7e8715: (a: number, b: number) => void;
|
|
173
|
-
export const wasm_bindgen__closure__destroy__h19250ab695821211: (a: number, b: number) => void;
|
|
174
172
|
export const wasm_bindgen__convert__closures_____invoke__hf86cb6f5b134f7f7: (a: number, b: number, c: any) => void;
|
|
175
173
|
export const wasm_bindgen__closure__destroy__h5b1ee57da9b2ce1f: (a: number, b: number) => void;
|
|
174
|
+
export const wasm_bindgen__convert__closures_____invoke__h49d21def8d7e8715: (a: number, b: number) => void;
|
|
175
|
+
export const wasm_bindgen__closure__destroy__h19250ab695821211: (a: number, b: number) => void;
|
|
176
176
|
export const wasm_bindgen__convert__closures_____invoke__h68e6792a5299b78b: (a: number, b: number, c: any, d: any) => void;
|
|
177
177
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
178
178
|
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
package/wasm/package.json
CHANGED
|
@@ -7,11 +7,13 @@
|
|
|
7
7
|
"files": [
|
|
8
8
|
"lendaswap_wasm_sdk_bg.wasm",
|
|
9
9
|
"lendaswap_wasm_sdk.js",
|
|
10
|
+
"lendaswap_wasm_sdk_bg.js",
|
|
10
11
|
"lendaswap_wasm_sdk.d.ts"
|
|
11
12
|
],
|
|
12
13
|
"main": "lendaswap_wasm_sdk.js",
|
|
13
14
|
"types": "lendaswap_wasm_sdk.d.ts",
|
|
14
15
|
"sideEffects": [
|
|
16
|
+
"./lendaswap_wasm_sdk.js",
|
|
15
17
|
"./snippets/*"
|
|
16
18
|
]
|
|
17
19
|
}
|