@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
@@ -14793,6 +14793,21 @@ if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderly
14793
14793
 
14794
14794
  /**
14795
14795
  * Represents an update to a single account's state.
14796
+ *
14797
+ * `inspectable` is intentionally omitted (see #2183). When `inspectable` is
14798
+ * set on a struct with public fields, wasm-bindgen auto-generates a
14799
+ * `toJSON()` method that reads every field-getter — each of which calls
14800
+ * back into WASM via `__wbg_get_<class>_<field>(this.__wbg_ptr)`. Under
14801
+ * Next.js 16.2 dev-mode the patched `console.*` runs every non-primitive
14802
+ * argument through `safe-stable-stringify`, which invokes `toJSON()`
14803
+ * automatically. If the underlying pointer has been freed (or another
14804
+ * WASM call is in flight) the resulting `"null pointer passed to rust"`
14805
+ * trap propagates out of the user's `console.log` and crashes the
14806
+ * caller. Without `inspectable`, no `toJSON()` is emitted; JSON.stringify
14807
+ * falls back to `{}` (the wasm-bindgen wrapper has no own enumerable
14808
+ * data — it's all behind the `__wbg_ptr`), and the re-entry never
14809
+ * happens. Field access via the named getters still works exactly as
14810
+ * before; only the auto-stringification path is muted.
14796
14811
  */
