lwk_node 0.9.3 → 0.10.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/lwk_wasm.d.ts +24 -2
- package/lwk_wasm.js +243 -53
- package/lwk_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/lwk_wasm.d.ts
CHANGED
|
@@ -101,6 +101,15 @@ export class AssetId {
|
|
|
101
101
|
constructor(asset_id: string);
|
|
102
102
|
toString(): string;
|
|
103
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* A collection of asset identifiers. wrapper of [`Vec<elements::AssetId>`]
|
|
106
|
+
*/
|
|
107
|
+
export class AssetIds {
|
|
108
|
+
private constructor();
|
|
109
|
+
free(): void;
|
|
110
|
+
static empty(): AssetIds;
|
|
111
|
+
toString(): string;
|
|
112
|
+
}
|
|
104
113
|
export class AssetMeta {
|
|
105
114
|
private constructor();
|
|
106
115
|
free(): void;
|
|
@@ -454,10 +463,22 @@ export class Recipient {
|
|
|
454
463
|
export class Registry {
|
|
455
464
|
private constructor();
|
|
456
465
|
free(): void;
|
|
457
|
-
static new(url: string): Registry
|
|
458
|
-
static defaultForNetwork(network: Network): Registry
|
|
466
|
+
static new(url: string, asset_ids: AssetIds): Promise<Registry>;
|
|
467
|
+
static defaultForNetwork(network: Network, asset_ids: AssetIds): Promise<Registry>;
|
|
468
|
+
static defaultHardcodedForNetwork(network: Network): Registry;
|
|
459
469
|
fetchWithTx(asset_id: AssetId, client: EsploraClient): Promise<AssetMeta>;
|
|
460
470
|
post(data: RegistryPost): Promise<void>;
|
|
471
|
+
get(asset_id: AssetId): RegistryData | undefined;
|
|
472
|
+
getAssetOfToken(token_id: AssetId): RegistryData | undefined;
|
|
473
|
+
addContracts(pset: Pset): Pset;
|
|
474
|
+
}
|
|
475
|
+
export class RegistryData {
|
|
476
|
+
private constructor();
|
|
477
|
+
free(): void;
|
|
478
|
+
precision(): number;
|
|
479
|
+
ticker(): string;
|
|
480
|
+
name(): string;
|
|
481
|
+
domain(): string;
|
|
461
482
|
}
|
|
462
483
|
export class RegistryPost {
|
|
463
484
|
free(): void;
|
|
@@ -699,6 +720,7 @@ export class Wollet {
|
|
|
699
720
|
addressFullPath(index: number): Uint32Array;
|
|
700
721
|
applyUpdate(update: Update): void;
|
|
701
722
|
balance(): any;
|
|
723
|
+
assetsOwned(): AssetIds;
|
|
702
724
|
transactions(): WalletTx[];
|
|
703
725
|
/**
|
|
704
726
|
* Get the unspent transaction outputs of the wallet
|
package/lwk_wasm.js
CHANGED
|
@@ -207,33 +207,23 @@ function debugString(val) {
|
|
|
207
207
|
return className;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
-
function takeFromExternrefTable0(idx) {
|
|
211
|
-
const value = wasm.__wbindgen_export_4.get(idx);
|
|
212
|
-
wasm.__externref_table_dealloc(idx);
|
|
213
|
-
return value;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
210
|
function _assertClass(instance, klass) {
|
|
217
211
|
if (!(instance instanceof klass)) {
|
|
218
212
|
throw new Error(`expected instance of ${klass.name}`);
|
|
219
213
|
}
|
|
220
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* @returns {Promise<HIDDevice>}
|
|
217
|
+
*/
|
|
218
|
+
module.exports.searchLedgerDevice = function() {
|
|
219
|
+
const ret = wasm.searchLedgerDevice();
|
|
220
|
+
return ret;
|
|
221
|
+
};
|
|
221
222
|
|
|
222
|
-
function
|
|
223
|
-
const
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
return ptr;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
function passArrayJsValueToWasm0(array, malloc) {
|
|
230
|
-
const ptr = malloc(array.length * 4, 4) >>> 0;
|
|
231
|
-
for (let i = 0; i < array.length; i++) {
|
|
232
|
-
const add = addToExternrefTable0(array[i]);
|
|
233
|
-
getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
|
|
234
|
-
}
|
|
235
|
-
WASM_VECTOR_LEN = array.length;
|
|
236
|
-
return ptr;
|
|
223
|
+
function takeFromExternrefTable0(idx) {
|
|
224
|
+
const value = wasm.__wbindgen_export_4.get(idx);
|
|
225
|
+
wasm.__externref_table_dealloc(idx);
|
|
226
|
+
return value;
|
|
237
227
|
}
|
|
238
228
|
|
|
239
229
|
let cachedUint32ArrayMemory0 = null;
|
|
@@ -252,6 +242,16 @@ function passArray32ToWasm0(arg, malloc) {
|
|
|
252
242
|
return ptr;
|
|
253
243
|
}
|
|
254
244
|
|
|
245
|
+
function passArrayJsValueToWasm0(array, malloc) {
|
|
246
|
+
const ptr = malloc(array.length * 4, 4) >>> 0;
|
|
247
|
+
for (let i = 0; i < array.length; i++) {
|
|
248
|
+
const add = addToExternrefTable0(array[i]);
|
|
249
|
+
getDataViewMemory0().setUint32(ptr + 4 * i, add, true);
|
|
250
|
+
}
|
|
251
|
+
WASM_VECTOR_LEN = array.length;
|
|
252
|
+
return ptr;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
255
|
function getArrayJsValueFromWasm0(ptr, len) {
|
|
256
256
|
ptr = ptr >>> 0;
|
|
257
257
|
const mem = getDataViewMemory0();
|
|
@@ -263,28 +263,27 @@ function getArrayJsValueFromWasm0(ptr, len) {
|
|
|
263
263
|
return result;
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
+
function passArray8ToWasm0(arg, malloc) {
|
|
267
|
+
const ptr = malloc(arg.length * 1, 1) >>> 0;
|
|
268
|
+
getUint8ArrayMemory0().set(arg, ptr / 1);
|
|
269
|
+
WASM_VECTOR_LEN = arg.length;
|
|
270
|
+
return ptr;
|
|
271
|
+
}
|
|
272
|
+
|
|
266
273
|
function getArrayU32FromWasm0(ptr, len) {
|
|
267
274
|
ptr = ptr >>> 0;
|
|
268
275
|
return getUint32ArrayMemory0().subarray(ptr / 4, ptr / 4 + len);
|
|
269
276
|
}
|
|
270
|
-
/**
|
|
271
|
-
* @returns {Promise<HIDDevice>}
|
|
272
|
-
*/
|
|
273
|
-
module.exports.searchLedgerDevice = function() {
|
|
274
|
-
const ret = wasm.searchLedgerDevice();
|
|
275
|
-
return ret;
|
|
276
|
-
};
|
|
277
|
-
|
|
278
277
|
function __wbg_adapter_36(arg0, arg1, arg2) {
|
|
279
|
-
wasm.
|
|
278
|
+
wasm.closure288_externref_shim(arg0, arg1, arg2);
|
|
280
279
|
}
|
|
281
280
|
|
|
282
281
|
function __wbg_adapter_43(arg0, arg1, arg2) {
|
|
283
|
-
wasm.
|
|
282
|
+
wasm.closure1216_externref_shim(arg0, arg1, arg2);
|
|
284
283
|
}
|
|
285
284
|
|
|
286
|
-
function
|
|
287
|
-
wasm.
|
|
285
|
+
function __wbg_adapter_494(arg0, arg1, arg2, arg3) {
|
|
286
|
+
wasm.closure1965_externref_shim(arg0, arg1, arg2, arg3);
|
|
288
287
|
}
|
|
289
288
|
|
|
290
289
|
/**
|
|
@@ -736,6 +735,61 @@ class AssetId {
|
|
|
736
735
|
}
|
|
737
736
|
module.exports.AssetId = AssetId;
|
|
738
737
|
|
|
738
|
+
const AssetIdsFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
739
|
+
? { register: () => {}, unregister: () => {} }
|
|
740
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_assetids_free(ptr >>> 0, 1));
|
|
741
|
+
/**
|
|
742
|
+
* A collection of asset identifiers. wrapper of [`Vec<elements::AssetId>`]
|
|
743
|
+
*/
|
|
744
|
+
class AssetIds {
|
|
745
|
+
|
|
746
|
+
static __wrap(ptr) {
|
|
747
|
+
ptr = ptr >>> 0;
|
|
748
|
+
const obj = Object.create(AssetIds.prototype);
|
|
749
|
+
obj.__wbg_ptr = ptr;
|
|
750
|
+
AssetIdsFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
751
|
+
return obj;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
__destroy_into_raw() {
|
|
755
|
+
const ptr = this.__wbg_ptr;
|
|
756
|
+
this.__wbg_ptr = 0;
|
|
757
|
+
AssetIdsFinalization.unregister(this);
|
|
758
|
+
return ptr;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
free() {
|
|
762
|
+
const ptr = this.__destroy_into_raw();
|
|
763
|
+
wasm.__wbg_assetids_free(ptr, 0);
|
|
764
|
+
}
|
|
765
|
+
/**
|
|
766
|
+
* @returns {AssetIds}
|
|
767
|
+
*/
|
|
768
|
+
static empty() {
|
|
769
|
+
const ret = wasm.assetids_empty();
|
|
770
|
+
if (ret[2]) {
|
|
771
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
772
|
+
}
|
|
773
|
+
return AssetIds.__wrap(ret[0]);
|
|
774
|
+
}
|
|
775
|
+
/**
|
|
776
|
+
* @returns {string}
|
|
777
|
+
*/
|
|
778
|
+
toString() {
|
|
779
|
+
let deferred1_0;
|
|
780
|
+
let deferred1_1;
|
|
781
|
+
try {
|
|
782
|
+
const ret = wasm.assetids_toString(this.__wbg_ptr);
|
|
783
|
+
deferred1_0 = ret[0];
|
|
784
|
+
deferred1_1 = ret[1];
|
|
785
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
786
|
+
} finally {
|
|
787
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
module.exports.AssetIds = AssetIds;
|
|
792
|
+
|
|
739
793
|
const AssetMetaFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
740
794
|
? { register: () => {}, unregister: () => {} }
|
|
741
795
|
: new FinalizationRegistry(ptr => wasm.__wbg_assetmeta_free(ptr >>> 0, 1));
|
|
@@ -2345,24 +2399,34 @@ class Registry {
|
|
|
2345
2399
|
}
|
|
2346
2400
|
/**
|
|
2347
2401
|
* @param {string} url
|
|
2348
|
-
* @
|
|
2402
|
+
* @param {AssetIds} asset_ids
|
|
2403
|
+
* @returns {Promise<Registry>}
|
|
2349
2404
|
*/
|
|
2350
|
-
static new(url) {
|
|
2405
|
+
static new(url, asset_ids) {
|
|
2351
2406
|
const ptr0 = passStringToWasm0(url, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2352
2407
|
const len0 = WASM_VECTOR_LEN;
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2408
|
+
_assertClass(asset_ids, AssetIds);
|
|
2409
|
+
const ret = wasm.registry_new(ptr0, len0, asset_ids.__wbg_ptr);
|
|
2410
|
+
return ret;
|
|
2411
|
+
}
|
|
2412
|
+
/**
|
|
2413
|
+
* @param {Network} network
|
|
2414
|
+
* @param {AssetIds} asset_ids
|
|
2415
|
+
* @returns {Promise<Registry>}
|
|
2416
|
+
*/
|
|
2417
|
+
static defaultForNetwork(network, asset_ids) {
|
|
2418
|
+
_assertClass(network, Network);
|
|
2419
|
+
_assertClass(asset_ids, AssetIds);
|
|
2420
|
+
const ret = wasm.registry_defaultForNetwork(network.__wbg_ptr, asset_ids.__wbg_ptr);
|
|
2421
|
+
return ret;
|
|
2358
2422
|
}
|
|
2359
2423
|
/**
|
|
2360
2424
|
* @param {Network} network
|
|
2361
2425
|
* @returns {Registry}
|
|
2362
2426
|
*/
|
|
2363
|
-
static
|
|
2427
|
+
static defaultHardcodedForNetwork(network) {
|
|
2364
2428
|
_assertClass(network, Network);
|
|
2365
|
-
const ret = wasm.
|
|
2429
|
+
const ret = wasm.registry_defaultHardcodedForNetwork(network.__wbg_ptr);
|
|
2366
2430
|
if (ret[2]) {
|
|
2367
2431
|
throw takeFromExternrefTable0(ret[1]);
|
|
2368
2432
|
}
|
|
@@ -2388,9 +2452,120 @@ class Registry {
|
|
|
2388
2452
|
const ret = wasm.registry_post(this.__wbg_ptr, data.__wbg_ptr);
|
|
2389
2453
|
return ret;
|
|
2390
2454
|
}
|
|
2455
|
+
/**
|
|
2456
|
+
* @param {AssetId} asset_id
|
|
2457
|
+
* @returns {RegistryData | undefined}
|
|
2458
|
+
*/
|
|
2459
|
+
get(asset_id) {
|
|
2460
|
+
_assertClass(asset_id, AssetId);
|
|
2461
|
+
const ret = wasm.registry_get(this.__wbg_ptr, asset_id.__wbg_ptr);
|
|
2462
|
+
return ret === 0 ? undefined : RegistryData.__wrap(ret);
|
|
2463
|
+
}
|
|
2464
|
+
/**
|
|
2465
|
+
* @param {AssetId} token_id
|
|
2466
|
+
* @returns {RegistryData | undefined}
|
|
2467
|
+
*/
|
|
2468
|
+
getAssetOfToken(token_id) {
|
|
2469
|
+
_assertClass(token_id, AssetId);
|
|
2470
|
+
const ret = wasm.registry_getAssetOfToken(this.__wbg_ptr, token_id.__wbg_ptr);
|
|
2471
|
+
return ret === 0 ? undefined : RegistryData.__wrap(ret);
|
|
2472
|
+
}
|
|
2473
|
+
/**
|
|
2474
|
+
* @param {Pset} pset
|
|
2475
|
+
* @returns {Pset}
|
|
2476
|
+
*/
|
|
2477
|
+
addContracts(pset) {
|
|
2478
|
+
_assertClass(pset, Pset);
|
|
2479
|
+
var ptr0 = pset.__destroy_into_raw();
|
|
2480
|
+
const ret = wasm.registry_addContracts(this.__wbg_ptr, ptr0);
|
|
2481
|
+
if (ret[2]) {
|
|
2482
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
2483
|
+
}
|
|
2484
|
+
return Pset.__wrap(ret[0]);
|
|
2485
|
+
}
|
|
2391
2486
|
}
|
|
2392
2487
|
module.exports.Registry = Registry;
|
|
2393
2488
|
|
|
2489
|
+
const RegistryDataFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
2490
|
+
? { register: () => {}, unregister: () => {} }
|
|
2491
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_registrydata_free(ptr >>> 0, 1));
|
|
2492
|
+
|
|
2493
|
+
class RegistryData {
|
|
2494
|
+
|
|
2495
|
+
static __wrap(ptr) {
|
|
2496
|
+
ptr = ptr >>> 0;
|
|
2497
|
+
const obj = Object.create(RegistryData.prototype);
|
|
2498
|
+
obj.__wbg_ptr = ptr;
|
|
2499
|
+
RegistryDataFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
2500
|
+
return obj;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
__destroy_into_raw() {
|
|
2504
|
+
const ptr = this.__wbg_ptr;
|
|
2505
|
+
this.__wbg_ptr = 0;
|
|
2506
|
+
RegistryDataFinalization.unregister(this);
|
|
2507
|
+
return ptr;
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
free() {
|
|
2511
|
+
const ptr = this.__destroy_into_raw();
|
|
2512
|
+
wasm.__wbg_registrydata_free(ptr, 0);
|
|
2513
|
+
}
|
|
2514
|
+
/**
|
|
2515
|
+
* @returns {number}
|
|
2516
|
+
*/
|
|
2517
|
+
precision() {
|
|
2518
|
+
const ret = wasm.registrydata_precision(this.__wbg_ptr);
|
|
2519
|
+
return ret;
|
|
2520
|
+
}
|
|
2521
|
+
/**
|
|
2522
|
+
* @returns {string}
|
|
2523
|
+
*/
|
|
2524
|
+
ticker() {
|
|
2525
|
+
let deferred1_0;
|
|
2526
|
+
let deferred1_1;
|
|
2527
|
+
try {
|
|
2528
|
+
const ret = wasm.registrydata_ticker(this.__wbg_ptr);
|
|
2529
|
+
deferred1_0 = ret[0];
|
|
2530
|
+
deferred1_1 = ret[1];
|
|
2531
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
2532
|
+
} finally {
|
|
2533
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
2534
|
+
}
|
|
2535
|
+
}
|
|
2536
|
+
/**
|
|
2537
|
+
* @returns {string}
|
|
2538
|
+
*/
|
|
2539
|
+
name() {
|
|
2540
|
+
let deferred1_0;
|
|
2541
|
+
let deferred1_1;
|
|
2542
|
+
try {
|
|
2543
|
+
const ret = wasm.registrydata_name(this.__wbg_ptr);
|
|
2544
|
+
deferred1_0 = ret[0];
|
|
2545
|
+
deferred1_1 = ret[1];
|
|
2546
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
2547
|
+
} finally {
|
|
2548
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
2549
|
+
}
|
|
2550
|
+
}
|
|
2551
|
+
/**
|
|
2552
|
+
* @returns {string}
|
|
2553
|
+
*/
|
|
2554
|
+
domain() {
|
|
2555
|
+
let deferred1_0;
|
|
2556
|
+
let deferred1_1;
|
|
2557
|
+
try {
|
|
2558
|
+
const ret = wasm.registrydata_domain(this.__wbg_ptr);
|
|
2559
|
+
deferred1_0 = ret[0];
|
|
2560
|
+
deferred1_1 = ret[1];
|
|
2561
|
+
return getStringFromWasm0(ret[0], ret[1]);
|
|
2562
|
+
} finally {
|
|
2563
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
2564
|
+
}
|
|
2565
|
+
}
|
|
2566
|
+
}
|
|
2567
|
+
module.exports.RegistryData = RegistryData;
|
|
2568
|
+
|
|
2394
2569
|
const RegistryPostFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
2395
2570
|
? { register: () => {}, unregister: () => {} }
|
|
2396
2571
|
: new FinalizationRegistry(ptr => wasm.__wbg_registrypost_free(ptr >>> 0, 1));
|
|
@@ -2872,7 +3047,7 @@ class TxBuilder {
|
|
|
2872
3047
|
*/
|
|
2873
3048
|
constructor(network) {
|
|
2874
3049
|
_assertClass(network, Network);
|
|
2875
|
-
const ret = wasm.
|
|
3050
|
+
const ret = wasm.network_txBuilder(network.__wbg_ptr);
|
|
2876
3051
|
this.__wbg_ptr = ret >>> 0;
|
|
2877
3052
|
TxBuilderFinalization.register(this, this.__wbg_ptr, this);
|
|
2878
3053
|
return this;
|
|
@@ -3790,6 +3965,16 @@ class Wollet {
|
|
|
3790
3965
|
}
|
|
3791
3966
|
return takeFromExternrefTable0(ret[0]);
|
|
3792
3967
|
}
|
|
3968
|
+
/**
|
|
3969
|
+
* @returns {AssetIds}
|
|
3970
|
+
*/
|
|
3971
|
+
assetsOwned() {
|
|
3972
|
+
const ret = wasm.wollet_assetsOwned(this.__wbg_ptr);
|
|
3973
|
+
if (ret[2]) {
|
|
3974
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
3975
|
+
}
|
|
3976
|
+
return AssetIds.__wrap(ret[0]);
|
|
3977
|
+
}
|
|
3793
3978
|
/**
|
|
3794
3979
|
* @returns {WalletTx[]}
|
|
3795
3980
|
*/
|
|
@@ -4296,7 +4481,7 @@ module.exports.__wbg_length_e2d2a49132c1b256 = function(arg0) {
|
|
|
4296
4481
|
return ret;
|
|
4297
4482
|
};
|
|
4298
4483
|
|
|
4299
|
-
module.exports.
|
|
4484
|
+
module.exports.__wbg_log_aec6ea630d443b32 = function(arg0, arg1) {
|
|
4300
4485
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
4301
4486
|
};
|
|
4302
4487
|
|
|
@@ -4327,7 +4512,7 @@ module.exports.__wbg_new_23a2665fac83c611 = function(arg0, arg1) {
|
|
|
4327
4512
|
const a = state0.a;
|
|
4328
4513
|
state0.a = 0;
|
|
4329
4514
|
try {
|
|
4330
|
-
return
|
|
4515
|
+
return __wbg_adapter_494(a, state0.b, arg0, arg1);
|
|
4331
4516
|
} finally {
|
|
4332
4517
|
state0.a = a;
|
|
4333
4518
|
}
|
|
@@ -4497,6 +4682,11 @@ module.exports.__wbg_recipient_new = function(arg0) {
|
|
|
4497
4682
|
return ret;
|
|
4498
4683
|
};
|
|
4499
4684
|
|
|
4685
|
+
module.exports.__wbg_registry_new = function(arg0) {
|
|
4686
|
+
const ret = Registry.__wrap(arg0);
|
|
4687
|
+
return ret;
|
|
4688
|
+
};
|
|
4689
|
+
|
|
4500
4690
|
module.exports.__wbg_requestDevice_b9904d52d001d64d = function(arg0, arg1) {
|
|
4501
4691
|
const ret = arg0.requestDevice(arg1);
|
|
4502
4692
|
return ret;
|
|
@@ -4748,23 +4938,23 @@ module.exports.__wbindgen_cb_drop = function(arg0) {
|
|
|
4748
4938
|
return ret;
|
|
4749
4939
|
};
|
|
4750
4940
|
|
|
4751
|
-
module.exports.
|
|
4752
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4941
|
+
module.exports.__wbindgen_closure_wrapper10481 = function(arg0, arg1, arg2) {
|
|
4942
|
+
const ret = makeMutClosure(arg0, arg1, 1217, __wbg_adapter_43);
|
|
4753
4943
|
return ret;
|
|
4754
4944
|
};
|
|
4755
4945
|
|
|
4756
|
-
module.exports.
|
|
4757
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4946
|
+
module.exports.__wbindgen_closure_wrapper4765 = function(arg0, arg1, arg2) {
|
|
4947
|
+
const ret = makeMutClosure(arg0, arg1, 290, __wbg_adapter_36);
|
|
4758
4948
|
return ret;
|
|
4759
4949
|
};
|
|
4760
4950
|
|
|
4761
|
-
module.exports.
|
|
4762
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4951
|
+
module.exports.__wbindgen_closure_wrapper4767 = function(arg0, arg1, arg2) {
|
|
4952
|
+
const ret = makeMutClosure(arg0, arg1, 289, __wbg_adapter_36);
|
|
4763
4953
|
return ret;
|
|
4764
4954
|
};
|
|
4765
4955
|
|
|
4766
|
-
module.exports.
|
|
4767
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4956
|
+
module.exports.__wbindgen_closure_wrapper4769 = function(arg0, arg1, arg2) {
|
|
4957
|
+
const ret = makeMutClosure(arg0, arg1, 289, __wbg_adapter_36);
|
|
4768
4958
|
return ret;
|
|
4769
4959
|
};
|
|
4770
4960
|
|
package/lwk_wasm_bg.wasm
CHANGED
|
Binary file
|