saito-wasm 0.2.56 → 0.2.57

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/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "saito-wasm"
3
- version = "0.2.56"
3
+ version = "0.2.57"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saito-wasm",
3
- "version": "0.2.56",
3
+ "version": "0.2.57",
4
4
  "description": "js wrappings around saito-core using wasm",
5
5
  "scripts": {
6
6
  "test": "./node_modules/.bin/jest",
package/pkg/node/index.js CHANGED
@@ -1,26 +1,17 @@
1
1
  let imports = {};
2
2
  imports['__wbindgen_placeholder__'] = module.exports;
3
3
  let wasm;
4
- const { MsgHandler } = require(String.raw`./snippets/saito-wasm-59397c6c3182d349/js/msg_handler.js`);
5
- const { TextEncoder, TextDecoder } = require(`util`);
4
+ const { MsgHandler } = require(String.raw`./snippets/saito-wasm-f545a736d18ddd45/js/msg_handler.js`);
5
+ const { TextDecoder, TextEncoder } = require(`util`);
6
6
 
7
7
  const heap = new Array(128).fill(undefined);
8
8
 
9
9
  heap.push(undefined, null, true, false);
10
10
 
11
- let heap_next = heap.length;
12
-
13
- function addHeapObject(obj) {
14
- if (heap_next === heap.length) heap.push(heap.length + 1);
15
- const idx = heap_next;
16
- heap_next = heap[idx];
17
-
18
- heap[idx] = obj;
19
- return idx;
20
- }
21
-
22
11
  function getObject(idx) { return heap[idx]; }
23
12
 
13
+ let heap_next = heap.length;
14
+
24
15
  function dropObject(idx) {
25
16
  if (idx < 132) return;
26
17
  heap[idx] = heap_next;
@@ -33,7 +24,18 @@ function takeObject(idx) {
33
24
  return ret;
34
25
  }
35
26
 
36
- let WASM_VECTOR_LEN = 0;
27
+ function addHeapObject(obj) {
28
+ if (heap_next === heap.length) heap.push(heap.length + 1);
29
+ const idx = heap_next;
30
+ heap_next = heap[idx];
31
+
32
+ heap[idx] = obj;
33
+ return idx;
34
+ }
35
+
36
+ let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
37
+
38
+ cachedTextDecoder.decode();
37
39
 
38
40
  let cachedUint8Memory0 = null;
39
41
 
@@ -44,6 +46,13 @@ function getUint8Memory0() {
44
46
  return cachedUint8Memory0;
45
47
  }
46
48
 
49
+ function getStringFromWasm0(ptr, len) {
50
+ ptr = ptr >>> 0;
51
+ return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
52
+ }
53
+
54
+ let WASM_VECTOR_LEN = 0;
55
+
47
56
  let cachedTextEncoder = new TextEncoder('utf-8');
48
57
 
49
58
  const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
@@ -111,15 +120,6 @@ function getInt32Memory0() {
111
120
  return cachedInt32Memory0;
112
121
  }
113
122
 
114
- let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
115
-
116
- cachedTextDecoder.decode();
117
-
118
- function getStringFromWasm0(ptr, len) {
119
- ptr = ptr >>> 0;
120
- return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
121
- }
122
-
123
123
  let cachedFloat64Memory0 = null;
124
124
 
125
125
  function getFloat64Memory0() {
@@ -2352,36 +2352,17 @@ class WasmWalletSlip {
2352
2352
  }
2353
2353
  module.exports.WasmWalletSlip = WasmWalletSlip;
2354
2354
 
2355
- module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
2356
- const ret = BigInt.asUintN(64, arg0);
2357
- return addHeapObject(ret);
2358
- };
2359
-
2360
2355
  module.exports.__wbindgen_object_drop_ref = function(arg0) {
2361
2356
  takeObject(arg0);
2362
2357
  };
2363
2358
 
2364
- module.exports.__wbg_wasmtransaction_new = function(arg0) {
2365
- const ret = WasmTransaction.__wrap(arg0);
2366
- return addHeapObject(ret);
2367
- };
2368
-
2369
2359
  module.exports.__wbg_wasmwallet_new = function(arg0) {
2370
2360
  const ret = WasmWallet.__wrap(arg0);
2371
2361
  return addHeapObject(ret);
2372
2362
  };
2373
2363
 
2374
- module.exports.__wbindgen_string_get = function(arg0, arg1) {
2375
- const obj = getObject(arg1);
2376
- const ret = typeof(obj) === 'string' ? obj : undefined;
2377
- var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
2378
- var len1 = WASM_VECTOR_LEN;
2379
- getInt32Memory0()[arg0 / 4 + 1] = len1;
2380
- getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2381
- };
2382
-
2383
- module.exports.__wbg_wasmpeer_new = function(arg0) {
2384
- const ret = WasmPeer.__wrap(arg0);
2364
+ module.exports.__wbindgen_bigint_from_u64 = function(arg0) {
2365
+ const ret = BigInt.asUintN(64, arg0);
2385
2366
  return addHeapObject(ret);
2386
2367
  };
2387
2368
 
@@ -2395,13 +2376,13 @@ module.exports.__wbg_wasmslip_new = function(arg0) {
2395
2376
  return addHeapObject(ret);
2396
2377
  };
2397
2378
 
2398
- module.exports.__wbg_wasmbalancesnapshot_new = function(arg0) {
2399
- const ret = WasmBalanceSnapshot.__wrap(arg0);
2379
+ module.exports.__wbg_wasmpeer_new = function(arg0) {
2380
+ const ret = WasmPeer.__wrap(arg0);
2400
2381
  return addHeapObject(ret);
2401
2382
  };
2402
2383
 
2403
- module.exports.__wbg_wasmblockchain_new = function(arg0) {
2404
- const ret = WasmBlockchain.__wrap(arg0);
2384
+ module.exports.__wbg_wasmtransaction_new = function(arg0) {
2385
+ const ret = WasmTransaction.__wrap(arg0);
2405
2386
  return addHeapObject(ret);
2406
2387
  };
2407
2388
 
@@ -2410,20 +2391,39 @@ module.exports.__wbg_wasmblock_new = function(arg0) {
2410
2391
  return addHeapObject(ret);
2411
2392
  };
2412
2393
 
2394
+ module.exports.__wbindgen_string_get = function(arg0, arg1) {
2395
+ const obj = getObject(arg1);
2396
+ const ret = typeof(obj) === 'string' ? obj : undefined;
2397
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
2398
+ var len1 = WASM_VECTOR_LEN;
2399
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
2400
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2401
+ };
2402
+
2403
+ module.exports.__wbg_wasmblockchain_new = function(arg0) {
2404
+ const ret = WasmBlockchain.__wrap(arg0);
2405
+ return addHeapObject(ret);
2406
+ };
2407
+
2408
+ module.exports.__wbg_wasmbalancesnapshot_new = function(arg0) {
2409
+ const ret = WasmBalanceSnapshot.__wrap(arg0);
2410
+ return addHeapObject(ret);
2411
+ };
2412
+
2413
2413
  module.exports.__wbg_wasmwalletslip_new = function(arg0) {
2414
2414
  const ret = WasmWalletSlip.__wrap(arg0);
2415
2415
  return addHeapObject(ret);
2416
2416
  };
2417
2417
 
2418
- module.exports.__wbg_sendmessage_89c5d953db845c44 = function(arg0, arg1) {
2418
+ module.exports.__wbg_sendmessage_0a8367ef16ae86b2 = function(arg0, arg1) {
2419
2419
  MsgHandler.send_message(takeObject(arg0), getObject(arg1));
2420
2420
  };
2421
2421
 
2422
- module.exports.__wbg_sendmessagetoall_7e1ec9cbf4207137 = function(arg0, arg1) {
2422
+ module.exports.__wbg_sendmessagetoall_a6324b39398c70dc = function(arg0, arg1) {
2423
2423
  MsgHandler.send_message_to_all(getObject(arg0), getObject(arg1));
2424
2424
  };
2425
2425
 
2426
- module.exports.__wbg_connecttopeer_c02c6ec6d841f3dd = function() { return handleError(function (arg0, arg1, arg2) {
2426
+ module.exports.__wbg_connecttopeer_15c4a972707baa7b = function() { return handleError(function (arg0, arg1, arg2) {
2427
2427
  let deferred0_0;
2428
2428
  let deferred0_1;
2429
2429
  try {
@@ -2436,12 +2436,12 @@ module.exports.__wbg_connecttopeer_c02c6ec6d841f3dd = function() { return handle
2436
2436
  }
2437
2437
  }, arguments) };
2438
2438
 
2439
- module.exports.__wbg_disconnectfrompeer_a9f99c3bee188581 = function() { return handleError(function (arg0) {
2439
+ module.exports.__wbg_disconnectfrompeer_8fa3006f2d431e10 = function() { return handleError(function (arg0) {
2440
2440
  const ret = MsgHandler.disconnect_from_peer(takeObject(arg0));
2441
2441
  return addHeapObject(ret);
2442
2442
  }, arguments) };
2443
2443
 
2444
- module.exports.__wbg_fetchblockfrompeer_894215362129ea00 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2444
+ module.exports.__wbg_fetchblockfrompeer_a0deae97bf1b1447 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2445
2445
  let deferred0_0;
2446
2446
  let deferred0_1;
2447
2447
  try {
@@ -2454,7 +2454,7 @@ module.exports.__wbg_fetchblockfrompeer_894215362129ea00 = function() { return h
2454
2454
  }
2455
2455
  }, arguments) };
2456
2456
 
2457
- module.exports.__wbg_writevalue_3aa02414a189148b = function(arg0, arg1, arg2) {
2457
+ module.exports.__wbg_writevalue_3b2df90013092207 = function(arg0, arg1, arg2) {
2458
2458
  let deferred0_0;
2459
2459
  let deferred0_1;
2460
2460
  try {
@@ -2466,7 +2466,7 @@ module.exports.__wbg_writevalue_3aa02414a189148b = function(arg0, arg1, arg2) {
2466
2466
  }
2467
2467
  };
2468
2468
 
2469
- module.exports.__wbg_appendvalue_e2ea2707bb1c3803 = function(arg0, arg1, arg2) {
2469
+ module.exports.__wbg_appendvalue_e621acc4d809225b = function(arg0, arg1, arg2) {
2470
2470
  let deferred0_0;
2471
2471
  let deferred0_1;
2472
2472
  try {
@@ -2478,7 +2478,7 @@ module.exports.__wbg_appendvalue_e2ea2707bb1c3803 = function(arg0, arg1, arg2) {
2478
2478
  }
2479
2479
  };
2480
2480
 
2481
- module.exports.__wbg_flushdata_28096a878b65fbcc = function(arg0, arg1) {
2481
+ module.exports.__wbg_flushdata_c8c6ca09ff0c4e32 = function(arg0, arg1) {
2482
2482
  let deferred0_0;
2483
2483
  let deferred0_1;
2484
2484
  try {
@@ -2490,7 +2490,7 @@ module.exports.__wbg_flushdata_28096a878b65fbcc = function(arg0, arg1) {
2490
2490
  }
2491
2491
  };
2492
2492
 
2493
- module.exports.__wbg_readvalue_e422842b5fd3084c = function() { return handleError(function (arg0, arg1) {
2493
+ module.exports.__wbg_readvalue_863e4a67506207be = function() { return handleError(function (arg0, arg1) {
2494
2494
  let deferred0_0;
2495
2495
  let deferred0_1;
2496
2496
  try {
@@ -2503,12 +2503,12 @@ module.exports.__wbg_readvalue_e422842b5fd3084c = function() { return handleErro
2503
2503
  }
2504
2504
  }, arguments) };
2505
2505
 
2506
- module.exports.__wbg_loadblockfilelist_1b3419de2509b26e = function() { return handleError(function () {
2506
+ module.exports.__wbg_loadblockfilelist_93a17d8b77a20cea = function() { return handleError(function () {
2507
2507
  const ret = MsgHandler.load_block_file_list();
2508
2508
  return addHeapObject(ret);
2509
2509
  }, arguments) };
2510
2510
 
2511
- module.exports.__wbg_isexistingfile_ecafce5179cbd8e0 = function() { return handleError(function (arg0, arg1) {
2511
+ module.exports.__wbg_isexistingfile_0f8efb9479b3bdd1 = function() { return handleError(function (arg0, arg1) {
2512
2512
  let deferred0_0;
2513
2513
  let deferred0_1;
2514
2514
  try {
@@ -2521,7 +2521,7 @@ module.exports.__wbg_isexistingfile_ecafce5179cbd8e0 = function() { return handl
2521
2521
  }
2522
2522
  }, arguments) };
2523
2523
 
2524
- module.exports.__wbg_removevalue_df9e74dfe383bc4e = function() { return handleError(function (arg0, arg1) {
2524
+ module.exports.__wbg_removevalue_5c787af6bda89d15 = function() { return handleError(function (arg0, arg1) {
2525
2525
  let deferred0_0;
2526
2526
  let deferred0_1;
2527
2527
  try {
@@ -2534,7 +2534,7 @@ module.exports.__wbg_removevalue_df9e74dfe383bc4e = function() { return handleEr
2534
2534
  }
2535
2535
  }, arguments) };
2536
2536
 
2537
- module.exports.__wbg_ensureblockdirectoryexists_a83c598e26c77a7b = function() { return handleError(function (arg0, arg1) {
2537
+ module.exports.__wbg_ensureblockdirectoryexists_94af6d8f5eae5efb = function() { return handleError(function (arg0, arg1) {
2538
2538
  let deferred0_0;
2539
2539
  let deferred0_1;
2540
2540
  try {
@@ -2546,19 +2546,19 @@ module.exports.__wbg_ensureblockdirectoryexists_a83c598e26c77a7b = function() {
2546
2546
  }
2547
2547
  }, arguments) };
2548
2548
 
2549
- module.exports.__wbg_processapicall_68839ea21dae2364 = function(arg0, arg1, arg2) {
2549
+ module.exports.__wbg_processapicall_361432861703dc09 = function(arg0, arg1, arg2) {
2550
2550
  MsgHandler.process_api_call(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2551
2551
  };
2552
2552
 
2553
- module.exports.__wbg_processapisuccess_250b8696a2534686 = function(arg0, arg1, arg2) {
2553
+ module.exports.__wbg_processapisuccess_bb16c12b10e6a530 = function(arg0, arg1, arg2) {
2554
2554
  MsgHandler.process_api_success(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2555
2555
  };
2556
2556
 
2557
- module.exports.__wbg_processapierror_1c02730a02cd3310 = function(arg0, arg1, arg2) {
2557
+ module.exports.__wbg_processapierror_16b79ab7a1c78baf = function(arg0, arg1, arg2) {
2558
2558
  MsgHandler.process_api_error(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2559
2559
  };
2560
2560
 
2561
- module.exports.__wbg_sendinterfaceevent_3e3d3e5dd7c01a25 = function(arg0, arg1, arg2, arg3, arg4) {
2561
+ module.exports.__wbg_sendinterfaceevent_565ca96135c1e2f8 = function(arg0, arg1, arg2, arg3, arg4) {
2562
2562
  let deferred0_0;
2563
2563
  let deferred0_1;
2564
2564
  let deferred1_0;
@@ -2575,7 +2575,7 @@ module.exports.__wbg_sendinterfaceevent_3e3d3e5dd7c01a25 = function(arg0, arg1,
2575
2575
  }
2576
2576
  };
2577
2577
 
2578
- module.exports.__wbg_sendblocksuccess_252ef1b034261e80 = function(arg0, arg1, arg2) {
2578
+ module.exports.__wbg_sendblocksuccess_f7d85532b9b7a9f8 = function(arg0, arg1, arg2) {
2579
2579
  let deferred0_0;
2580
2580
  let deferred0_1;
2581
2581
  try {
@@ -2587,11 +2587,11 @@ module.exports.__wbg_sendblocksuccess_252ef1b034261e80 = function(arg0, arg1, ar
2587
2587
  }
2588
2588
  };
2589
2589
 
2590
- module.exports.__wbg_sendwalletupdate_f94d1d7aab3b6ce7 = function() {
2590
+ module.exports.__wbg_sendwalletupdate_471dd479c0568e30 = function() {
2591
2591
  MsgHandler.send_wallet_update();
2592
2592
  };
2593
2593
 
2594
- module.exports.__wbg_sendnewversionalert_ba626c3bcf984092 = function(arg0, arg1, arg2) {
2594
+ module.exports.__wbg_sendnewversionalert_af819f6cb8668d79 = function(arg0, arg1, arg2) {
2595
2595
  let deferred0_0;
2596
2596
  let deferred0_1;
2597
2597
  try {
@@ -2603,19 +2603,19 @@ module.exports.__wbg_sendnewversionalert_ba626c3bcf984092 = function(arg0, arg1,
2603
2603
  }
2604
2604
  };
2605
2605
 
2606
- module.exports.__wbg_sendblockfetchstatusevent_850b3ff30635642a = function(arg0) {
2606
+ module.exports.__wbg_sendblockfetchstatusevent_ca311bdb107aa977 = function(arg0) {
2607
2607
  MsgHandler.send_block_fetch_status_event(BigInt.asUintN(64, arg0));
2608
2608
  };
2609
2609
 
2610
- module.exports.__wbg_savewallet_3a6dfcb74d2a467a = function() {
2610
+ module.exports.__wbg_savewallet_8a7a94abb32d99f1 = function() {
2611
2611
  MsgHandler.save_wallet();
2612
2612
  };
2613
2613
 
2614
- module.exports.__wbg_loadwallet_756bd63dbad4b559 = function() {
2614
+ module.exports.__wbg_loadwallet_93de9ba8d9ced086 = function() {
2615
2615
  MsgHandler.load_wallet();
2616
2616
  };
2617
2617
 
2618
- module.exports.__wbg_getmyservices_90dfe938e90900f4 = function() {
2618
+ module.exports.__wbg_getmyservices_86c92ca44e224e6f = function() {
2619
2619
  const ret = MsgHandler.get_my_services();
2620
2620
  _assertClass(ret, WasmPeerServiceList);
2621
2621
  var ptr1 = ret.__destroy_into_raw();
@@ -3023,7 +3023,7 @@ module.exports.__wbindgen_memory = function() {
3023
3023
  return addHeapObject(ret);
3024
3024
  };
3025
3025
 
3026
- module.exports.__wbindgen_closure_wrapper1308 = function(arg0, arg1, arg2) {
3026
+ module.exports.__wbindgen_closure_wrapper1307 = function(arg0, arg1, arg2) {
3027
3027
  const ret = makeMutClosure(arg0, arg1, 471, __wbg_adapter_38);
3028
3028
  return addHeapObject(ret);
3029
3029
  };
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saito-wasm",
3
- "version": "0.2.56",
3
+ "version": "0.2.57",
4
4
  "files": [
5
5
  "index_bg.wasm",
6
6
  "index.js",
package/pkg/web/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { MsgHandler } from './snippets/saito-wasm-59397c6c3182d349/js/msg_handler.js';
1
+ import { MsgHandler } from './snippets/saito-wasm-f545a736d18ddd45/js/msg_handler.js';
2
2
 
3
3
  let wasm;
4
4
 
@@ -6,19 +6,10 @@ const heap = new Array(128).fill(undefined);
6
6
 
7
7
  heap.push(undefined, null, true, false);
8
8
 
9
- let heap_next = heap.length;
10
-
11
- function addHeapObject(obj) {
12
- if (heap_next === heap.length) heap.push(heap.length + 1);
13
- const idx = heap_next;
14
- heap_next = heap[idx];
15
-
16
- heap[idx] = obj;
17
- return idx;
18
- }
19
-
20
9
  function getObject(idx) { return heap[idx]; }
21
10
 
11
+ let heap_next = heap.length;
12
+
22
13
  function dropObject(idx) {
23
14
  if (idx < 132) return;
24
15
  heap[idx] = heap_next;
@@ -31,7 +22,18 @@ function takeObject(idx) {
31
22
  return ret;
32
23
  }
33
24
 
34
- let WASM_VECTOR_LEN = 0;
25
+ function addHeapObject(obj) {
26
+ if (heap_next === heap.length) heap.push(heap.length + 1);
27
+ const idx = heap_next;
28
+ heap_next = heap[idx];
29
+
30
+ heap[idx] = obj;
31
+ return idx;
32
+ }
33
+
34
+ const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
35
+
36
+ if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
35
37
 
36
38
  let cachedUint8Memory0 = null;
37
39
 
@@ -42,6 +44,13 @@ function getUint8Memory0() {
42
44
  return cachedUint8Memory0;
43
45
  }
44
46
 
47
+ function getStringFromWasm0(ptr, len) {
48
+ ptr = ptr >>> 0;
49
+ return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
50
+ }
51
+
52
+ let WASM_VECTOR_LEN = 0;
53
+
45
54
  const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
46
55
 
47
56
  const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
@@ -109,15 +118,6 @@ function getInt32Memory0() {
109
118
  return cachedInt32Memory0;
110
119
  }
111
120
 
112
- const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
113
-
114
- if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
115
-
116
- function getStringFromWasm0(ptr, len) {
117
- ptr = ptr >>> 0;
118
- return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
119
- }
120
-
121
121
  let cachedFloat64Memory0 = null;
122
122
 
123
123
  function getFloat64Memory0() {
@@ -2370,31 +2370,15 @@ async function __wbg_load(module, imports) {
2370
2370
  function __wbg_get_imports() {
2371
2371
  const imports = {};
2372
2372
  imports.wbg = {};
2373
- imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
2374
- const ret = BigInt.asUintN(64, arg0);
2375
- return addHeapObject(ret);
2376
- };
2377
2373
  imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
2378
2374
  takeObject(arg0);
2379
2375
  };
2380
- imports.wbg.__wbg_wasmtransaction_new = function(arg0) {
2381
- const ret = WasmTransaction.__wrap(arg0);
2382
- return addHeapObject(ret);
2383
- };
2384
2376
  imports.wbg.__wbg_wasmwallet_new = function(arg0) {
2385
2377
  const ret = WasmWallet.__wrap(arg0);
2386
2378
  return addHeapObject(ret);
2387
2379
  };
2388
- imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
2389
- const obj = getObject(arg1);
2390
- const ret = typeof(obj) === 'string' ? obj : undefined;
2391
- var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
2392
- var len1 = WASM_VECTOR_LEN;
2393
- getInt32Memory0()[arg0 / 4 + 1] = len1;
2394
- getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2395
- };
2396
- imports.wbg.__wbg_wasmpeer_new = function(arg0) {
2397
- const ret = WasmPeer.__wrap(arg0);
2380
+ imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) {
2381
+ const ret = BigInt.asUintN(64, arg0);
2398
2382
  return addHeapObject(ret);
2399
2383
  };
2400
2384
  imports.wbg.__wbindgen_string_new = function(arg0, arg1) {
@@ -2405,29 +2389,45 @@ function __wbg_get_imports() {
2405
2389
  const ret = WasmSlip.__wrap(arg0);
2406
2390
  return addHeapObject(ret);
2407
2391
  };
2408
- imports.wbg.__wbg_wasmbalancesnapshot_new = function(arg0) {
2409
- const ret = WasmBalanceSnapshot.__wrap(arg0);
2392
+ imports.wbg.__wbg_wasmpeer_new = function(arg0) {
2393
+ const ret = WasmPeer.__wrap(arg0);
2410
2394
  return addHeapObject(ret);
2411
2395
  };
2412
- imports.wbg.__wbg_wasmblockchain_new = function(arg0) {
2413
- const ret = WasmBlockchain.__wrap(arg0);
2396
+ imports.wbg.__wbg_wasmtransaction_new = function(arg0) {
2397
+ const ret = WasmTransaction.__wrap(arg0);
2414
2398
  return addHeapObject(ret);
2415
2399
  };
2416
2400
  imports.wbg.__wbg_wasmblock_new = function(arg0) {
2417
2401
  const ret = WasmBlock.__wrap(arg0);
2418
2402
  return addHeapObject(ret);
2419
2403
  };
2404
+ imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
2405
+ const obj = getObject(arg1);
2406
+ const ret = typeof(obj) === 'string' ? obj : undefined;
2407
+ var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
2408
+ var len1 = WASM_VECTOR_LEN;
2409
+ getInt32Memory0()[arg0 / 4 + 1] = len1;
2410
+ getInt32Memory0()[arg0 / 4 + 0] = ptr1;
2411
+ };
2412
+ imports.wbg.__wbg_wasmblockchain_new = function(arg0) {
2413
+ const ret = WasmBlockchain.__wrap(arg0);
2414
+ return addHeapObject(ret);
2415
+ };
2416
+ imports.wbg.__wbg_wasmbalancesnapshot_new = function(arg0) {
2417
+ const ret = WasmBalanceSnapshot.__wrap(arg0);
2418
+ return addHeapObject(ret);
2419
+ };
2420
2420
  imports.wbg.__wbg_wasmwalletslip_new = function(arg0) {
2421
2421
  const ret = WasmWalletSlip.__wrap(arg0);
2422
2422
  return addHeapObject(ret);
2423
2423
  };
2424
- imports.wbg.__wbg_sendmessage_89c5d953db845c44 = function(arg0, arg1) {
2424
+ imports.wbg.__wbg_sendmessage_0a8367ef16ae86b2 = function(arg0, arg1) {
2425
2425
  MsgHandler.send_message(takeObject(arg0), getObject(arg1));
2426
2426
  };
2427
- imports.wbg.__wbg_sendmessagetoall_7e1ec9cbf4207137 = function(arg0, arg1) {
2427
+ imports.wbg.__wbg_sendmessagetoall_a6324b39398c70dc = function(arg0, arg1) {
2428
2428
  MsgHandler.send_message_to_all(getObject(arg0), getObject(arg1));
2429
2429
  };
2430
- imports.wbg.__wbg_connecttopeer_c02c6ec6d841f3dd = function() { return handleError(function (arg0, arg1, arg2) {
2430
+ imports.wbg.__wbg_connecttopeer_15c4a972707baa7b = function() { return handleError(function (arg0, arg1, arg2) {
2431
2431
  let deferred0_0;
2432
2432
  let deferred0_1;
2433
2433
  try {
@@ -2439,11 +2439,11 @@ function __wbg_get_imports() {
2439
2439
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2440
2440
  }
2441
2441
  }, arguments) };
2442
- imports.wbg.__wbg_disconnectfrompeer_a9f99c3bee188581 = function() { return handleError(function (arg0) {
2442
+ imports.wbg.__wbg_disconnectfrompeer_8fa3006f2d431e10 = function() { return handleError(function (arg0) {
2443
2443
  const ret = MsgHandler.disconnect_from_peer(takeObject(arg0));
2444
2444
  return addHeapObject(ret);
2445
2445
  }, arguments) };
2446
- imports.wbg.__wbg_fetchblockfrompeer_894215362129ea00 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2446
+ imports.wbg.__wbg_fetchblockfrompeer_a0deae97bf1b1447 = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
2447
2447
  let deferred0_0;
2448
2448
  let deferred0_1;
2449
2449
  try {
@@ -2455,7 +2455,7 @@ function __wbg_get_imports() {
2455
2455
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2456
2456
  }
2457
2457
  }, arguments) };
2458
- imports.wbg.__wbg_writevalue_3aa02414a189148b = function(arg0, arg1, arg2) {
2458
+ imports.wbg.__wbg_writevalue_3b2df90013092207 = function(arg0, arg1, arg2) {
2459
2459
  let deferred0_0;
2460
2460
  let deferred0_1;
2461
2461
  try {
@@ -2466,7 +2466,7 @@ function __wbg_get_imports() {
2466
2466
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2467
2467
  }
2468
2468
  };
2469
- imports.wbg.__wbg_appendvalue_e2ea2707bb1c3803 = function(arg0, arg1, arg2) {
2469
+ imports.wbg.__wbg_appendvalue_e621acc4d809225b = function(arg0, arg1, arg2) {
2470
2470
  let deferred0_0;
2471
2471
  let deferred0_1;
2472
2472
  try {
@@ -2477,7 +2477,7 @@ function __wbg_get_imports() {
2477
2477
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2478
2478
  }
2479
2479
  };
2480
- imports.wbg.__wbg_flushdata_28096a878b65fbcc = function(arg0, arg1) {
2480
+ imports.wbg.__wbg_flushdata_c8c6ca09ff0c4e32 = function(arg0, arg1) {
2481
2481
  let deferred0_0;
2482
2482
  let deferred0_1;
2483
2483
  try {
@@ -2488,7 +2488,7 @@ function __wbg_get_imports() {
2488
2488
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2489
2489
  }
2490
2490
  };
2491
- imports.wbg.__wbg_readvalue_e422842b5fd3084c = function() { return handleError(function (arg0, arg1) {
2491
+ imports.wbg.__wbg_readvalue_863e4a67506207be = function() { return handleError(function (arg0, arg1) {
2492
2492
  let deferred0_0;
2493
2493
  let deferred0_1;
2494
2494
  try {
@@ -2500,11 +2500,11 @@ function __wbg_get_imports() {
2500
2500
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2501
2501
  }
2502
2502
  }, arguments) };
2503
- imports.wbg.__wbg_loadblockfilelist_1b3419de2509b26e = function() { return handleError(function () {
2503
+ imports.wbg.__wbg_loadblockfilelist_93a17d8b77a20cea = function() { return handleError(function () {
2504
2504
  const ret = MsgHandler.load_block_file_list();
2505
2505
  return addHeapObject(ret);
2506
2506
  }, arguments) };
2507
- imports.wbg.__wbg_isexistingfile_ecafce5179cbd8e0 = function() { return handleError(function (arg0, arg1) {
2507
+ imports.wbg.__wbg_isexistingfile_0f8efb9479b3bdd1 = function() { return handleError(function (arg0, arg1) {
2508
2508
  let deferred0_0;
2509
2509
  let deferred0_1;
2510
2510
  try {
@@ -2516,7 +2516,7 @@ function __wbg_get_imports() {
2516
2516
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2517
2517
  }
2518
2518
  }, arguments) };
2519
- imports.wbg.__wbg_removevalue_df9e74dfe383bc4e = function() { return handleError(function (arg0, arg1) {
2519
+ imports.wbg.__wbg_removevalue_5c787af6bda89d15 = function() { return handleError(function (arg0, arg1) {
2520
2520
  let deferred0_0;
2521
2521
  let deferred0_1;
2522
2522
  try {
@@ -2528,7 +2528,7 @@ function __wbg_get_imports() {
2528
2528
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2529
2529
  }
2530
2530
  }, arguments) };
2531
- imports.wbg.__wbg_ensureblockdirectoryexists_a83c598e26c77a7b = function() { return handleError(function (arg0, arg1) {
2531
+ imports.wbg.__wbg_ensureblockdirectoryexists_94af6d8f5eae5efb = function() { return handleError(function (arg0, arg1) {
2532
2532
  let deferred0_0;
2533
2533
  let deferred0_1;
2534
2534
  try {
@@ -2539,16 +2539,16 @@ function __wbg_get_imports() {
2539
2539
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2540
2540
  }
2541
2541
  }, arguments) };
2542
- imports.wbg.__wbg_processapicall_68839ea21dae2364 = function(arg0, arg1, arg2) {
2542
+ imports.wbg.__wbg_processapicall_361432861703dc09 = function(arg0, arg1, arg2) {
2543
2543
  MsgHandler.process_api_call(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2544
2544
  };
2545
- imports.wbg.__wbg_processapisuccess_250b8696a2534686 = function(arg0, arg1, arg2) {
2545
+ imports.wbg.__wbg_processapisuccess_bb16c12b10e6a530 = function(arg0, arg1, arg2) {
2546
2546
  MsgHandler.process_api_success(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2547
2547
  };
2548
- imports.wbg.__wbg_processapierror_1c02730a02cd3310 = function(arg0, arg1, arg2) {
2548
+ imports.wbg.__wbg_processapierror_16b79ab7a1c78baf = function(arg0, arg1, arg2) {
2549
2549
  MsgHandler.process_api_error(takeObject(arg0), arg1 >>> 0, takeObject(arg2));
2550
2550
  };
2551
- imports.wbg.__wbg_sendinterfaceevent_3e3d3e5dd7c01a25 = function(arg0, arg1, arg2, arg3, arg4) {
2551
+ imports.wbg.__wbg_sendinterfaceevent_565ca96135c1e2f8 = function(arg0, arg1, arg2, arg3, arg4) {
2552
2552
  let deferred0_0;
2553
2553
  let deferred0_1;
2554
2554
  let deferred1_0;
@@ -2564,7 +2564,7 @@ function __wbg_get_imports() {
2564
2564
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
2565
2565
  }
2566
2566
  };
2567
- imports.wbg.__wbg_sendblocksuccess_252ef1b034261e80 = function(arg0, arg1, arg2) {
2567
+ imports.wbg.__wbg_sendblocksuccess_f7d85532b9b7a9f8 = function(arg0, arg1, arg2) {
2568
2568
  let deferred0_0;
2569
2569
  let deferred0_1;
2570
2570
  try {
@@ -2575,10 +2575,10 @@ function __wbg_get_imports() {
2575
2575
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2576
2576
  }
2577
2577
  };
2578
- imports.wbg.__wbg_sendwalletupdate_f94d1d7aab3b6ce7 = function() {
2578
+ imports.wbg.__wbg_sendwalletupdate_471dd479c0568e30 = function() {
2579
2579
  MsgHandler.send_wallet_update();
2580
2580
  };
2581
- imports.wbg.__wbg_sendnewversionalert_ba626c3bcf984092 = function(arg0, arg1, arg2) {
2581
+ imports.wbg.__wbg_sendnewversionalert_af819f6cb8668d79 = function(arg0, arg1, arg2) {
2582
2582
  let deferred0_0;
2583
2583
  let deferred0_1;
2584
2584
  try {
@@ -2589,16 +2589,16 @@ function __wbg_get_imports() {
2589
2589
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
2590
2590
  }
2591
2591
  };
2592
- imports.wbg.__wbg_sendblockfetchstatusevent_850b3ff30635642a = function(arg0) {
2592
+ imports.wbg.__wbg_sendblockfetchstatusevent_ca311bdb107aa977 = function(arg0) {
2593
2593
  MsgHandler.send_block_fetch_status_event(BigInt.asUintN(64, arg0));
2594
2594
  };
2595
- imports.wbg.__wbg_savewallet_3a6dfcb74d2a467a = function() {
2595
+ imports.wbg.__wbg_savewallet_8a7a94abb32d99f1 = function() {
2596
2596
  MsgHandler.save_wallet();
2597
2597
  };
2598
- imports.wbg.__wbg_loadwallet_756bd63dbad4b559 = function() {
2598
+ imports.wbg.__wbg_loadwallet_93de9ba8d9ced086 = function() {
2599
2599
  MsgHandler.load_wallet();
2600
2600
  };
2601
- imports.wbg.__wbg_getmyservices_90dfe938e90900f4 = function() {
2601
+ imports.wbg.__wbg_getmyservices_86c92ca44e224e6f = function() {
2602
2602
  const ret = MsgHandler.get_my_services();
2603
2603
  _assertClass(ret, WasmPeerServiceList);
2604
2604
  var ptr1 = ret.__destroy_into_raw();
@@ -2932,7 +2932,7 @@ function __wbg_get_imports() {
2932
2932
  const ret = wasm.memory;
2933
2933
  return addHeapObject(ret);
2934
2934
  };
2935
- imports.wbg.__wbindgen_closure_wrapper1308 = function(arg0, arg1, arg2) {
2935
+ imports.wbg.__wbindgen_closure_wrapper1307 = function(arg0, arg1, arg2) {
2936
2936
  const ret = makeMutClosure(arg0, arg1, 471, __wbg_adapter_38);
2937
2937
  return addHeapObject(ret);
2938
2938
  };
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saito-wasm",
3
- "version": "0.2.56",
3
+ "version": "0.2.57",
4
4
  "files": [
5
5
  "index_bg.wasm",
6
6
  "index.js",