14797
14812
  class JsAccountUpdate {
14798
14813
  static __wrap(ptr) {
@@ -14808,24 +14823,6 @@ class JsAccountUpdate {
14808
14823
  }
14809
14824
  return jsValue.__destroy_into_raw();
14810
14825
  }
14811
- toJSON() {
14812
- return {
14813
- accountCommitment: this.accountCommitment,
14814
- accountId: this.accountId,
14815
- accountSeed: this.accountSeed,
14816
- assets: this.assets,
14817
- codeRoot: this.codeRoot,
14818
- committed: this.committed,
14819
- nonce: this.nonce,
14820
- storageMapEntries: this.storageMapEntries,
14821
- storageRoot: this.storageRoot,
14822
- storageSlots: this.storageSlots,
14823
- vaultRoot: this.vaultRoot,
14824
- };
14825
- }
14826
- toString() {
14827
- return JSON.stringify(this);
14828
- }
14829
14826
  __destroy_into_raw() {
14830
14827
  const ptr = this.__wbg_ptr;
14831
14828
  this.__wbg_ptr = 0;
@@ -15341,6 +15338,9 @@ if (Symbol.dispose) JsStateSyncUpdate.prototype[Symbol.dispose] = JsStateSyncUpd
15341
15338
 
15342
15339
  /**
15343
15340
  * A JavaScript representation of a storage map entry in an account.
15341
+ *
15342
+ * `inspectable` is intentionally omitted — see the note on
15343
+ * `JsAccountUpdate` for the full rationale (#2183).
15344
15344
  */
15345
15345
  class JsStorageMapEntry {
15346
15346
  static __wrap(ptr) {
@@ -15356,16 +15356,6 @@ class JsStorageMapEntry {
15356
15356
  }
15357
15357
  return jsValue.__destroy_into_raw();
15358
15358
  }
15359
- toJSON() {
15360
- return {
15361
- key: this.key,
15362
- slotName: this.slotName,
15363
- value: this.value,
15364
- };
15365
- }
15366
- toString() {
15367
- return JSON.stringify(this);
15368
- }
15369
15359
  __destroy_into_raw() {
15370
15360
  const ptr = this.__wbg_ptr;
15371
15361
  this.__wbg_ptr = 0;
@@ -15456,6 +15446,9 @@ if (Symbol.dispose) JsStorageMapEntry.prototype[Symbol.dispose] = JsStorageMapEn
15456
15446
 
15457
15447
  /**
15458
15448
  * A JavaScript representation of a storage slot in an account.
15449
+ *
15450
+ * `inspectable` is intentionally omitted — see the note on
15451
+ * `JsAccountUpdate` for the full rationale (#2183).
15459
15452
  */
15460
15453
  class JsStorageSlot {
15461
15454
  static __wrap(ptr) {
@@ -15471,16 +15464,6 @@ class JsStorageSlot {
15471
15464
  }
15472
15465
  return jsValue.__destroy_into_raw();
15473
15466
  }
15474
- toJSON() {
15475
- return {
15476
- slotName: this.slotName,
15477
- slotType: this.slotType,
15478
- slotValue: this.slotValue,
15479
- };
15480
- }
15481
- toString() {
15482
- return JSON.stringify(this);
15483
- }
15484
15467
  __destroy_into_raw() {
15485
15468
  const ptr = this.__wbg_ptr;
15486
15469
  this.__wbg_ptr = 0;
@@ -15561,6 +15544,9 @@ if (Symbol.dispose) JsStorageSlot.prototype[Symbol.dispose] = JsStorageSlot.prot
15561
15544
 
15562
15545
  /**
15563
15546
  * An object that contains a serialized vault asset.
15547
+ *
15548
+ * `inspectable` is intentionally omitted — see the note on
15549
+ * `JsAccountUpdate` for the full rationale (#2183).
15564
15550
  */
15565
15551
  class JsVaultAsset {
15566
15552
  static __wrap(ptr) {
@@ -15576,15 +15562,6 @@ class JsVaultAsset {
15576
15562
  }
15577
15563
  return jsValue.__destroy_into_raw();
15578
15564
  }
15579
- toJSON() {
15580
- return {
15581
- asset: this.asset,
15582
- vaultKey: this.vaultKey,
15583
- };
15584
- }
15585
- toString() {
15586
- return JSON.stringify(this);
15587
- }
15588
15565
  __destroy_into_raw() {
15589
15566
  const ptr = this.__wbg_ptr;
15590
15567
  this.__wbg_ptr = 0;
@@ -23004,7 +22981,7 @@ function __wbg_get_imports() {
23004
22981
  const ret = AccountStorage.__wrap(arg0);
23005
22982
  return ret;
23006
22983
  },
23007
- __wbg_addNoteTag_4723ff010f46936d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22984
+ __wbg_addNoteTag_71f455acb2c33097: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23008
22985
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23009
22986
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23010
22987
  let v1;
@@ -23027,15 +23004,15 @@ function __wbg_get_imports() {
23027
23004
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
23028
23005
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
23029
23006
  }, arguments); },
23030
- __wbg_applyFullAccountState_e30d3e617db6a5ed: function(arg0, arg1, arg2) {
23007
+ __wbg_applyFullAccountState_c2b7ca372af269ca: function(arg0, arg1, arg2) {
23031
23008
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
23032
23009
  return ret;
23033
23010
  },
23034
- __wbg_applyStateSync_f7a749086c461712: function(arg0, arg1, arg2) {
23011
+ __wbg_applyStateSync_91fddc562c8bef62: function(arg0, arg1, arg2) {
23035
23012
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
23036
23013
  return ret;
23037
23014
  },
23038
- __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) {
23015
+ __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) {
23039
23016
  let deferred0_0;
23040
23017
  let deferred0_1;
23041
23018
  let deferred1_0;
@@ -23170,7 +23147,7 @@ function __wbg_get_imports() {
23170
23147
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23171
23148
  }
23172
23149
  },
23173
- __wbg_exportStore_bf2152371e8102eb: function(arg0, arg1) {
23150
+ __wbg_exportStore_7414a54978b6564b: function(arg0, arg1) {
23174
23151
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
23175
23152
  return ret;
23176
23153
  },
@@ -23202,7 +23179,7 @@ function __wbg_get_imports() {
23202
23179
  const ret = FetchedNote.__wrap(arg0);
23203
23180
  return ret;
23204
23181
  },
23205
- __wbg_forceImportStore_7b69f3681de75a90: function(arg0, arg1, arg2) {
23182
+ __wbg_forceImportStore_ec328e296b0a4bff: function(arg0, arg1, arg2) {
23206
23183
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
23207
23184
  return ret;
23208
23185
  },
@@ -23222,7 +23199,7 @@ function __wbg_get_imports() {
23222
23199
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
23223
23200
  return ret;
23224
23201
  },
23225
- __wbg_getAccountAddresses_508963d8845d5514: function(arg0, arg1, arg2, arg3) {
23202
+ __wbg_getAccountAddresses_e92f560e33b96c28: function(arg0, arg1, arg2, arg3) {
23226
23203
  let deferred0_0;
23227
23204
  let deferred0_1;
23228
23205
  try {
@@ -23234,7 +23211,7 @@ function __wbg_get_imports() {
23234
23211
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23235
23212
  }
23236
23213
  },
23237
- __wbg_getAccountAuthByPubKeyCommitment_0fa25c4d1501c820: function(arg0, arg1, arg2, arg3) {
23214
+ __wbg_getAccountAuthByPubKeyCommitment_28efb17c33476b84: function(arg0, arg1, arg2, arg3) {
23238
23215
  let deferred0_0;
23239
23216
  let deferred0_1;
23240
23217
  try {
@@ -23246,7 +23223,7 @@ function __wbg_get_imports() {
23246
23223
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23247
23224
  }
23248
23225
  },
23249
- __wbg_getAccountCode_06134eb8e4174d45: function(arg0, arg1, arg2, arg3) {
23226
+ __wbg_getAccountCode_188958db8c438bab: function(arg0, arg1, arg2, arg3) {
23250
23227
  let deferred0_0;
23251
23228
  let deferred0_1;
23252
23229
  try {
@@ -23258,7 +23235,7 @@ function __wbg_get_imports() {
23258
23235
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23259
23236
  }
23260
23237
  },
23261
- __wbg_getAccountHeaderByCommitment_956bac34f1c7f6a0: function(arg0, arg1, arg2, arg3) {
23238
+ __wbg_getAccountHeaderByCommitment_4e6fa83d25c41363: function(arg0, arg1, arg2, arg3) {
23262
23239
  let deferred0_0;
23263
23240
  let deferred0_1;
23264
23241
  try {
@@ -23270,7 +23247,7 @@ function __wbg_get_imports() {
23270
23247
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23271
23248
  }
23272
23249
  },
23273
- __wbg_getAccountHeader_b69e7d8345332c31: function(arg0, arg1, arg2, arg3) {
23250
+ __wbg_getAccountHeader_aabe60772170d684: function(arg0, arg1, arg2, arg3) {
23274
23251
  let deferred0_0;
23275
23252
  let deferred0_1;
23276
23253
  try {
@@ -23282,7 +23259,7 @@ function __wbg_get_imports() {
23282
23259
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23283
23260
  }
23284
23261
  },
23285
- __wbg_getAccountIdByKeyCommitment_a614d422617648e8: function(arg0, arg1, arg2, arg3) {
23262
+ __wbg_getAccountIdByKeyCommitment_3802e17bf8d3c9b9: function(arg0, arg1, arg2, arg3) {
23286
23263
  let deferred0_0;
23287
23264
  let deferred0_1;
23288
23265
  try {
@@ -23294,11 +23271,11 @@ function __wbg_get_imports() {
23294
23271
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23295
23272
  }
23296
23273
  },
23297
- __wbg_getAccountIds_254f4a379f7148fc: function(arg0, arg1) {
23274
+ __wbg_getAccountIds_8d429d26691ebece: function(arg0, arg1) {
23298
23275
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
23299
23276
  return ret;
23300
23277
  },
23301
- __wbg_getAccountStorageMaps_bb5eee8491dcea16: function(arg0, arg1, arg2, arg3) {
23278
+ __wbg_getAccountStorageMaps_60eba620d7ef3115: function(arg0, arg1, arg2, arg3) {
23302
23279
  let deferred0_0;
23303
23280
  let deferred0_1;
23304
23281
  try {
@@ -23310,7 +23287,7 @@ function __wbg_get_imports() {
23310
23287
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23311
23288
  }
23312
23289
  },
23313
- __wbg_getAccountStorage_327e6237e53d1c34: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23290
+ __wbg_getAccountStorage_2e39fb9ee52b36ab: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23314
23291
  let deferred0_0;
23315
23292
  let deferred0_1;
23316
23293
  try {
@@ -23324,7 +23301,7 @@ function __wbg_get_imports() {
23324
23301
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23325
23302
  }
23326
23303
  },
23327
- __wbg_getAccountVaultAssets_13c9a817f208f9a0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23304
+ __wbg_getAccountVaultAssets_f4af786007a4cd8a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23328
23305
  let deferred0_0;
23329
23306
  let deferred0_1;
23330
23307
  try {
@@ -23338,23 +23315,23 @@ function __wbg_get_imports() {
23338
23315
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23339
23316
  }
23340
23317
  },
23341
- __wbg_getAllAccountHeaders_beea75c113c4f57d: function(arg0, arg1) {
23318
+ __wbg_getAllAccountHeaders_41bc150e0b8348ab: function(arg0, arg1) {
23342
23319
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
23343
23320
  return ret;
23344
23321
  },
23345
- __wbg_getBlockHeaders_07a196e8299ff787: function(arg0, arg1, arg2, arg3) {
23322
+ __wbg_getBlockHeaders_d37fd9c6e0f0fc3c: function(arg0, arg1, arg2, arg3) {
23346
23323
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
23347
23324
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23348
23325
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
23349
23326
  return ret;
23350
23327
  },
23351
- __wbg_getForeignAccountCode_6e79e22462b49ff2: function(arg0, arg1, arg2, arg3) {
23328
+ __wbg_getForeignAccountCode_07c810d364cd77ae: function(arg0, arg1, arg2, arg3) {
23352
23329
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23353
23330
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23354
23331
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
23355
23332
  return ret;
23356
23333
  },
23357
- __wbg_getInputNoteByOffset_5b701fc90ea53cbd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
23334
+ __wbg_getInputNoteByOffset_677e9a33e6340b5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
23358
23335
  let deferred1_0;
23359
23336
  let deferred1_1;
23360
23337
  try {
@@ -23368,25 +23345,25 @@ function __wbg_get_imports() {
23368
23345
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23369
23346
  }
23370
23347
  },
23371
- __wbg_getInputNotesFromIds_d6347ee0ea56a624: function(arg0, arg1, arg2, arg3) {
23348
+ __wbg_getInputNotesFromIds_44862afd379bbbb6: function(arg0, arg1, arg2, arg3) {
23372
23349
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23373
23350
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23374
23351
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
23375
23352
  return ret;
23376
23353
  },
23377
- __wbg_getInputNotesFromNullifiers_c050444a6ae5a37c: function(arg0, arg1, arg2, arg3) {
23354
+ __wbg_getInputNotesFromNullifiers_2ec2c4e148b8f834: function(arg0, arg1, arg2, arg3) {
23378
23355
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23379
23356
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23380
23357
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
23381
23358
  return ret;
23382
23359
  },
23383
- __wbg_getInputNotes_b17663215ac794d2: function(arg0, arg1, arg2, arg3) {
23360
+ __wbg_getInputNotes_8e59018ef0fd9758: function(arg0, arg1, arg2, arg3) {
23384
23361
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23385
23362
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23386
23363
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
23387
23364
  return ret;
23388
23365
  },
23389
- __wbg_getKeyCommitmentsByAccountId_4b181a7094d01904: function(arg0, arg1, arg2, arg3) {
23366
+ __wbg_getKeyCommitmentsByAccountId_8d83fa814d1cc718: function(arg0, arg1, arg2, arg3) {
23390
23367
  let deferred0_0;
23391
23368
  let deferred0_1;
23392
23369
  try {
@@ -23398,7 +23375,7 @@ function __wbg_get_imports() {
23398
23375
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23399
23376
  }
23400
23377
  },
23401
- __wbg_getNoteScript_d1c46eb9d61290a7: function(arg0, arg1, arg2, arg3) {
23378
+ __wbg_getNoteScript_fe7c88df1db18389: function(arg0, arg1, arg2, arg3) {
23402
23379
  let deferred0_0;
23403
23380
  let deferred0_1;
23404
23381
  try {
@@ -23410,33 +23387,33 @@ function __wbg_get_imports() {
23410
23387
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23411
23388
  }
23412
23389
  },
23413
- __wbg_getNoteTags_261757bd9ba6b176: function(arg0, arg1) {
23390
+ __wbg_getNoteTags_75edb9d48492a785: function(arg0, arg1) {
23414
23391
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
23415
23392
  return ret;
23416
23393
  },
23417
- __wbg_getOutputNotesFromIds_ec175b7442179dfc: function(arg0, arg1, arg2, arg3) {
23394
+ __wbg_getOutputNotesFromIds_6db6231c439f3c87: function(arg0, arg1, arg2, arg3) {
23418
23395
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23419
23396
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23420
23397
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
23421
23398
  return ret;
23422
23399
  },
23423
- __wbg_getOutputNotesFromNullifiers_cfe595f5a28981dd: function(arg0, arg1, arg2, arg3) {
23400
+ __wbg_getOutputNotesFromNullifiers_30c2ca006c9640f8: function(arg0, arg1, arg2, arg3) {
23424
23401
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23425
23402
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23426
23403
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
23427
23404
  return ret;
23428
23405
  },
23429
- __wbg_getOutputNotes_34426a64b01c311e: function(arg0, arg1, arg2, arg3) {
23406
+ __wbg_getOutputNotes_7a0d64dede8d64be: function(arg0, arg1, arg2, arg3) {
23430
23407
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23431
23408
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23432
23409
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
23433
23410
  return ret;
23434
23411
  },
23435
- __wbg_getPartialBlockchainNodesAll_57b4bdaa9b2cb88f: function(arg0, arg1) {
23412
+ __wbg_getPartialBlockchainNodesAll_15a5f0a63644f546: function(arg0, arg1) {
23436
23413
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
23437
23414
  return ret;
23438
23415
  },
23439
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_3c223e72f7b9003e: function(arg0, arg1, arg2, arg3) {
23416
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_6742a36d7d26c921: function(arg0, arg1, arg2, arg3) {
23440
23417
  let deferred0_0;
23441
23418
  let deferred0_1;
23442
23419
  try {
@@ -23448,13 +23425,13 @@ function __wbg_get_imports() {
23448
23425
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23449
23426
  }
23450
23427
  },
23451
- __wbg_getPartialBlockchainNodes_8a8aa6c8cb7e9d10: function(arg0, arg1, arg2, arg3) {
23428
+ __wbg_getPartialBlockchainNodes_35c67e8f4bfd8da6: function(arg0, arg1, arg2, arg3) {
23452
23429
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23453
23430
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23454
23431
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
23455
23432
  return ret;
23456
23433
  },
23457
- __wbg_getPartialBlockchainPeaksByBlockNum_a6d62f60cf767faf: function(arg0, arg1, arg2) {
23434
+ __wbg_getPartialBlockchainPeaksByBlockNum_5a9240ed1087ee15: function(arg0, arg1, arg2) {
23458
23435
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
23459
23436
  return ret;
23460
23437
  },
@@ -23465,7 +23442,7 @@ function __wbg_get_imports() {
23465
23442
  const ret = arg0.getReader();
23466
23443
  return ret;
23467
23444
  }, arguments); },
23468
- __wbg_getSetting_b0870045f2c26e89: function(arg0, arg1, arg2, arg3) {
23445
+ __wbg_getSetting_25ab76d54f719ecd: function(arg0, arg1, arg2, arg3) {
23469
23446
  let deferred0_0;
23470
23447
  let deferred0_1;
23471
23448
  try {
@@ -23477,7 +23454,7 @@ function __wbg_get_imports() {
23477
23454
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23478
23455
  }
23479
23456
  },
23480
- __wbg_getSyncHeight_764e80a403e4c11c: function(arg0, arg1) {
23457
+ __wbg_getSyncHeight_d852979e2c8c1c32: function(arg0, arg1) {
23481
23458
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
23482
23459
  return ret;
23483
23460
  },
@@ -23485,15 +23462,15 @@ function __wbg_get_imports() {
23485
23462
  const ret = arg0.getTime();
23486
23463
  return ret;
23487
23464
  },
23488
- __wbg_getTrackedBlockHeaderNumbers_7f4b13a63d168c5d: function(arg0, arg1) {
23465
+ __wbg_getTrackedBlockHeaderNumbers_7a6dd9bd482b7c1f: function(arg0, arg1) {
23489
23466
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
23490
23467
  return ret;
23491
23468
  },
23492
- __wbg_getTrackedBlockHeaders_6f12a3c4ab8c4b7b: function(arg0, arg1) {
23469
+ __wbg_getTrackedBlockHeaders_921ecf4c4bdc8c6f: function(arg0, arg1) {
23493
23470
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
23494
23471
  return ret;
23495
23472
  },
23496
- __wbg_getTransactions_30ea36f7fc0b3a07: function(arg0, arg1, arg2, arg3) {
23473
+ __wbg_getTransactions_cb4af339938ce981: function(arg0, arg1, arg2, arg3) {
23497
23474
  let deferred0_0;
23498
23475
  let deferred0_1;
23499
23476
  try {
@@ -23505,7 +23482,7 @@ function __wbg_get_imports() {
23505
23482
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23506
23483
  }
23507
23484
  },
23508
- __wbg_getUnspentInputNoteNullifiers_c340441deaa25755: function(arg0, arg1) {
23485
+ __wbg_getUnspentInputNoteNullifiers_1d2344145aa0e85d: function(arg0, arg1) {
23509
23486
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
23510
23487
  return ret;
23511
23488
  },
@@ -23549,7 +23526,7 @@ function __wbg_get_imports() {
23549
23526
  const ret = InputNoteRecord.__wrap(arg0);
23550
23527
  return ret;
23551
23528
  },
23552
- __wbg_insertAccountAddress_2ad144231111e7b8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23529
+ __wbg_insertAccountAddress_e0c46f8e053193e9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23553
23530
  let deferred0_0;
23554
23531
  let deferred0_1;
23555
23532
  try {
@@ -23563,7 +23540,7 @@ function __wbg_get_imports() {
23563
23540
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23564
23541
  }
23565
23542
  },
23566
- __wbg_insertAccountAuth_d8105b6284b797bf: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23543
+ __wbg_insertAccountAuth_07cdbb9f21acbbe0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23567
23544
  let deferred0_0;
23568
23545
  let deferred0_1;
23569
23546
  let deferred1_0;
@@ -23580,7 +23557,7 @@ function __wbg_get_imports() {
23580
23557
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23581
23558
  }
23582
23559
  },
23583
- __wbg_insertAccountKeyMapping_cbc8474854c70fba: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23560
+ __wbg_insertAccountKeyMapping_73ff296a94f45b01: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23584
23561
  let deferred0_0;
23585
23562
  let deferred0_1;
23586
23563
  let deferred1_0;
@@ -23597,7 +23574,7 @@ function __wbg_get_imports() {
23597
23574
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23598
23575
  }
23599
23576
  },
23600
- __wbg_insertBlockHeader_dbcb8f73f4fc0fd5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23577
+ __wbg_insertBlockHeader_cd3837e26c067658: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23601
23578
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
23602
23579
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
23603
23580
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -23605,7 +23582,7 @@ function __wbg_get_imports() {
23605
23582
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
23606
23583
  return ret;
23607
23584
  },
23608
- __wbg_insertPartialBlockchainNodes_6ab1bcf955334b73: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23585
+ __wbg_insertPartialBlockchainNodes_dc6809b37ef4b562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23609
23586
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23610
23587
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23611
23588
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -23613,7 +23590,7 @@ function __wbg_get_imports() {
23613
23590
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
23614
23591
  return ret;
23615
23592
  },
23616
- __wbg_insertSetting_7dc23dc49d15b368: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23593
+ __wbg_insertSetting_11f6d3c419315d2a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23617
23594
  let deferred0_0;
23618
23595
  let deferred0_1;
23619
23596
  try {
@@ -23627,7 +23604,7 @@ function __wbg_get_imports() {
23627
23604
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23628
23605
  }
23629
23606
  },
23630
- __wbg_insertTransactionScript_f84da450a39a1985: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23607
+ __wbg_insertTransactionScript_54c2f4f1423a8889: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23631
23608
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23632
23609
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23633
23610
  let v1;
@@ -23720,11 +23697,11 @@ function __wbg_get_imports() {
23720
23697
  const ret = arg0.length;
23721
23698
  return ret;
23722
23699
  },
23723
- __wbg_listSettingKeys_6cef95ced3cbf8ba: function(arg0, arg1) {
23700
+ __wbg_listSettingKeys_7a01958cfea9e4ce: function(arg0, arg1) {
23724
23701
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
23725
23702
  return ret;
23726
23703
  },
23727
- __wbg_lockAccount_43dce8d4abdb5f09: function(arg0, arg1, arg2, arg3) {
23704
+ __wbg_lockAccount_4f46ad492483b226: function(arg0, arg1, arg2, arg3) {
23728
23705
  let deferred0_0;
23729
23706
  let deferred0_1;
23730
23707
  try {
@@ -23808,7 +23785,7 @@ function __wbg_get_imports() {
23808
23785
  const a = state0.a;
23809
23786
  state0.a = 0;
23810
23787
  try {
23811
- return wasm_bindgen__convert__closures_____invoke__hf3bad69ddb7e770e(a, state0.b, arg0, arg1);
23788
+ return wasm_bindgen__convert__closures_____invoke__h22101db9f01e45e1(a, state0.b, arg0, arg1);
23812
23789
  } finally {
23813
23790
  state0.a = a;
23814
23791
  }
@@ -23915,7 +23892,7 @@ function __wbg_get_imports() {
23915
23892
  const ret = NoteTag.__unwrap(arg0);
23916
23893
  return ret;
23917
23894
  },
23918
- __wbg_openDatabase_e10946cc4c72b847: function(arg0, arg1, arg2, arg3) {
23895
+ __wbg_openDatabase_1e6c970bd99986cc: function(arg0, arg1, arg2, arg3) {
23919
23896
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
23920
23897
  return ret;
23921
23898
  },
@@ -23946,7 +23923,7 @@ function __wbg_get_imports() {
23946
23923
  const ret = ProvenTransaction.__wrap(arg0);
23947
23924
  return ret;
23948
23925
  },
23949
- __wbg_pruneAccountHistory_49fa123a7d62ae4d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23926
+ __wbg_pruneAccountHistory_b9f8ae9cc42b0264: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23950
23927
  let deferred0_0;
23951
23928
  let deferred0_1;
23952
23929
  let deferred1_0;
@@ -23963,7 +23940,7 @@ function __wbg_get_imports() {
23963
23940
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23964
23941
  }
23965
23942
  },
23966
- __wbg_pruneIrrelevantBlocks_14a26c26d55e3e71: function(arg0, arg1) {
23943
+ __wbg_pruneIrrelevantBlocks_fd53c6ee9a1529de: function(arg0, arg1) {
23967
23944
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
23968
23945
  return ret;
23969
23946
  },
@@ -23981,13 +23958,13 @@ function __wbg_get_imports() {
23981
23958
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
23982
23959
  arg0.releaseLock();
23983
23960
  },
23984
- __wbg_removeAccountAddress_0f2431a6492a108c: function(arg0, arg1, arg2, arg3) {
23961
+ __wbg_removeAccountAddress_d84a263da31a63b1: function(arg0, arg1, arg2, arg3) {
23985
23962
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23986
23963
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23987
23964
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
23988
23965
  return ret;
23989
23966
  },
23990
- __wbg_removeAccountAuth_0d70d9e3528ce2d2: function(arg0, arg1, arg2, arg3) {
23967
+ __wbg_removeAccountAuth_15fe803d63fd684f: function(arg0, arg1, arg2, arg3) {
23991
23968
  let deferred0_0;
23992
23969
  let deferred0_1;
23993
23970
  try {
@@ -23999,7 +23976,7 @@ function __wbg_get_imports() {
23999
23976
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24000
23977
  }
24001
23978
  },
24002
- __wbg_removeAllMappingsForKey_fb72afcedd3eadbc: function(arg0, arg1, arg2, arg3) {
23979
+ __wbg_removeAllMappingsForKey_2a75a1ee44704b87: function(arg0, arg1, arg2, arg3) {
24003
23980
  let deferred0_0;
24004
23981
  let deferred0_1;
24005
23982
  try {
@@ -24011,7 +23988,7 @@ function __wbg_get_imports() {
24011
23988
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24012
23989
  }
24013
23990
  },
24014
- __wbg_removeNoteTag_61789564bed57fa9: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23991
+ __wbg_removeNoteTag_3ffdd59c60d02d5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24015
23992
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24016
23993
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24017
23994
  let v1;
@@ -24027,7 +24004,7 @@ function __wbg_get_imports() {
24027
24004
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
24028
24005
  return ret;
24029
24006
  },
24030
- __wbg_removeSetting_f90c38c2bbaa0503: function(arg0, arg1, arg2, arg3) {
24007
+ __wbg_removeSetting_ee0741372caba813: function(arg0, arg1, arg2, arg3) {
24031
24008
  let deferred0_0;
24032
24009
  let deferred0_1;
24033
24010
  try {
@@ -24219,13 +24196,13 @@ function __wbg_get_imports() {
24219
24196
  const ret = TransactionSummary.__wrap(arg0);
24220
24197
  return ret;
24221
24198
  },
24222
- __wbg_undoAccountStates_55952d96171fcaae: function(arg0, arg1, arg2, arg3) {
24199
+ __wbg_undoAccountStates_3bb81f0b4777af78: function(arg0, arg1, arg2, arg3) {
24223
24200
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24224
24201
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24225
24202
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
24226
24203
  return ret;
24227
24204
  },
24228
- __wbg_upsertAccountCode_6ea0fd608c26da92: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24205
+ __wbg_upsertAccountCode_f54a1c88bec60044: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24229
24206
  let deferred0_0;
24230
24207
  let deferred0_1;
24231
24208
  try {
@@ -24239,7 +24216,7 @@ function __wbg_get_imports() {
24239
24216
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24240
24217
  }
24241
24218
  },
24242
- __wbg_upsertAccountRecord_7427b8986e2d12c8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
24219
+ __wbg_upsertAccountRecord_d32c88004f7a361f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
24243
24220
  let deferred0_0;
24244
24221
  let deferred0_1;
24245
24222
  let deferred1_0;
@@ -24281,7 +24258,7 @@ function __wbg_get_imports() {
24281
24258
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
24282
24259
  }
24283
24260
  },
24284
- __wbg_upsertAccountStorage_d913f1c451e02d49: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24261
+ __wbg_upsertAccountStorage_dc9b3f362de53588: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24285
24262
  let deferred0_0;
24286
24263
  let deferred0_1;
24287
24264
  try {
@@ -24295,7 +24272,7 @@ function __wbg_get_imports() {
24295
24272
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24296
24273
  }
24297
24274
  },
24298
- __wbg_upsertForeignAccountCode_b6e56987b6e8449c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24275
+ __wbg_upsertForeignAccountCode_bc9c9b983d44be62: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
24299
24276
  let deferred0_0;
24300
24277
  let deferred0_1;
24301
24278
  let deferred2_0;
@@ -24314,7 +24291,7 @@ function __wbg_get_imports() {
24314
24291
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
24315
24292
  }
24316
24293
  },
24317
- __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) {
24294
+ __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) {
24318
24295
  let deferred0_0;
24319
24296
  let deferred0_1;
24320
24297
  let deferred4_0;
@@ -24356,7 +24333,7 @@ function __wbg_get_imports() {
24356
24333
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
24357
24334
  }
24358
24335
  },
24359
- __wbg_upsertNoteScript_4a5e64583c81d57f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24336
+ __wbg_upsertNoteScript_e5262374e58464a5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24360
24337
  let deferred0_0;
24361
24338
  let deferred0_1;
24362
24339
  try {
@@ -24370,7 +24347,7 @@ function __wbg_get_imports() {
24370
24347
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24371
24348
  }
24372
24349
  },
24373
- __wbg_upsertOutputNote_851bc49a046fb032: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
24350
+ __wbg_upsertOutputNote_fb601f7b4e18f75d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
24374
24351
  let deferred0_0;
24375
24352
  let deferred0_1;
24376
24353
  let deferred2_0;
@@ -24398,7 +24375,7 @@ function __wbg_get_imports() {
24398
24375
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
24399
24376
  }
24400
24377
  },
24401
- __wbg_upsertStorageMapEntries_708d7e1b9785c232: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24378
+ __wbg_upsertStorageMapEntries_875ece6c792aece8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24402
24379
  let deferred0_0;
24403
24380
  let deferred0_1;
24404
24381
  try {
@@ -24412,7 +24389,7 @@ function __wbg_get_imports() {
24412
24389
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24413
24390
  }
24414
24391
  },
24415
- __wbg_upsertTransactionRecord_131924c25bc551c8: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
24392
+ __wbg_upsertTransactionRecord_5f9c83704ca38dc5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
24416
24393
  let deferred0_0;
24417
24394
  let deferred0_1;
24418
24395
  try {
@@ -24433,7 +24410,7 @@ function __wbg_get_imports() {
24433
24410
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24434
24411
  }
24435
24412
  },
24436
- __wbg_upsertVaultAssets_610488e7f4bf93bb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24413
+ __wbg_upsertVaultAssets_acbcc6d51cb80ac5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24437
24414
  let deferred0_0;
24438
24415
  let deferred0_1;
24439
24416
  try {
@@ -24464,13 +24441,13 @@ function __wbg_get_imports() {
24464
24441
  return ret;
24465
24442
  },
24466
24443
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
24467
- // Cast intrinsic for `Closure(Closure { dtor_idx: 357, function: Function { arguments: [Externref], shim_idx: 695, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
24468
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h521bf77e4c41e510, wasm_bindgen__convert__closures_____invoke__h305992f72ee30af3);
24444
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [Externref], shim_idx: 698, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
24445
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h10c3fe8f433ba3dd, wasm_bindgen__convert__closures_____invoke__h69bc00ec8b9a6549);
24469
24446
  return ret;
24470
24447
  },
24471
24448
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
24472
- // Cast intrinsic for `Closure(Closure { dtor_idx: 357, function: Function { arguments: [], shim_idx: 358, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
24473
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h521bf77e4c41e510, wasm_bindgen__convert__closures_____invoke__h2aef54828e0d6e2f);
24449
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [], shim_idx: 361, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
24450
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h10c3fe8f433ba3dd, wasm_bindgen__convert__closures_____invoke__h5c73a4a324493889);
24474
24451
  return ret;
24475
24452
  },
24476
24453
  __wbindgen_cast_0000000000000003: function(arg0) {
@@ -24574,16 +24551,16 @@ function __wbg_get_imports() {
24574
24551
  };
24575
24552
  }
24576
24553
 
24577
- function wasm_bindgen__convert__closures_____invoke__h2aef54828e0d6e2f(arg0, arg1) {
24578
- wasm.wasm_bindgen__convert__closures_____invoke__h2aef54828e0d6e2f(arg0, arg1);
24554
+ function wasm_bindgen__convert__closures_____invoke__h5c73a4a324493889(arg0, arg1) {
24555
+ wasm.wasm_bindgen__convert__closures_____invoke__h5c73a4a324493889(arg0, arg1);
24579
24556
  }
24580
24557
 
24581
- function wasm_bindgen__convert__closures_____invoke__h305992f72ee30af3(arg0, arg1, arg2) {
24582
- wasm.wasm_bindgen__convert__closures_____invoke__h305992f72ee30af3(arg0, arg1, arg2);
24558
+ function wasm_bindgen__convert__closures_____invoke__h69bc00ec8b9a6549(arg0, arg1, arg2) {
24559
+ wasm.wasm_bindgen__convert__closures_____invoke__h69bc00ec8b9a6549(arg0, arg1, arg2);
24583
24560
  }
24584
24561
 
24585
- function wasm_bindgen__convert__closures_____invoke__hf3bad69ddb7e770e(arg0, arg1, arg2, arg3) {
24586
- wasm.wasm_bindgen__convert__closures_____invoke__hf3bad69ddb7e770e(arg0, arg1, arg2, arg3);
24562
+ function wasm_bindgen__convert__closures_____invoke__h22101db9f01e45e1(arg0, arg1, arg2, arg3) {
24563
+ wasm.wasm_bindgen__convert__closures_____invoke__h22101db9f01e45e1(arg0, arg1, arg2, arg3);
24587
24564
  }
24588
24565
 
24589
24566
 
@@ -25387,4 +25364,4 @@ async function __wbg_init(module_or_path) {
25387
25364
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
25388
25365
 
25389
25366
  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, sequentialSumBench, setupLogging };
25390
- //# sourceMappingURL=Cargo-jOTNoFyS-DRTcF6wf.js.map
25367
+ //# sourceMappingURL=Cargo-DC6jSekr-BG7C7m56.js.map