@miden-sdk/miden-sdk 0.14.8 → 0.14.9

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.
Files changed (37) hide show
  1. package/dist/mt/{Cargo-CUP4fvtE.js → Cargo-DKB2aRX-.js} +95 -68
  2. package/dist/mt/{Cargo-CUP4fvtE.js.map → Cargo-DKB2aRX-.js.map} +1 -1
  3. package/dist/mt/api-types.d.ts +15 -0
  4. package/dist/mt/assets/miden_client_web.wasm +0 -0
  5. package/dist/mt/crates/miden_client_web.d.ts +22 -0
  6. package/dist/mt/eager.js +1 -1
  7. package/dist/mt/index.d.ts +4 -2
  8. package/dist/mt/index.js +57 -13
  9. package/dist/mt/index.js.map +1 -1
  10. package/dist/mt/wasm.js +1 -1
  11. package/dist/mt/workerHelpers.js +1 -1
  12. package/dist/mt/workers/{Cargo-CUP4fvtE-DQbaP5ul.js → Cargo-DKB2aRX--C6T4l3AF.js} +95 -68
  13. package/dist/mt/workers/{Cargo-CUP4fvtE-DQbaP5ul.js.map → Cargo-DKB2aRX--C6T4l3AF.js.map} +1 -1
  14. package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
  15. package/dist/mt/workers/web-client-methods-worker.js +96 -69
  16. package/dist/mt/workers/web-client-methods-worker.js.map +1 -1
  17. package/dist/mt/workers/web-client-methods-worker.module.js +1 -1
  18. package/dist/mt/workers/web-client-methods-worker.module.js.map +1 -1
  19. package/dist/mt/workers/workerHelpers.js +1 -1
  20. package/dist/st/{Cargo-C35FdGuj.js → Cargo-jOTNoFyS.js} +97 -70
  21. package/dist/st/{Cargo-C35FdGuj.js.map → Cargo-jOTNoFyS.js.map} +1 -1
  22. package/dist/st/api-types.d.ts +15 -0
  23. package/dist/st/assets/miden_client_web.wasm +0 -0
  24. package/dist/st/crates/miden_client_web.d.ts +22 -0
  25. package/dist/st/eager.js +1 -1
  26. package/dist/st/index.d.ts +4 -2
  27. package/dist/st/index.js +57 -13
  28. package/dist/st/index.js.map +1 -1
  29. package/dist/st/wasm.js +1 -1
  30. package/dist/st/workers/{Cargo-C35FdGuj-DAEzC4n9.js → Cargo-jOTNoFyS-DRTcF6wf.js} +97 -70
  31. package/dist/st/workers/{Cargo-C35FdGuj-DAEzC4n9.js.map → Cargo-jOTNoFyS-DRTcF6wf.js.map} +1 -1
  32. package/dist/st/workers/assets/miden_client_web.wasm +0 -0
  33. package/dist/st/workers/web-client-methods-worker.js +98 -71
  34. package/dist/st/workers/web-client-methods-worker.js.map +1 -1
  35. package/dist/st/workers/web-client-methods-worker.module.js +1 -1
  36. package/dist/st/workers/web-client-methods-worker.module.js.map +1 -1
  37. package/package.json +1 -1
package/dist/mt/wasm.js CHANGED
@@ -4,7 +4,7 @@
4
4
  async function loadWasm() {
5
5
  let wasmModule;
6
6
  if (!import.meta.env || (import.meta.env && !import.meta.env.SSR)) {
7
- wasmModule = await import('./Cargo-CUP4fvtE.js');
7
+ wasmModule = await import('./Cargo-DKB2aRX-.js');
8
8
  // The Cargo glue's __wbg_init TLA is stripped by the rollup build to
9
9
  // prevent blocking WKWebView module evaluation. Call it explicitly here
10
10
  // with the WASM URL that the Cargo glue pre-resolves (relative to its
@@ -14,7 +14,7 @@ function waitForMsgType(target, type) {
14
14
  });
15
15
  }
