@miden-sdk/miden-sdk 0.14.9 → 0.14.11

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-DKB2aRX-.js → Cargo-CZopJ--X.js} +92 -115
  2. package/dist/mt/Cargo-CZopJ--X.js.map +1 -0
  3. package/dist/mt/assets/miden_client_web.wasm +0 -0
  4. package/dist/mt/crates/miden_client_web.d.ts +24 -32
  5. package/dist/mt/eager.js +1 -1
  6. package/dist/mt/index.js +53 -3
  7. package/dist/mt/index.js.map +1 -1
  8. package/dist/mt/wasm.js +1 -1
  9. package/dist/mt/workerHelpers.js +1 -1
  10. package/dist/mt/workers/{Cargo-DKB2aRX--C6T4l3AF.js → Cargo-CZopJ--X-SsyOTzpb.js} +92 -115
  11. package/dist/mt/workers/Cargo-CZopJ--X-SsyOTzpb.js.map +1 -0
  12. package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
  13. package/dist/mt/workers/web-client-methods-worker.js +93 -116
  14. package/dist/mt/workers/web-client-methods-worker.js.map +1 -1
  15. package/dist/mt/workers/web-client-methods-worker.module.js +1 -1
  16. package/dist/mt/workers/web-client-methods-worker.module.js.map +1 -1
  17. package/dist/mt/workers/workerHelpers.js +1 -1
  18. package/dist/st/{Cargo-jOTNoFyS.js → Cargo-DC6jSekr.js} +103 -126
  19. package/dist/st/Cargo-DC6jSekr.js.map +1 -0
  20. package/dist/st/assets/miden_client_web.wasm +0 -0
  21. package/dist/st/crates/miden_client_web.d.ts +24 -32
  22. package/dist/st/eager.js +1 -1
  23. package/dist/st/index.js +53 -3
  24. package/dist/st/index.js.map +1 -1
  25. package/dist/st/wasm.js +1 -1
  26. package/dist/st/workers/{Cargo-jOTNoFyS-DRTcF6wf.js → Cargo-DC6jSekr-BG7C7m56.js} +103 -126
  27. package/dist/st/workers/Cargo-DC6jSekr-BG7C7m56.js.map +1 -0
  28. package/dist/st/workers/assets/miden_client_web.wasm +0 -0
  29. package/dist/st/workers/web-client-methods-worker.js +104 -127
  30. package/dist/st/workers/web-client-methods-worker.js.map +1 -1
  31. package/dist/st/workers/web-client-methods-worker.module.js +1 -1
  32. package/dist/st/workers/web-client-methods-worker.module.js.map +1 -1
  33. package/package.json +1 -1
  34. package/dist/mt/Cargo-DKB2aRX-.js.map +0 -1
  35. package/dist/mt/workers/Cargo-DKB2aRX--C6T4l3AF.js.map +0 -1
  36. package/dist/st/Cargo-jOTNoFyS.js.map +0 -1
  37. package/dist/st/workers/Cargo-jOTNoFyS-DRTcF6wf.js.map +0 -1
@@ -14892,6 +14892,21 @@ if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderly
14892
14892
 
14893
14893
  /**
14894
14894
  * Represents an update to a single account's state.
14895
+ *
14896
+ * `inspectable` is intentionally omitted (see #2183). When `inspectable` is
14897
+ * set on a struct with public fields, wasm-bindgen auto-generates a
14898
+ * `toJSON()` method that reads every field-getter — each of which calls
14899
+ * back into WASM via `__wbg_get_<class>_<field>(this.__wbg_ptr)`. Under
14900
+ * Next.js 16.2 dev-mode the patched `console.*` runs every non-primitive
14901
+ * argument through `safe-stable-stringify`, which invokes `toJSON()`
14902
+ * automatically. If the underlying pointer has been freed (or another
14903
+ * WASM call is in flight) the resulting `"null pointer passed to rust"`
14904
+ * trap propagates out of the user's `console.log` and crashes the
14905
+ * caller. Without `inspectable`, no `toJSON()` is emitted; JSON.stringify
14906
+ * falls back to `{}` (the wasm-bindgen wrapper has no own enumerable
14907
+ * data — it's all behind the `__wbg_ptr`), and the re-entry never
14908
+ * happens. Field access via the named getters still works exactly as
14909
+ * before; only the auto-stringification path is muted.
14895
14910
  */