16
16
  waitForMsgType(self, 'wasm_bindgen_worker_init').then(async ({ init, receiver }) => {
17
- const pkg = await import('./Cargo-CUP4fvtE.js');
17
+ const pkg = await import('./Cargo-DKB2aRX-.js');
18
18
  // Our build exports __wbg_init by name (the [remove-wasm-tla] plugin adds
19
19
  // it back so loadWasm() can call it explicitly). Stock wasm-bindgen-rayon
20
20
  // expects pkg.default — not present here, since rollup-plugin-rust's
@@ -20841,6 +20841,33 @@ class TransactionProver {
20841
20841
  }
20842
20842
  return v1;
20843
20843
  }
20844
+ /**
20845
+ * Creates a prover that delegates `prove()` to a JavaScript callback.
20846
+ *
20847
+ * The callback receives the serialized [`TransactionInputs`] as a
20848
+ * `Uint8Array` and must return a `Promise<Uint8Array>` resolving to a
20849
+ * serialized [`ProvenTransaction`] (same encoding the gRPC remote
20850
+ * prover uses: `tx_inputs.to_bytes()` in, `ProvenTransaction::read_from_bytes`
20851
+ * out).
20852
+ *
20853
+ * Use case: routing prove to a native iOS / Android plugin
20854
+ * (`@miden/native-prover`) so mobile builds skip WASM prove entirely
20855
+ * — `WKWebView` can't be made cross-origin-isolated reliably and the
20856
+ * MT WASM bundle can't instantiate without `SharedArrayBuffer`, so the
20857
+ * host wraps a native Rust prover (built with the same `miden_tx`
20858
+ * crate) and exposes a JS-shaped callback over the Capacitor bridge.
20859
+ *
20860
+ * The SDK does NOT serialize the prover for persistence across
20861
+ * reloads (unlike `newRemoteProver`), since the callback is a
20862
+ * runtime JS reference. Hosts must recreate the prover on every
20863
+ * page load.
20864
+ * @param {Function} callback
20865
+ * @returns {TransactionProver}
20866
+ */
20867
+ static newCallbackProver(callback) {
20868
+ const ret = wasm.transactionprover_newCallbackProver(callback);
20869
+ return TransactionProver.__wrap(ret);
20870
+ }
20844
20871
  /**
20845
20872
  * Creates a prover that uses the local proving backend.
20846
20873
  * @returns {TransactionProver}
@@ -23166,7 +23193,7 @@ function __wbg_get_imports(memory) {
23166
23193
  const ret = AccountStorage.__wrap(arg0);
23167
23194
  return ret;
23168
23195
  },
23169
- __wbg_addNoteTag_a51c371777120635: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23196
+ __wbg_addNoteTag_4723ff010f46936d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23170
23197
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23171
23198
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23172
23199
  let v1;
@@ -23189,15 +23216,15 @@ function __wbg_get_imports(memory) {
23189
23216
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
23190
23217
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
23191
23218
  }, arguments); },
23192
- __wbg_applyFullAccountState_55228b16f1a887b6: function(arg0, arg1, arg2) {
23219
+ __wbg_applyFullAccountState_e30d3e617db6a5ed: function(arg0, arg1, arg2) {
23193
23220
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
23194
23221
  return ret;
23195
23222
  },
23196
- __wbg_applyStateSync_88eb00ae9d2b7da5: function(arg0, arg1, arg2) {
23223
+ __wbg_applyStateSync_f7a749086c461712: function(arg0, arg1, arg2) {
23197
23224
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
23198
23225
  return ret;
23199
23226
  },
23200
- __wbg_applyTransactionDelta_bd4528945d8c55ad: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
23227
+ __wbg_applyTransactionDelta_1a2dbf82361e3761: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
23201
23228
  let deferred0_0;
23202
23229
  let deferred0_1;
23203
23230
  let deferred1_0;
@@ -23344,7 +23371,7 @@ function __wbg_get_imports(memory) {
23344
23371
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23345
23372
  }
23346
23373
  },
23347
- __wbg_exportStore_e7e8188e69ce7f5b: function(arg0, arg1) {
23374
+ __wbg_exportStore_bf2152371e8102eb: function(arg0, arg1) {
23348
23375
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
23349
23376
  return ret;
23350
23377
  },
@@ -23376,7 +23403,7 @@ function __wbg_get_imports(memory) {
23376
23403
  const ret = FetchedNote.__wrap(arg0);
23377
23404
  return ret;
23378
23405
  },
23379
- __wbg_forceImportStore_60625e4b5abdc210: function(arg0, arg1, arg2) {
23406
+ __wbg_forceImportStore_7b69f3681de75a90: function(arg0, arg1, arg2) {
23380
23407
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
23381
23408
  return ret;
23382
23409
  },
@@ -23396,7 +23423,7 @@ function __wbg_get_imports(memory) {
23396
23423
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
23397
23424
  return ret;
23398
23425
  },
23399
- __wbg_getAccountAddresses_6045ea76da140502: function(arg0, arg1, arg2, arg3) {
23426
+ __wbg_getAccountAddresses_508963d8845d5514: function(arg0, arg1, arg2, arg3) {
23400
23427
  let deferred0_0;
23401
23428
  let deferred0_1;
23402
23429
  try {
@@ -23408,7 +23435,7 @@ function __wbg_get_imports(memory) {
23408
23435
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23409
23436
  }
23410
23437
  },
23411
- __wbg_getAccountAuthByPubKeyCommitment_ec4de2cb1cb6913b: function(arg0, arg1, arg2, arg3) {
23438
+ __wbg_getAccountAuthByPubKeyCommitment_0fa25c4d1501c820: function(arg0, arg1, arg2, arg3) {
23412
23439
  let deferred0_0;
23413
23440
  let deferred0_1;
23414
23441
  try {
@@ -23420,7 +23447,7 @@ function __wbg_get_imports(memory) {
23420
23447
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23421
23448
  }
23422
23449
  },
23423
- __wbg_getAccountCode_fc90b6b7505ae72b: function(arg0, arg1, arg2, arg3) {
23450
+ __wbg_getAccountCode_06134eb8e4174d45: function(arg0, arg1, arg2, arg3) {
23424
23451
  let deferred0_0;
23425
23452
  let deferred0_1;
23426
23453
  try {
@@ -23432,7 +23459,7 @@ function __wbg_get_imports(memory) {
23432
23459
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23433
23460
  }
23434
23461
  },
23435
- __wbg_getAccountHeaderByCommitment_b08fb50c9997f029: function(arg0, arg1, arg2, arg3) {
23462
+ __wbg_getAccountHeaderByCommitment_956bac34f1c7f6a0: function(arg0, arg1, arg2, arg3) {
23436
23463
  let deferred0_0;
23437
23464
  let deferred0_1;
23438
23465
  try {
@@ -23444,7 +23471,7 @@ function __wbg_get_imports(memory) {
23444
23471
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23445
23472
  }
23446
23473
  },
23447
- __wbg_getAccountHeader_bc38b49a127b2df7: function(arg0, arg1, arg2, arg3) {
23474
+ __wbg_getAccountHeader_b69e7d8345332c31: function(arg0, arg1, arg2, arg3) {
23448
23475
  let deferred0_0;
23449
23476
  let deferred0_1;
23450
23477
  try {
@@ -23456,7 +23483,7 @@ function __wbg_get_imports(memory) {
23456
23483
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23457
23484
  }
23458
23485
  },
23459
- __wbg_getAccountIdByKeyCommitment_6205838c23ae66ec: function(arg0, arg1, arg2, arg3) {
23486
+ __wbg_getAccountIdByKeyCommitment_a614d422617648e8: function(arg0, arg1, arg2, arg3) {
23460
23487
  let deferred0_0;
23461
23488
  let deferred0_1;
23462
23489
  try {
@@ -23468,11 +23495,11 @@ function __wbg_get_imports(memory) {
23468
23495
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23469
23496
  }
23470
23497
  },
23471
- __wbg_getAccountIds_7a838f79a83ef930: function(arg0, arg1) {
23498
+ __wbg_getAccountIds_254f4a379f7148fc: function(arg0, arg1) {
23472
23499
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
23473
23500
  return ret;
23474
23501
  },
23475
- __wbg_getAccountStorageMaps_308b87d035a49a86: function(arg0, arg1, arg2, arg3) {
23502
+ __wbg_getAccountStorageMaps_bb5eee8491dcea16: function(arg0, arg1, arg2, arg3) {
23476
23503
  let deferred0_0;
23477
23504
  let deferred0_1;
23478
23505
  try {
@@ -23484,7 +23511,7 @@ function __wbg_get_imports(memory) {
23484
23511
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23485
23512
  }
23486
23513
  },
23487
- __wbg_getAccountStorage_1a50fb3f64310501: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23514
+ __wbg_getAccountStorage_327e6237e53d1c34: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23488
23515
  let deferred0_0;
23489
23516
  let deferred0_1;
23490
23517
  try {
@@ -23498,7 +23525,7 @@ function __wbg_get_imports(memory) {
23498
23525
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23499
23526
  }
23500
23527
  },
23501
- __wbg_getAccountVaultAssets_92366790167b063e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23528
+ __wbg_getAccountVaultAssets_13c9a817f208f9a0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23502
23529
  let deferred0_0;
23503
23530
  let deferred0_1;
23504
23531
  try {
@@ -23512,23 +23539,23 @@ function __wbg_get_imports(memory) {
23512
23539
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23513
23540
  }
23514
23541
  },
23515
- __wbg_getAllAccountHeaders_c2ad2f418985fc59: function(arg0, arg1) {
23542
+ __wbg_getAllAccountHeaders_beea75c113c4f57d: function(arg0, arg1) {
23516
23543
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
23517
23544
  return ret;
23518
23545
  },
23519
- __wbg_getBlockHeaders_a23eb52792d2073c: function(arg0, arg1, arg2, arg3) {
23546
+ __wbg_getBlockHeaders_07a196e8299ff787: function(arg0, arg1, arg2, arg3) {
23520
23547
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
23521
23548
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23522
23549
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
23523
23550
  return ret;
23524
23551
  },
23525
- __wbg_getForeignAccountCode_91a34f3578156b4f: function(arg0, arg1, arg2, arg3) {
23552
+ __wbg_getForeignAccountCode_6e79e22462b49ff2: function(arg0, arg1, arg2, arg3) {
23526
23553
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23527
23554
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23528
23555
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
23529
23556
  return ret;
23530
23557
  },
23531
- __wbg_getInputNoteByOffset_6ef199945682d34f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
23558
+ __wbg_getInputNoteByOffset_5b701fc90ea53cbd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
23532
23559
  let deferred1_0;
23533
23560
  let deferred1_1;
23534
23561
  try {
@@ -23542,25 +23569,25 @@ function __wbg_get_imports(memory) {
23542
23569
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23543
23570
  }
23544
23571
  },
23545
- __wbg_getInputNotesFromIds_6c3da8fa16948024: function(arg0, arg1, arg2, arg3) {
23572
+ __wbg_getInputNotesFromIds_d6347ee0ea56a624: function(arg0, arg1, arg2, arg3) {
23546
23573
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23547
23574
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23548
23575
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
23549
23576
  return ret;
23550
23577
  },
23551
- __wbg_getInputNotesFromNullifiers_25b7ab71686ce880: function(arg0, arg1, arg2, arg3) {
23578
+ __wbg_getInputNotesFromNullifiers_c050444a6ae5a37c: function(arg0, arg1, arg2, arg3) {
23552
23579
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23553
23580
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23554
23581
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
23555
23582
  return ret;
23556
23583
  },
23557
- __wbg_getInputNotes_a640673a7a4e33fd: function(arg0, arg1, arg2, arg3) {
23584
+ __wbg_getInputNotes_b17663215ac794d2: function(arg0, arg1, arg2, arg3) {
23558
23585
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23559
23586
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23560
23587
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
23561
23588
  return ret;
23562
23589
  },
23563
- __wbg_getKeyCommitmentsByAccountId_b7b1a5bcf5a05604: function(arg0, arg1, arg2, arg3) {
23590
+ __wbg_getKeyCommitmentsByAccountId_4b181a7094d01904: function(arg0, arg1, arg2, arg3) {
23564
23591
  let deferred0_0;
23565
23592
  let deferred0_1;
23566
23593
  try {
@@ -23572,7 +23599,7 @@ function __wbg_get_imports(memory) {
23572
23599
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23573
23600
  }
23574
23601
  },
23575
- __wbg_getNoteScript_50344fe69e49dd08: function(arg0, arg1, arg2, arg3) {
23602
+ __wbg_getNoteScript_d1c46eb9d61290a7: function(arg0, arg1, arg2, arg3) {
23576
23603
  let deferred0_0;
23577
23604
  let deferred0_1;
23578
23605
  try {
@@ -23584,33 +23611,33 @@ function __wbg_get_imports(memory) {
23584
23611
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23585
23612
  }
23586
23613
  },
23587
- __wbg_getNoteTags_2d26795b89f9c9c3: function(arg0, arg1) {
23614
+ __wbg_getNoteTags_261757bd9ba6b176: function(arg0, arg1) {
23588
23615
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
23589
23616
  return ret;
23590
23617
  },
23591
- __wbg_getOutputNotesFromIds_a30f24fe744c70c3: function(arg0, arg1, arg2, arg3) {
23618
+ __wbg_getOutputNotesFromIds_ec175b7442179dfc: function(arg0, arg1, arg2, arg3) {
23592
23619
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23593
23620
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23594
23621
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
23595
23622
  return ret;
23596
23623
  },
23597
- __wbg_getOutputNotesFromNullifiers_a41fdec4cecb0826: function(arg0, arg1, arg2, arg3) {
23624
+ __wbg_getOutputNotesFromNullifiers_cfe595f5a28981dd: function(arg0, arg1, arg2, arg3) {
23598
23625
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23599
23626
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23600
23627
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
23601
23628
  return ret;
23602
23629
  },
23603
- __wbg_getOutputNotes_0ab46b06815d65aa: function(arg0, arg1, arg2, arg3) {
23630
+ __wbg_getOutputNotes_34426a64b01c311e: function(arg0, arg1, arg2, arg3) {
23604
23631
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23605
23632
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23606
23633
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
23607
23634
  return ret;
23608
23635
  },
23609
- __wbg_getPartialBlockchainNodesAll_5fd8f935ce70d9b6: function(arg0, arg1) {
23636
+ __wbg_getPartialBlockchainNodesAll_57b4bdaa9b2cb88f: function(arg0, arg1) {
23610
23637
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
23611
23638
  return ret;
23612
23639
  },
23613
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_0735450c9c0c38b5: function(arg0, arg1, arg2, arg3) {
23640
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_3c223e72f7b9003e: function(arg0, arg1, arg2, arg3) {
23614
23641
  let deferred0_0;
23615
23642
  let deferred0_1;
23616
23643
  try {
@@ -23622,13 +23649,13 @@ function __wbg_get_imports(memory) {
23622
23649
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23623
23650
  }
23624
23651
  },
23625
- __wbg_getPartialBlockchainNodes_88184142b518b6fe: function(arg0, arg1, arg2, arg3) {
23652
+ __wbg_getPartialBlockchainNodes_8a8aa6c8cb7e9d10: function(arg0, arg1, arg2, arg3) {
23626
23653
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23627
23654
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23628
23655
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
23629
23656
  return ret;
23630
23657
  },
23631
- __wbg_getPartialBlockchainPeaksByBlockNum_71883d1be68fcefd: function(arg0, arg1, arg2) {
23658
+ __wbg_getPartialBlockchainPeaksByBlockNum_a6d62f60cf767faf: function(arg0, arg1, arg2) {
23632
23659
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
23633
23660
  return ret;
23634
23661
  },
@@ -23639,7 +23666,7 @@ function __wbg_get_imports(memory) {
23639
23666
  const ret = arg0.getReader();
23640
23667
  return ret;
23641
23668
  }, arguments); },
23642
- __wbg_getSetting_740df7ee8ae9f108: function(arg0, arg1, arg2, arg3) {
23669
+ __wbg_getSetting_b0870045f2c26e89: function(arg0, arg1, arg2, arg3) {
23643
23670
  let deferred0_0;
23644
23671
  let deferred0_1;
23645
23672
  try {
@@ -23651,7 +23678,7 @@ function __wbg_get_imports(memory) {
23651
23678
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23652
23679
  }
23653
23680
  },
23654
- __wbg_getSyncHeight_c35edbb438e0b34a: function(arg0, arg1) {
23681
+ __wbg_getSyncHeight_764e80a403e4c11c: function(arg0, arg1) {
23655
23682
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
23656
23683
  return ret;
23657
23684
  },
@@ -23659,15 +23686,15 @@ function __wbg_get_imports(memory) {
23659
23686
  const ret = arg0.getTime();
23660
23687
  return ret;
23661
23688
  },
23662
- __wbg_getTrackedBlockHeaderNumbers_124440932aaff3a6: function(arg0, arg1) {
23689
+ __wbg_getTrackedBlockHeaderNumbers_7f4b13a63d168c5d: function(arg0, arg1) {
23663
23690
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
23664
23691
  return ret;
23665
23692
  },
23666
- __wbg_getTrackedBlockHeaders_c16be13f7719b186: function(arg0, arg1) {
23693
+ __wbg_getTrackedBlockHeaders_6f12a3c4ab8c4b7b: function(arg0, arg1) {
23667
23694
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
23668
23695
  return ret;
23669
23696
  },
23670
- __wbg_getTransactions_3729687a2396f7c5: function(arg0, arg1, arg2, arg3) {
23697
+ __wbg_getTransactions_30ea36f7fc0b3a07: function(arg0, arg1, arg2, arg3) {
23671
23698
  let deferred0_0;
23672
23699
  let deferred0_1;
23673
23700
  try {
@@ -23679,7 +23706,7 @@ function __wbg_get_imports(memory) {
23679
23706
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23680
23707
  }
23681
23708
  },
23682
- __wbg_getUnspentInputNoteNullifiers_254d7a678f7c9514: function(arg0, arg1) {
23709
+ __wbg_getUnspentInputNoteNullifiers_c340441deaa25755: function(arg0, arg1) {
23683
23710
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
23684
23711
  return ret;
23685
23712
  },
@@ -23723,7 +23750,7 @@ function __wbg_get_imports(memory) {
23723
23750
  const ret = InputNoteRecord.__wrap(arg0);
23724
23751
  return ret;
23725
23752
  },
23726
- __wbg_insertAccountAddress_ca8b4f85c74ae40c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23753
+ __wbg_insertAccountAddress_2ad144231111e7b8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23727
23754
  let deferred0_0;
23728
23755
  let deferred0_1;
23729
23756
  try {
@@ -23737,7 +23764,7 @@ function __wbg_get_imports(memory) {
23737
23764
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23738
23765
  }
23739
23766
  },
23740
- __wbg_insertAccountAuth_ec299547e6c6e168: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23767
+ __wbg_insertAccountAuth_d8105b6284b797bf: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23741
23768
  let deferred0_0;
23742
23769
  let deferred0_1;
23743
23770
  let deferred1_0;
@@ -23754,7 +23781,7 @@ function __wbg_get_imports(memory) {
23754
23781
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23755
23782
  }
23756
23783
  },
23757
- __wbg_insertAccountKeyMapping_20ce80945e272214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23784
+ __wbg_insertAccountKeyMapping_cbc8474854c70fba: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23758
23785
  let deferred0_0;
23759
23786
  let deferred0_1;
23760
23787
  let deferred1_0;
@@ -23771,7 +23798,7 @@ function __wbg_get_imports(memory) {
23771
23798
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23772
23799
  }
23773
23800
  },
23774
- __wbg_insertBlockHeader_2e5df0b44db0a98f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23801
+ __wbg_insertBlockHeader_dbcb8f73f4fc0fd5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23775
23802
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
23776
23803
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
23777
23804
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -23779,7 +23806,7 @@ function __wbg_get_imports(memory) {
23779
23806
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
23780
23807
  return ret;
23781
23808
  },
23782
- __wbg_insertPartialBlockchainNodes_95744573760eb965: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23809
+ __wbg_insertPartialBlockchainNodes_6ab1bcf955334b73: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23783
23810
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23784
23811
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23785
23812
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -23787,7 +23814,7 @@ function __wbg_get_imports(memory) {
23787
23814
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
23788
23815
  return ret;
23789
23816
  },
23790
- __wbg_insertSetting_e16ae38498392f86: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23817
+ __wbg_insertSetting_7dc23dc49d15b368: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23791
23818
  let deferred0_0;
23792
23819
  let deferred0_1;
23793
23820
  try {
@@ -23801,7 +23828,7 @@ function __wbg_get_imports(memory) {
23801
23828
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23802
23829
  }
23803
23830
  },
23804
- __wbg_insertTransactionScript_2c76805a2d859fed: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23831
+ __wbg_insertTransactionScript_f84da450a39a1985: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23805
23832
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23806
23833
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23807
23834
  let v1;
@@ -23904,11 +23931,11 @@ function __wbg_get_imports(memory) {
23904
23931
  const ret = arg0.length;
23905
23932
  return ret;
23906
23933
  },
23907
- __wbg_listSettingKeys_2cfe9bb0b25494f5: function(arg0, arg1) {
23934
+ __wbg_listSettingKeys_6cef95ced3cbf8ba: function(arg0, arg1) {
23908
23935
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
23909
23936
  return ret;
23910
23937
  },
23911
- __wbg_lockAccount_7bfda2ef6c1bcd7e: function(arg0, arg1, arg2, arg3) {
23938
+ __wbg_lockAccount_43dce8d4abdb5f09: function(arg0, arg1, arg2, arg3) {
23912
23939
  let deferred0_0;
23913
23940
  let deferred0_1;
23914
23941
  try {
@@ -24115,7 +24142,7 @@ function __wbg_get_imports(memory) {
24115
24142
  const ret = Array.of(arg0, arg1, arg2);
24116
24143
  return ret;
24117
24144
  },
24118
- __wbg_openDatabase_9e6084de01133d8c: function(arg0, arg1, arg2, arg3) {
24145
+ __wbg_openDatabase_e10946cc4c72b847: function(arg0, arg1, arg2, arg3) {
24119
24146
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
24120
24147
  return ret;
24121
24148
  },
@@ -24149,7 +24176,7 @@ function __wbg_get_imports(memory) {
24149
24176
  const ret = ProvenTransaction.__wrap(arg0);
24150
24177
  return ret;
24151
24178
  },
24152
- __wbg_pruneAccountHistory_dd0be36d0aa6b504: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24179
+ __wbg_pruneAccountHistory_49fa123a7d62ae4d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24153
24180
  let deferred0_0;
24154
24181
  let deferred0_1;
24155
24182
  let deferred1_0;
@@ -24166,7 +24193,7 @@ function __wbg_get_imports(memory) {
24166
24193
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24167
24194
  }
24168
24195
  },
24169
- __wbg_pruneIrrelevantBlocks_40e7f84151d54598: function(arg0, arg1) {
24196
+ __wbg_pruneIrrelevantBlocks_14a26c26d55e3e71: function(arg0, arg1) {
24170
24197
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
24171
24198
  return ret;
24172
24199
  },
@@ -24184,13 +24211,13 @@ function __wbg_get_imports(memory) {
24184
24211
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
24185
24212
  arg0.releaseLock();
24186
24213
  },
24187
- __wbg_removeAccountAddress_18269c8442cbae02: function(arg0, arg1, arg2, arg3) {
24214
+ __wbg_removeAccountAddress_0f2431a6492a108c: function(arg0, arg1, arg2, arg3) {
24188
24215
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24189
24216
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24190
24217
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
24191
24218
  return ret;
24192
24219
  },
24193
- __wbg_removeAccountAuth_ed28e9ffa3df2517: function(arg0, arg1, arg2, arg3) {
24220
+ __wbg_removeAccountAuth_0d70d9e3528ce2d2: function(arg0, arg1, arg2, arg3) {
24194
24221
  let deferred0_0;
24195
24222
  let deferred0_1;
24196
24223
  try {
@@ -24202,7 +24229,7 @@ function __wbg_get_imports(memory) {
24202
24229
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24203
24230
  }
24204
24231
  },
24205
- __wbg_removeAllMappingsForKey_f7c4d0182be92548: function(arg0, arg1, arg2, arg3) {
24232
+ __wbg_removeAllMappingsForKey_fb72afcedd3eadbc: function(arg0, arg1, arg2, arg3) {
24206
24233
  let deferred0_0;
24207
24234
  let deferred0_1;
24208
24235
  try {
@@ -24214,7 +24241,7 @@ function __wbg_get_imports(memory) {
24214
24241
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24215
24242
  }
24216
24243
  },
24217
- __wbg_removeNoteTag_0f4006666741f5e5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24244
+ __wbg_removeNoteTag_61789564bed57fa9: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24218
24245
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24219
24246
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24220
24247
  let v1;
@@ -24230,7 +24257,7 @@ function __wbg_get_imports(memory) {
24230
24257
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
24231
24258
  return ret;
24232
24259
  },
24233
- __wbg_removeSetting_589747e069d40112: function(arg0, arg1, arg2, arg3) {
24260
+ __wbg_removeSetting_f90c38c2bbaa0503: function(arg0, arg1, arg2, arg3) {
24234
24261
  let deferred0_0;
24235
24262
  let deferred0_1;
24236
24263
  try {
@@ -24429,13 +24456,13 @@ function __wbg_get_imports(memory) {
24429
24456
  const ret = TransactionSummary.__wrap(arg0);
24430
24457
  return ret;
24431
24458
  },
24432
- __wbg_undoAccountStates_4a1db0107223d307: function(arg0, arg1, arg2, arg3) {
24459
+ __wbg_undoAccountStates_55952d96171fcaae: function(arg0, arg1, arg2, arg3) {
24433
24460
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24434
24461
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24435
24462
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
24436
24463
  return ret;
24437
24464
  },
24438
- __wbg_upsertAccountCode_aebe2764f0ae19b5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24465
+ __wbg_upsertAccountCode_6ea0fd608c26da92: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24439
24466
  let deferred0_0;
24440
24467
  let deferred0_1;
24441
24468
  try {
@@ -24449,7 +24476,7 @@ function __wbg_get_imports(memory) {
24449
24476
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24450
24477
  }
24451
24478
  },
24452
- __wbg_upsertAccountRecord_b044e674faafad27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
24479
+ __wbg_upsertAccountRecord_7427b8986e2d12c8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
24453
24480
  let deferred0_0;
24454
24481
  let deferred0_1;
24455
24482
  let deferred1_0;
@@ -24491,7 +24518,7 @@ function __wbg_get_imports(memory) {
24491
24518
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
24492
24519
  }
24493
24520
  },
24494
- __wbg_upsertAccountStorage_c42876a40a483e7f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24521
+ __wbg_upsertAccountStorage_d913f1c451e02d49: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24495
24522
  let deferred0_0;
24496
24523
  let deferred0_1;
24497
24524
  try {
@@ -24505,7 +24532,7 @@ function __wbg_get_imports(memory) {
24505
24532
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24506
24533
  }
24507
24534
  },
24508
- __wbg_upsertForeignAccountCode_581128638be94f1c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24535
+ __wbg_upsertForeignAccountCode_b6e56987b6e8449c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24509
24536
  let deferred0_0;
24510
24537
  let deferred0_1;
24511
24538
  let deferred2_0;
@@ -24524,7 +24551,7 @@ function __wbg_get_imports(memory) {
24524
24551
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
24525
24552
  }
24526
24553
  },
24527
- __wbg_upsertInputNote_1c2ff84932408a3f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20, arg21, arg22, arg23, arg24) {
24554
+ __wbg_upsertInputNote_8722dc3a93336ed1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20, arg21, arg22, arg23, arg24) {
24528
24555
  let deferred0_0;
24529
24556
  let deferred0_1;
24530
24557
  let deferred4_0;
@@ -24566,7 +24593,7 @@ function __wbg_get_imports(memory) {
24566
24593
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
24567
24594
  }
24568
24595
  },
24569
- __wbg_upsertNoteScript_c52ab0e88a1fd6cd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24596
+ __wbg_upsertNoteScript_4a5e64583c81d57f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24570
24597
  let deferred0_0;
24571
24598
  let deferred0_1;
24572
24599
  try {
@@ -24580,7 +24607,7 @@ function __wbg_get_imports(memory) {
24580
24607
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24581
24608
  }
24582
24609
  },
24583
- __wbg_upsertOutputNote_d10ad6e88aef8cf1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
24610
+ __wbg_upsertOutputNote_851bc49a046fb032: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
24584
24611
  let deferred0_0;
24585
24612
  let deferred0_1;
24586
24613
  let deferred2_0;
@@ -24608,7 +24635,7 @@ function __wbg_get_imports(memory) {
24608
24635
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
24609
24636
  }
24610
24637
  },
24611
- __wbg_upsertStorageMapEntries_0dcfbca965cacc17: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24638
+ __wbg_upsertStorageMapEntries_708d7e1b9785c232: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24612
24639
  let deferred0_0;
24613
24640
  let deferred0_1;
24614
24641
  try {
@@ -24622,7 +24649,7 @@ function __wbg_get_imports(memory) {
24622
24649
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24623
24650
  }
24624
24651
  },
24625
- __wbg_upsertTransactionRecord_6582d9f670d08453: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
24652
+ __wbg_upsertTransactionRecord_131924c25bc551c8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
24626
24653
  let deferred0_0;
24627
24654
  let deferred0_1;
24628
24655
  try {
@@ -24643,7 +24670,7 @@ function __wbg_get_imports(memory) {
24643
24670
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24644
24671
  }
24645
24672
  },
24646
- __wbg_upsertVaultAssets_5d52344146c36e04: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24673
+ __wbg_upsertVaultAssets_610488e7f4bf93bb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24647
24674
  let deferred0_0;
24648
24675
  let deferred0_1;
24649
24676
  try {
@@ -25797,4 +25824,4 @@ var index = /*#__PURE__*/Object.freeze({
25797
25824
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
25798
25825
 
25799
25826
  export { Account, AccountArray, AccountBuilder, AccountBuilderResult, AccountCode, AccountComponent, AccountComponentCode, AccountDelta, AccountFile, AccountHeader, AccountId, AccountIdArray, AccountInterface, AccountProof, AccountReader, AccountStatus, AccountStorage, AccountStorageDelta, AccountStorageMode, AccountStorageRequirements, AccountType, AccountVaultDelta, Address, AdviceInputs, AdviceMap, AssetVault, AuthFalcon512RpoMultisigConfig, AuthScheme, AuthSecretKey, BasicFungibleFaucetComponent, BlockHeader, CodeBuilder, CommittedNote, ConsumableNoteRecord, Endpoint, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkId, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, NoteAttachmentKind, NoteAttachmentScheme, NoteConsumability, NoteConsumptionStatus, NoteDetails, NoteDetailsAndTag, NoteDetailsAndTagArray, NoteExecutionHint, NoteExportFormat, NoteFile, NoteFilter, NoteFilterTypes, NoteHeader, NoteId, NoteIdAndArgs, NoteIdAndArgsArray, NoteInclusionProof, NoteLocation, NoteMetadata, NoteRecipient, NoteRecipientArray, NoteScript, NoteStorage, NoteSyncBlock, NoteSyncInfo, NoteTag, NoteType, OutputNote, OutputNoteArray, OutputNoteRecord, OutputNoteState, OutputNotes, Package, PartialNote, Poseidon2, ProcedureThreshold, Program, ProvenTransaction, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, StorageMapInfo, StorageMapUpdate, StorageSlot, StorageSlotArray, SyncSummary, TestUtils, TokenSymbol, TransactionArgs, TransactionFilter, TransactionId, TransactionProver, TransactionRecord, TransactionRequest, TransactionRequestBuilder, TransactionResult, TransactionScript, TransactionScriptInputPair, TransactionScriptInputPairArray, TransactionStatus, TransactionStoreUpdate, TransactionSummary, WebClient, WebKeystoreApi, Word, module$1 as __wasm_url, __wbg_init, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, initThreadPool, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker };
25800
- //# sourceMappingURL=Cargo-CUP4fvtE-DQbaP5ul.js.map
25827
+ //# sourceMappingURL=Cargo-DKB2aRX--C6T4l3AF.js.map