14896
14911
  class JsAccountUpdate {
14897
14912
  static __wrap(ptr) {
@@ -14907,24 +14922,6 @@ class JsAccountUpdate {
14907
14922
  }
14908
14923
  return jsValue.__destroy_into_raw();
14909
14924
  }
14910
- toJSON() {
14911
- return {
14912
- accountCommitment: this.accountCommitment,
14913
- accountId: this.accountId,
14914
- accountSeed: this.accountSeed,
14915
- assets: this.assets,
14916
- codeRoot: this.codeRoot,
14917
- committed: this.committed,
14918
- nonce: this.nonce,
14919
- storageMapEntries: this.storageMapEntries,
14920
- storageRoot: this.storageRoot,
14921
- storageSlots: this.storageSlots,
14922
- vaultRoot: this.vaultRoot,
14923
- };
14924
- }
14925
- toString() {
14926
- return JSON.stringify(this);
14927
- }
14928
14925
  __destroy_into_raw() {
14929
14926
  const ptr = this.__wbg_ptr;
14930
14927
  this.__wbg_ptr = 0;
@@ -15440,6 +15437,9 @@ if (Symbol.dispose) JsStateSyncUpdate.prototype[Symbol.dispose] = JsStateSyncUpd
15440
15437
 
15441
15438
  /**
15442
15439
  * A JavaScript representation of a storage map entry in an account.
15440
+ *
15441
+ * `inspectable` is intentionally omitted — see the note on
15442
+ * `JsAccountUpdate` for the full rationale (#2183).
15443
15443
  */
15444
15444
  class JsStorageMapEntry {
15445
15445
  static __wrap(ptr) {
@@ -15455,16 +15455,6 @@ class JsStorageMapEntry {
15455
15455
  }
15456
15456
  return jsValue.__destroy_into_raw();
15457
15457
  }
15458
- toJSON() {
15459
- return {
15460
- key: this.key,
15461
- slotName: this.slotName,
15462
- value: this.value,
15463
- };
15464
- }
15465
- toString() {
15466
- return JSON.stringify(this);
15467
- }
15468
15458
  __destroy_into_raw() {
15469
15459
  const ptr = this.__wbg_ptr;
15470
15460
  this.__wbg_ptr = 0;
@@ -15555,6 +15545,9 @@ if (Symbol.dispose) JsStorageMapEntry.prototype[Symbol.dispose] = JsStorageMapEn
15555
15545
 
15556
15546
  /**
15557
15547
  * A JavaScript representation of a storage slot in an account.
15548
+ *
15549
+ * `inspectable` is intentionally omitted — see the note on
15550
+ * `JsAccountUpdate` for the full rationale (#2183).
15558
15551
  */
15559
15552
  class JsStorageSlot {
15560
15553
  static __wrap(ptr) {
@@ -15570,16 +15563,6 @@ class JsStorageSlot {
15570
15563
  }
15571
15564
  return jsValue.__destroy_into_raw();
15572
15565
  }
15573
- toJSON() {
15574
- return {
15575
- slotName: this.slotName,
15576
- slotType: this.slotType,
15577
- slotValue: this.slotValue,
15578
- };
15579
- }
15580
- toString() {
15581
- return JSON.stringify(this);
15582
- }
15583
15566
  __destroy_into_raw() {
15584
15567
  const ptr = this.__wbg_ptr;
15585
15568
  this.__wbg_ptr = 0;
@@ -15660,6 +15643,9 @@ if (Symbol.dispose) JsStorageSlot.prototype[Symbol.dispose] = JsStorageSlot.prot
15660
15643
 
15661
15644
  /**
15662
15645
  * An object that contains a serialized vault asset.
15646
+ *
15647
+ * `inspectable` is intentionally omitted — see the note on
15648
+ * `JsAccountUpdate` for the full rationale (#2183).
15663
15649
  */
15664
15650
  class JsVaultAsset {
15665
15651
  static __wrap(ptr) {
@@ -15675,15 +15661,6 @@ class JsVaultAsset {
15675
15661
  }
15676
15662
  return jsValue.__destroy_into_raw();
15677
15663
  }
15678
- toJSON() {
15679
- return {
15680
- asset: this.asset,
15681
- vaultKey: this.vaultKey,
15682
- };
15683
- }
15684
- toString() {
15685
- return JSON.stringify(this);
15686
- }
15687
15664
  __destroy_into_raw() {
15688
15665
  const ptr = this.__wbg_ptr;
15689
15666
  this.__wbg_ptr = 0;
@@ -23193,7 +23170,7 @@ function __wbg_get_imports(memory) {
23193
23170
  const ret = AccountStorage.__wrap(arg0);
23194
23171
  return ret;
23195
23172
  },
23196
- __wbg_addNoteTag_4723ff010f46936d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23173
+ __wbg_addNoteTag_71f455acb2c33097: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23197
23174
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23198
23175
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23199
23176
  let v1;
@@ -23216,15 +23193,15 @@ function __wbg_get_imports(memory) {
23216
23193
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
23217
23194
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
23218
23195
  }, arguments); },
23219
- __wbg_applyFullAccountState_e30d3e617db6a5ed: function(arg0, arg1, arg2) {
23196
+ __wbg_applyFullAccountState_c2b7ca372af269ca: function(arg0, arg1, arg2) {
23220
23197
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
23221
23198
  return ret;
23222
23199
  },
23223
- __wbg_applyStateSync_f7a749086c461712: function(arg0, arg1, arg2) {
23200
+ __wbg_applyStateSync_91fddc562c8bef62: function(arg0, arg1, arg2) {
23224
23201
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
23225
23202
  return ret;
23226
23203
  },
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) {
23204
+ __wbg_applyTransactionDelta_4dddecb0b77b7669: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
23228
23205
  let deferred0_0;
23229
23206
  let deferred0_1;
23230
23207
  let deferred1_0;
@@ -23371,7 +23348,7 @@ function __wbg_get_imports(memory) {
23371
23348
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23372
23349
  }
23373
23350
  },
23374
- __wbg_exportStore_bf2152371e8102eb: function(arg0, arg1) {
23351
+ __wbg_exportStore_7414a54978b6564b: function(arg0, arg1) {
23375
23352
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
23376
23353
  return ret;
23377
23354
  },
@@ -23403,7 +23380,7 @@ function __wbg_get_imports(memory) {
23403
23380
  const ret = FetchedNote.__wrap(arg0);
23404
23381
  return ret;
23405
23382
  },
23406
- __wbg_forceImportStore_7b69f3681de75a90: function(arg0, arg1, arg2) {
23383
+ __wbg_forceImportStore_ec328e296b0a4bff: function(arg0, arg1, arg2) {
23407
23384
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
23408
23385
  return ret;
23409
23386
  },
@@ -23423,7 +23400,7 @@ function __wbg_get_imports(memory) {
23423
23400
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
23424
23401
  return ret;
23425
23402
  },
23426
- __wbg_getAccountAddresses_508963d8845d5514: function(arg0, arg1, arg2, arg3) {
23403
+ __wbg_getAccountAddresses_e92f560e33b96c28: function(arg0, arg1, arg2, arg3) {
23427
23404
  let deferred0_0;
23428
23405
  let deferred0_1;
23429
23406
  try {
@@ -23435,7 +23412,7 @@ function __wbg_get_imports(memory) {
23435
23412
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23436
23413
  }
23437
23414
  },
23438
- __wbg_getAccountAuthByPubKeyCommitment_0fa25c4d1501c820: function(arg0, arg1, arg2, arg3) {
23415
+ __wbg_getAccountAuthByPubKeyCommitment_28efb17c33476b84: function(arg0, arg1, arg2, arg3) {
23439
23416
  let deferred0_0;
23440
23417
  let deferred0_1;
23441
23418
  try {
@@ -23447,7 +23424,7 @@ function __wbg_get_imports(memory) {
23447
23424
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23448
23425
  }
23449
23426
  },
23450
- __wbg_getAccountCode_06134eb8e4174d45: function(arg0, arg1, arg2, arg3) {
23427
+ __wbg_getAccountCode_188958db8c438bab: function(arg0, arg1, arg2, arg3) {
23451
23428
  let deferred0_0;
23452
23429
  let deferred0_1;
23453
23430
  try {
@@ -23459,7 +23436,7 @@ function __wbg_get_imports(memory) {
23459
23436
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23460
23437
  }
23461
23438
  },
23462
- __wbg_getAccountHeaderByCommitment_956bac34f1c7f6a0: function(arg0, arg1, arg2, arg3) {
23439
+ __wbg_getAccountHeaderByCommitment_4e6fa83d25c41363: function(arg0, arg1, arg2, arg3) {
23463
23440
  let deferred0_0;
23464
23441
  let deferred0_1;
23465
23442
  try {
@@ -23471,7 +23448,7 @@ function __wbg_get_imports(memory) {
23471
23448
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23472
23449
  }
23473
23450
  },
23474
- __wbg_getAccountHeader_b69e7d8345332c31: function(arg0, arg1, arg2, arg3) {
23451
+ __wbg_getAccountHeader_aabe60772170d684: function(arg0, arg1, arg2, arg3) {
23475
23452
  let deferred0_0;
23476
23453
  let deferred0_1;
23477
23454
  try {
@@ -23483,7 +23460,7 @@ function __wbg_get_imports(memory) {
23483
23460
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23484
23461
  }
23485
23462
  },
23486
- __wbg_getAccountIdByKeyCommitment_a614d422617648e8: function(arg0, arg1, arg2, arg3) {
23463
+ __wbg_getAccountIdByKeyCommitment_3802e17bf8d3c9b9: function(arg0, arg1, arg2, arg3) {
23487
23464
  let deferred0_0;
23488
23465
  let deferred0_1;
23489
23466
  try {
@@ -23495,11 +23472,11 @@ function __wbg_get_imports(memory) {
23495
23472
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23496
23473
  }
23497
23474
  },
23498
- __wbg_getAccountIds_254f4a379f7148fc: function(arg0, arg1) {
23475
+ __wbg_getAccountIds_8d429d26691ebece: function(arg0, arg1) {
23499
23476
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
23500
23477
  return ret;
23501
23478
  },
23502
- __wbg_getAccountStorageMaps_bb5eee8491dcea16: function(arg0, arg1, arg2, arg3) {
23479
+ __wbg_getAccountStorageMaps_60eba620d7ef3115: function(arg0, arg1, arg2, arg3) {
23503
23480
  let deferred0_0;
23504
23481
  let deferred0_1;
23505
23482
  try {
@@ -23511,7 +23488,7 @@ function __wbg_get_imports(memory) {
23511
23488
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23512
23489
  }
23513
23490
  },
23514
- __wbg_getAccountStorage_327e6237e53d1c34: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23491
+ __wbg_getAccountStorage_2e39fb9ee52b36ab: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23515
23492
  let deferred0_0;
23516
23493
  let deferred0_1;
23517
23494
  try {
@@ -23525,7 +23502,7 @@ function __wbg_get_imports(memory) {
23525
23502
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23526
23503
  }
23527
23504
  },
23528
- __wbg_getAccountVaultAssets_13c9a817f208f9a0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23505
+ __wbg_getAccountVaultAssets_f4af786007a4cd8a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23529
23506
  let deferred0_0;
23530
23507
  let deferred0_1;
23531
23508
  try {
@@ -23539,23 +23516,23 @@ function __wbg_get_imports(memory) {
23539
23516
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23540
23517
  }
23541
23518
  },
23542
- __wbg_getAllAccountHeaders_beea75c113c4f57d: function(arg0, arg1) {
23519
+ __wbg_getAllAccountHeaders_41bc150e0b8348ab: function(arg0, arg1) {
23543
23520
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
23544
23521
  return ret;
23545
23522
  },
23546
- __wbg_getBlockHeaders_07a196e8299ff787: function(arg0, arg1, arg2, arg3) {
23523
+ __wbg_getBlockHeaders_d37fd9c6e0f0fc3c: function(arg0, arg1, arg2, arg3) {
23547
23524
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
23548
23525
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23549
23526
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
23550
23527
  return ret;
23551
23528
  },
23552
- __wbg_getForeignAccountCode_6e79e22462b49ff2: function(arg0, arg1, arg2, arg3) {
23529
+ __wbg_getForeignAccountCode_07c810d364cd77ae: function(arg0, arg1, arg2, arg3) {
23553
23530
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23554
23531
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23555
23532
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
23556
23533
  return ret;
23557
23534
  },
23558
- __wbg_getInputNoteByOffset_5b701fc90ea53cbd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
23535
+ __wbg_getInputNoteByOffset_677e9a33e6340b5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
23559
23536
  let deferred1_0;
23560
23537
  let deferred1_1;
23561
23538
  try {
@@ -23569,25 +23546,25 @@ function __wbg_get_imports(memory) {
23569
23546
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23570
23547
  }
23571
23548
  },
23572
- __wbg_getInputNotesFromIds_d6347ee0ea56a624: function(arg0, arg1, arg2, arg3) {
23549
+ __wbg_getInputNotesFromIds_44862afd379bbbb6: function(arg0, arg1, arg2, arg3) {
23573
23550
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23574
23551
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23575
23552
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
23576
23553
  return ret;
23577
23554
  },
23578
- __wbg_getInputNotesFromNullifiers_c050444a6ae5a37c: function(arg0, arg1, arg2, arg3) {
23555
+ __wbg_getInputNotesFromNullifiers_2ec2c4e148b8f834: function(arg0, arg1, arg2, arg3) {
23579
23556
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23580
23557
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23581
23558
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
23582
23559
  return ret;
23583
23560
  },
23584
- __wbg_getInputNotes_b17663215ac794d2: function(arg0, arg1, arg2, arg3) {
23561
+ __wbg_getInputNotes_8e59018ef0fd9758: function(arg0, arg1, arg2, arg3) {
23585
23562
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23586
23563
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23587
23564
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
23588
23565
  return ret;
23589
23566
  },
23590
- __wbg_getKeyCommitmentsByAccountId_4b181a7094d01904: function(arg0, arg1, arg2, arg3) {
23567
+ __wbg_getKeyCommitmentsByAccountId_8d83fa814d1cc718: function(arg0, arg1, arg2, arg3) {
23591
23568
  let deferred0_0;
23592
23569
  let deferred0_1;
23593
23570
  try {
@@ -23599,7 +23576,7 @@ function __wbg_get_imports(memory) {
23599
23576
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23600
23577
  }
23601
23578
  },
23602
- __wbg_getNoteScript_d1c46eb9d61290a7: function(arg0, arg1, arg2, arg3) {
23579
+ __wbg_getNoteScript_fe7c88df1db18389: function(arg0, arg1, arg2, arg3) {
23603
23580
  let deferred0_0;
23604
23581
  let deferred0_1;
23605
23582
  try {
@@ -23611,33 +23588,33 @@ function __wbg_get_imports(memory) {
23611
23588
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23612
23589
  }
23613
23590
  },
23614
- __wbg_getNoteTags_261757bd9ba6b176: function(arg0, arg1) {
23591
+ __wbg_getNoteTags_75edb9d48492a785: function(arg0, arg1) {
23615
23592
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
23616
23593
  return ret;
23617
23594
  },
23618
- __wbg_getOutputNotesFromIds_ec175b7442179dfc: function(arg0, arg1, arg2, arg3) {
23595
+ __wbg_getOutputNotesFromIds_6db6231c439f3c87: function(arg0, arg1, arg2, arg3) {
23619
23596
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23620
23597
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23621
23598
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
23622
23599
  return ret;
23623
23600
  },
23624
- __wbg_getOutputNotesFromNullifiers_cfe595f5a28981dd: function(arg0, arg1, arg2, arg3) {
23601
+ __wbg_getOutputNotesFromNullifiers_30c2ca006c9640f8: function(arg0, arg1, arg2, arg3) {
23625
23602
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23626
23603
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23627
23604
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
23628
23605
  return ret;
23629
23606
  },
23630
- __wbg_getOutputNotes_34426a64b01c311e: function(arg0, arg1, arg2, arg3) {
23607
+ __wbg_getOutputNotes_7a0d64dede8d64be: function(arg0, arg1, arg2, arg3) {
23631
23608
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23632
23609
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23633
23610
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
23634
23611
  return ret;
23635
23612
  },
23636
- __wbg_getPartialBlockchainNodesAll_57b4bdaa9b2cb88f: function(arg0, arg1) {
23613
+ __wbg_getPartialBlockchainNodesAll_15a5f0a63644f546: function(arg0, arg1) {
23637
23614
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
23638
23615
  return ret;
23639
23616
  },
23640
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_3c223e72f7b9003e: function(arg0, arg1, arg2, arg3) {
23617
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_6742a36d7d26c921: function(arg0, arg1, arg2, arg3) {
23641
23618
  let deferred0_0;
23642
23619
  let deferred0_1;
23643
23620
  try {
@@ -23649,13 +23626,13 @@ function __wbg_get_imports(memory) {
23649
23626
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23650
23627
  }
23651
23628
  },
23652
- __wbg_getPartialBlockchainNodes_8a8aa6c8cb7e9d10: function(arg0, arg1, arg2, arg3) {
23629
+ __wbg_getPartialBlockchainNodes_35c67e8f4bfd8da6: function(arg0, arg1, arg2, arg3) {
23653
23630
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23654
23631
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23655
23632
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
23656
23633
  return ret;
23657
23634
  },
23658
- __wbg_getPartialBlockchainPeaksByBlockNum_a6d62f60cf767faf: function(arg0, arg1, arg2) {
23635
+ __wbg_getPartialBlockchainPeaksByBlockNum_5a9240ed1087ee15: function(arg0, arg1, arg2) {
23659
23636
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
23660
23637
  return ret;
23661
23638
  },
@@ -23666,7 +23643,7 @@ function __wbg_get_imports(memory) {
23666
23643
  const ret = arg0.getReader();
23667
23644
  return ret;
23668
23645
  }, arguments); },
23669
- __wbg_getSetting_b0870045f2c26e89: function(arg0, arg1, arg2, arg3) {
23646
+ __wbg_getSetting_25ab76d54f719ecd: function(arg0, arg1, arg2, arg3) {
23670
23647
  let deferred0_0;
23671
23648
  let deferred0_1;
23672
23649
  try {
@@ -23678,7 +23655,7 @@ function __wbg_get_imports(memory) {
23678
23655
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23679
23656
  }
23680
23657
  },
23681
- __wbg_getSyncHeight_764e80a403e4c11c: function(arg0, arg1) {
23658
+ __wbg_getSyncHeight_d852979e2c8c1c32: function(arg0, arg1) {
23682
23659
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
23683
23660
  return ret;
23684
23661
  },
@@ -23686,15 +23663,15 @@ function __wbg_get_imports(memory) {
23686
23663
  const ret = arg0.getTime();
23687
23664
  return ret;
23688
23665
  },
23689
- __wbg_getTrackedBlockHeaderNumbers_7f4b13a63d168c5d: function(arg0, arg1) {
23666
+ __wbg_getTrackedBlockHeaderNumbers_7a6dd9bd482b7c1f: function(arg0, arg1) {
23690
23667
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
23691
23668
  return ret;
23692
23669
  },
23693
- __wbg_getTrackedBlockHeaders_6f12a3c4ab8c4b7b: function(arg0, arg1) {
23670
+ __wbg_getTrackedBlockHeaders_921ecf4c4bdc8c6f: function(arg0, arg1) {
23694
23671
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
23695
23672
  return ret;
23696
23673
  },
23697
- __wbg_getTransactions_30ea36f7fc0b3a07: function(arg0, arg1, arg2, arg3) {
23674
+ __wbg_getTransactions_cb4af339938ce981: function(arg0, arg1, arg2, arg3) {
23698
23675
  let deferred0_0;
23699
23676
  let deferred0_1;
23700
23677
  try {
@@ -23706,7 +23683,7 @@ function __wbg_get_imports(memory) {
23706
23683
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23707
23684
  }
23708
23685
  },
23709
- __wbg_getUnspentInputNoteNullifiers_c340441deaa25755: function(arg0, arg1) {
23686
+ __wbg_getUnspentInputNoteNullifiers_1d2344145aa0e85d: function(arg0, arg1) {
23710
23687
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
23711
23688
  return ret;
23712
23689
  },
@@ -23750,7 +23727,7 @@ function __wbg_get_imports(memory) {
23750
23727
  const ret = InputNoteRecord.__wrap(arg0);
23751
23728
  return ret;
23752
23729
  },
23753
- __wbg_insertAccountAddress_2ad144231111e7b8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23730
+ __wbg_insertAccountAddress_e0c46f8e053193e9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23754
23731
  let deferred0_0;
23755
23732
  let deferred0_1;
23756
23733
  try {
@@ -23764,7 +23741,7 @@ function __wbg_get_imports(memory) {
23764
23741
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23765
23742
  }
23766
23743
  },
23767
- __wbg_insertAccountAuth_d8105b6284b797bf: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23744
+ __wbg_insertAccountAuth_07cdbb9f21acbbe0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23768
23745
  let deferred0_0;
23769
23746
  let deferred0_1;
23770
23747
  let deferred1_0;
@@ -23781,7 +23758,7 @@ function __wbg_get_imports(memory) {
23781
23758
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23782
23759
  }
23783
23760
  },
23784
- __wbg_insertAccountKeyMapping_cbc8474854c70fba: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23761
+ __wbg_insertAccountKeyMapping_73ff296a94f45b01: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23785
23762
  let deferred0_0;
23786
23763
  let deferred0_1;
23787
23764
  let deferred1_0;
@@ -23798,7 +23775,7 @@ function __wbg_get_imports(memory) {
23798
23775
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23799
23776
  }
23800
23777
  },
23801
- __wbg_insertBlockHeader_dbcb8f73f4fc0fd5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23778
+ __wbg_insertBlockHeader_cd3837e26c067658: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23802
23779
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
23803
23780
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
23804
23781
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -23806,7 +23783,7 @@ function __wbg_get_imports(memory) {
23806
23783
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
23807
23784
  return ret;
23808
23785
  },
23809
- __wbg_insertPartialBlockchainNodes_6ab1bcf955334b73: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23786
+ __wbg_insertPartialBlockchainNodes_dc6809b37ef4b562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23810
23787
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23811
23788
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23812
23789
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -23814,7 +23791,7 @@ function __wbg_get_imports(memory) {
23814
23791
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
23815
23792
  return ret;
23816
23793
  },
23817
- __wbg_insertSetting_7dc23dc49d15b368: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23794
+ __wbg_insertSetting_11f6d3c419315d2a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23818
23795
  let deferred0_0;
23819
23796
  let deferred0_1;
23820
23797
  try {
@@ -23828,7 +23805,7 @@ function __wbg_get_imports(memory) {
23828
23805
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23829
23806
  }
23830
23807
  },
23831
- __wbg_insertTransactionScript_f84da450a39a1985: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23808
+ __wbg_insertTransactionScript_54c2f4f1423a8889: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23832
23809
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23833
23810
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23834
23811
  let v1;
@@ -23931,11 +23908,11 @@ function __wbg_get_imports(memory) {
23931
23908
  const ret = arg0.length;
23932
23909
  return ret;
23933
23910
  },
23934
- __wbg_listSettingKeys_6cef95ced3cbf8ba: function(arg0, arg1) {
23911
+ __wbg_listSettingKeys_7a01958cfea9e4ce: function(arg0, arg1) {
23935
23912
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
23936
23913
  return ret;
23937
23914
  },
23938
- __wbg_lockAccount_43dce8d4abdb5f09: function(arg0, arg1, arg2, arg3) {
23915
+ __wbg_lockAccount_4f46ad492483b226: function(arg0, arg1, arg2, arg3) {
23939
23916
  let deferred0_0;
23940
23917
  let deferred0_1;
23941
23918
  try {
@@ -24142,7 +24119,7 @@ function __wbg_get_imports(memory) {
24142
24119
  const ret = Array.of(arg0, arg1, arg2);
24143
24120
  return ret;
24144
24121
  },
24145
- __wbg_openDatabase_e10946cc4c72b847: function(arg0, arg1, arg2, arg3) {
24122
+ __wbg_openDatabase_1e6c970bd99986cc: function(arg0, arg1, arg2, arg3) {
24146
24123
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
24147
24124
  return ret;
24148
24125
  },
@@ -24176,7 +24153,7 @@ function __wbg_get_imports(memory) {
24176
24153
  const ret = ProvenTransaction.__wrap(arg0);
24177
24154
  return ret;
24178
24155
  },
24179
- __wbg_pruneAccountHistory_49fa123a7d62ae4d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24156
+ __wbg_pruneAccountHistory_b9f8ae9cc42b0264: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24180
24157
  let deferred0_0;
24181
24158
  let deferred0_1;
24182
24159
  let deferred1_0;
@@ -24193,7 +24170,7 @@ function __wbg_get_imports(memory) {
24193
24170
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24194
24171
  }
24195
24172
  },
24196
- __wbg_pruneIrrelevantBlocks_14a26c26d55e3e71: function(arg0, arg1) {
24173
+ __wbg_pruneIrrelevantBlocks_fd53c6ee9a1529de: function(arg0, arg1) {
24197
24174
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
24198
24175
  return ret;
24199
24176
  },
@@ -24211,13 +24188,13 @@ function __wbg_get_imports(memory) {
24211
24188
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
24212
24189
  arg0.releaseLock();
24213
24190
  },
24214
- __wbg_removeAccountAddress_0f2431a6492a108c: function(arg0, arg1, arg2, arg3) {
24191
+ __wbg_removeAccountAddress_d84a263da31a63b1: function(arg0, arg1, arg2, arg3) {
24215
24192
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24216
24193
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24217
24194
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
24218
24195
  return ret;
24219
24196
  },
24220
- __wbg_removeAccountAuth_0d70d9e3528ce2d2: function(arg0, arg1, arg2, arg3) {
24197
+ __wbg_removeAccountAuth_15fe803d63fd684f: function(arg0, arg1, arg2, arg3) {
24221
24198
  let deferred0_0;
24222
24199
  let deferred0_1;
24223
24200
  try {
@@ -24229,7 +24206,7 @@ function __wbg_get_imports(memory) {
24229
24206
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24230
24207
  }
24231
24208
  },
24232
- __wbg_removeAllMappingsForKey_fb72afcedd3eadbc: function(arg0, arg1, arg2, arg3) {
24209
+ __wbg_removeAllMappingsForKey_2a75a1ee44704b87: function(arg0, arg1, arg2, arg3) {
24233
24210
  let deferred0_0;
24234
24211
  let deferred0_1;
24235
24212
  try {
@@ -24241,7 +24218,7 @@ function __wbg_get_imports(memory) {
24241
24218
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24242
24219
  }
24243
24220
  },
24244
- __wbg_removeNoteTag_61789564bed57fa9: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24221
+ __wbg_removeNoteTag_3ffdd59c60d02d5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24245
24222
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24246
24223
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24247
24224
  let v1;
@@ -24257,7 +24234,7 @@ function __wbg_get_imports(memory) {
24257
24234
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
24258
24235
  return ret;
24259
24236
  },
24260
- __wbg_removeSetting_f90c38c2bbaa0503: function(arg0, arg1, arg2, arg3) {
24237
+ __wbg_removeSetting_ee0741372caba813: function(arg0, arg1, arg2, arg3) {
24261
24238
  let deferred0_0;
24262
24239
  let deferred0_1;
24263
24240
  try {
@@ -24456,13 +24433,13 @@ function __wbg_get_imports(memory) {
24456
24433
  const ret = TransactionSummary.__wrap(arg0);
24457
24434
  return ret;
24458
24435
  },
24459
- __wbg_undoAccountStates_55952d96171fcaae: function(arg0, arg1, arg2, arg3) {
24436
+ __wbg_undoAccountStates_3bb81f0b4777af78: function(arg0, arg1, arg2, arg3) {
24460
24437
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24461
24438
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24462
24439
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
24463
24440
  return ret;
24464
24441
  },
24465
- __wbg_upsertAccountCode_6ea0fd608c26da92: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24442
+ __wbg_upsertAccountCode_f54a1c88bec60044: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24466
24443
  let deferred0_0;
24467
24444
  let deferred0_1;
24468
24445
  try {
@@ -24476,7 +24453,7 @@ function __wbg_get_imports(memory) {
24476
24453
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24477
24454
  }
24478
24455
  },
24479
- __wbg_upsertAccountRecord_7427b8986e2d12c8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
24456
+ __wbg_upsertAccountRecord_d32c88004f7a361f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
24480
24457
  let deferred0_0;
24481
24458
  let deferred0_1;
24482
24459
  let deferred1_0;
@@ -24518,7 +24495,7 @@ function __wbg_get_imports(memory) {
24518
24495
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
24519
24496
  }
24520
24497
  },
24521
- __wbg_upsertAccountStorage_d913f1c451e02d49: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24498
+ __wbg_upsertAccountStorage_dc9b3f362de53588: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24522
24499
  let deferred0_0;
24523
24500
  let deferred0_1;
24524
24501
  try {
@@ -24532,7 +24509,7 @@ function __wbg_get_imports(memory) {
24532
24509
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24533
24510
  }
24534
24511
  },
24535
- __wbg_upsertForeignAccountCode_b6e56987b6e8449c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24512
+ __wbg_upsertForeignAccountCode_bc9c9b983d44be62: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24536
24513
  let deferred0_0;
24537
24514
  let deferred0_1;
24538
24515
  let deferred2_0;
@@ -24551,7 +24528,7 @@ function __wbg_get_imports(memory) {
24551
24528
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
24552
24529
  }
24553
24530
  },
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) {
24531
+ __wbg_upsertInputNote_e7e2d594002d33f0: 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) {
24555
24532
  let deferred0_0;
24556
24533
  let deferred0_1;
24557
24534
  let deferred4_0;
@@ -24593,7 +24570,7 @@ function __wbg_get_imports(memory) {
24593
24570
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
24594
24571
  }
24595
24572
  },
24596
- __wbg_upsertNoteScript_4a5e64583c81d57f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24573
+ __wbg_upsertNoteScript_e5262374e58464a5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24597
24574
  let deferred0_0;
24598
24575
  let deferred0_1;
24599
24576
  try {
@@ -24607,7 +24584,7 @@ function __wbg_get_imports(memory) {
24607
24584
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24608
24585
  }
24609
24586
  },
24610
- __wbg_upsertOutputNote_851bc49a046fb032: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
24587
+ __wbg_upsertOutputNote_fb601f7b4e18f75d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
24611
24588
  let deferred0_0;
24612
24589
  let deferred0_1;
24613
24590
  let deferred2_0;
@@ -24635,7 +24612,7 @@ function __wbg_get_imports(memory) {
24635
24612
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
24636
24613
  }
24637
24614
  },
24638
- __wbg_upsertStorageMapEntries_708d7e1b9785c232: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24615
+ __wbg_upsertStorageMapEntries_875ece6c792aece8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24639
24616
  let deferred0_0;
24640
24617
  let deferred0_1;
24641
24618
  try {
@@ -24649,7 +24626,7 @@ function __wbg_get_imports(memory) {
24649
24626
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24650
24627
  }
24651
24628
  },
24652
- __wbg_upsertTransactionRecord_131924c25bc551c8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
24629
+ __wbg_upsertTransactionRecord_5f9c83704ca38dc5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
24653
24630
  let deferred0_0;
24654
24631
  let deferred0_1;
24655
24632
  try {
@@ -24670,7 +24647,7 @@ function __wbg_get_imports(memory) {
24670
24647
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24671
24648
  }
24672
24649
  },
24673
- __wbg_upsertVaultAssets_610488e7f4bf93bb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24650
+ __wbg_upsertVaultAssets_acbcc6d51cb80ac5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24674
24651
  let deferred0_0;
24675
24652
  let deferred0_1;
24676
24653
  try {
@@ -25823,4 +25800,4 @@ var index = /*#__PURE__*/Object.freeze({
25823
25800
 
25824
25801
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
25825
25802
  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, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, initThreadPool, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker , __wbg_init, module$1 as __wasm_url };
25826
- //# sourceMappingURL=Cargo-DKB2aRX-.js.map
25803
+ //# sourceMappingURL=Cargo-CZopJ--X.js.map