@miden-sdk/miden-sdk 0.15.6 → 0.15.7

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 (42) hide show
  1. package/README.md +15 -0
  2. package/dist/mt/{Cargo-mvyTli7g.js → Cargo-CnGom-_z.js} +119 -76
  3. package/dist/mt/Cargo-CnGom-_z.js.map +1 -0
  4. package/dist/mt/api-types.d.ts +120 -0
  5. package/dist/mt/assets/miden_client_web.wasm +0 -0
  6. package/dist/mt/crates/miden_client_web.d.ts +32 -0
  7. package/dist/mt/docs-entry.d.ts +3 -0
  8. package/dist/mt/eager.js +1 -1
  9. package/dist/mt/index.js +252 -5
  10. package/dist/mt/index.js.map +1 -1
  11. package/dist/mt/wasm.js +1 -1
  12. package/dist/mt/workerHelpers.js +1 -1
  13. package/dist/mt/workers/{Cargo-mvyTli7g-BwMMSyoq.js → Cargo-CnGom-_z-X_3VwTbo.js} +119 -76
  14. package/dist/mt/workers/{Cargo-mvyTli7g-BwMMSyoq.js.map → Cargo-CnGom-_z-X_3VwTbo.js.map} +1 -1
  15. package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
  16. package/dist/mt/workers/web-client-methods-worker.js +120 -76
  17. package/dist/mt/workers/web-client-methods-worker.js.map +1 -1
  18. package/dist/mt/workers/web-client-methods-worker.module.js +1 -1
  19. package/dist/mt/workers/web-client-methods-worker.module.js.map +1 -1
  20. package/dist/mt/workers/workerHelpers.js +1 -1
  21. package/dist/st/{Cargo-Cysp4vto.js → Cargo-DR9fiMbE.js} +117 -75
  22. package/dist/st/Cargo-DR9fiMbE.js.map +1 -0
  23. package/dist/st/api-types.d.ts +120 -0
  24. package/dist/st/assets/miden_client_web.wasm +0 -0
  25. package/dist/st/crates/miden_client_web.d.ts +32 -0
  26. package/dist/st/docs-entry.d.ts +3 -0
  27. package/dist/st/eager.js +1 -1
  28. package/dist/st/index.js +252 -5
  29. package/dist/st/index.js.map +1 -1
  30. package/dist/st/wasm.js +1 -1
  31. package/dist/st/workers/{Cargo-Cysp4vto-BIw-TeJn.js → Cargo-DR9fiMbE-C0G0clA_.js} +117 -75
  32. package/dist/st/workers/{Cargo-Cysp4vto-BIw-TeJn.js.map → Cargo-DR9fiMbE-C0G0clA_.js.map} +1 -1
  33. package/dist/st/workers/assets/miden_client_web.wasm +0 -0
  34. package/dist/st/workers/web-client-methods-worker.js +118 -75
  35. package/dist/st/workers/web-client-methods-worker.js.map +1 -1
  36. package/dist/st/workers/web-client-methods-worker.module.js +1 -1
  37. package/dist/st/workers/web-client-methods-worker.module.js.map +1 -1
  38. package/js/node-index.js +1 -0
  39. package/js/resources/transactions.js +251 -4
  40. package/package.json +4 -4
  41. package/dist/mt/Cargo-mvyTli7g.js.map +0 -1
  42. package/dist/st/Cargo-Cysp4vto.js.map +0 -1
package/dist/st/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-Cysp4vto.js');
7
+ wasmModule = await import('./Cargo-DR9fiMbE.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
@@ -12843,6 +12843,26 @@ class AdviceMap {
12843
12843
  }
12844
12844
  if (Symbol.dispose) AdviceMap.prototype[Symbol.dispose] = AdviceMap.prototype.free;
12845
12845
 
12846
+ /**
12847
+ * Whether a faucet's asset callbacks run when an asset is added to an account or a note.
12848
+ *
12849
+ * The flag is part of an asset's vault key, so two assets from the same faucet with different
12850
+ * flags occupy different vault slots and do not merge. Assets minted by a faucet that registers
12851
+ * transfer policies carry `Enabled`; everything else carries `Disabled`.
12852
+ * @enum {0 | 1}
12853
+ */
12854
+ const AssetCallbackFlag = Object.freeze({
12855
+ /**
12856
+ * The faucet's callbacks are not invoked for this asset. This is the default for an asset
12857
+ * built via the `FungibleAsset` constructor.
12858
+ */
12859
+ Disabled: 0, "0": "Disabled",
12860
+ /**
12861
+ * The faucet's callbacks are invoked before this asset is added to an account or a note.
12862
+ */
12863
+ Enabled: 1, "1": "Enabled",
12864
+ });
12865
+
12846
12866
  /**
12847
12867
  * A container for an unlimited number of assets.
12848
12868
  *
@@ -14585,6 +14605,14 @@ class FungibleAsset {
14585
14605
  const ret = wasm.fungibleasset_amount(this.__wbg_ptr);
14586
14606
  return BigInt.asUintN(64, ret);
14587
14607
  }
14608
+ /**
14609
+ * Returns whether this asset invokes its faucet's callbacks.
14610
+ * @returns {AssetCallbackFlag}
14611
+ */
14612
+ callbacks() {
14613
+ const ret = wasm.fungibleasset_callbacks(this.__wbg_ptr);
14614
+ return ret;
14615
+ }
14588
14616
  /**
14589
14617
  * Returns the faucet account that minted this asset.
14590
14618
  * @returns {AccountId}
@@ -14616,6 +14644,20 @@ class FungibleAsset {
14616
14644
  FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
14617
14645
  return this;
14618
14646
  }
14647
+ /**
14648
+ * Returns a copy of this asset carrying the given callback flag.
14649
+ *
14650
+ * The flag is part of the asset's vault key, so it must match the flag the issuing faucet
14651
+ * applies — an asset built with the wrong flag addresses a different vault slot than the one
14652
+ * holding the balance. The constructor always produces `Disabled`; pass `Enabled` only for
14653
+ * assets from a faucet that registers transfer policies.
14654
+ * @param {AssetCallbackFlag} callbacks
14655
+ * @returns {FungibleAsset}
14656
+ */
14657
+ withCallbacks(callbacks) {
14658
+ const ret = wasm.fungibleasset_withCallbacks(this.__wbg_ptr, callbacks);
14659
+ return FungibleAsset.__wrap(ret);
14660
+ }
14619
14661
  }
14620
14662
  if (Symbol.dispose) FungibleAsset.prototype[Symbol.dispose] = FungibleAsset.prototype.free;
14621
14663
 
@@ -24258,7 +24300,7 @@ function __wbg_get_imports() {
24258
24300
  const ret = AccountStorage.__wrap(arg0);
24259
24301
  return ret;
24260
24302
  },
24261
- __wbg_addNoteTag_c1d851535ec0e098: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
24303
+ __wbg_addNoteTag_94ee2f838ec544dc: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
24262
24304
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24263
24305
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24264
24306
  let v1;
@@ -24286,25 +24328,25 @@ function __wbg_get_imports() {
24286
24328
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
24287
24329
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
24288
24330
  }, arguments); },
24289
- __wbg_applyFullAccountState_a76a7cf1d93a9554: function(arg0, arg1, arg2) {
24331
+ __wbg_applyFullAccountState_43caa7474baffc0b: function(arg0, arg1, arg2) {
24290
24332
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
24291
24333
  return ret;
24292
24334
  },
24293
- __wbg_applySettingsMutations_e98dbb5827d3ec93: function(arg0, arg1, arg2, arg3) {
24335
+ __wbg_applySettingsMutations_5de1d94023be9157: function(arg0, arg1, arg2, arg3) {
24294
24336
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24295
24337
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24296
24338
  const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
24297
24339
  return ret;
24298
24340
  },
24299
- __wbg_applyStateSync_c365f1affe42d064: function(arg0, arg1, arg2) {
24341
+ __wbg_applyStateSync_189438332d96496e: function(arg0, arg1, arg2) {
24300
24342
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
24301
24343
  return ret;
24302
24344
  },
24303
- __wbg_applyTransactionBatch_0b07b42c93c25447: function(arg0, arg1, arg2) {
24345
+ __wbg_applyTransactionBatch_c300ed1fee34127a: function(arg0, arg1, arg2) {
24304
24346
  const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
24305
24347
  return ret;
24306
24348
  },
24307
- __wbg_applyTransactionDelta_93fac37bf6e15192: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
24349
+ __wbg_applyTransactionDelta_88c7fcff9175e58e: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
24308
24350
  let deferred0_0;
24309
24351
  let deferred0_1;
24310
24352
  let deferred1_0;
@@ -24443,7 +24485,7 @@ function __wbg_get_imports() {
24443
24485
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24444
24486
  }
24445
24487
  },
24446
- __wbg_exportStore_ca32cf4c9f46f56b: function(arg0, arg1) {
24488
+ __wbg_exportStore_cf4d695fbf6de143: function(arg0, arg1) {
24447
24489
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
24448
24490
  return ret;
24449
24491
  },
@@ -24475,7 +24517,7 @@ function __wbg_get_imports() {
24475
24517
  const ret = FetchedNote.__wrap(arg0);
24476
24518
  return ret;
24477
24519
  },
24478
- __wbg_forceImportStore_8bb9e5bbca5e1513: function(arg0, arg1, arg2) {
24520
+ __wbg_forceImportStore_c50115d19ee606c7: function(arg0, arg1, arg2) {
24479
24521
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
24480
24522
  return ret;
24481
24523
  },
@@ -24499,7 +24541,7 @@ function __wbg_get_imports() {
24499
24541
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
24500
24542
  return ret;
24501
24543
  },
24502
- __wbg_getAccountAddresses_d068c1e15e7a3f69: function(arg0, arg1, arg2, arg3) {
24544
+ __wbg_getAccountAddresses_cbd727101b08a9f6: function(arg0, arg1, arg2, arg3) {
24503
24545
  let deferred0_0;
24504
24546
  let deferred0_1;
24505
24547
  try {
@@ -24511,7 +24553,7 @@ function __wbg_get_imports() {
24511
24553
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24512
24554
  }
24513
24555
  },
24514
- __wbg_getAccountAuthByPubKeyCommitment_8f67fb0e63c7bd2e: function(arg0, arg1, arg2, arg3) {
24556
+ __wbg_getAccountAuthByPubKeyCommitment_bb937a852fc252bc: function(arg0, arg1, arg2, arg3) {
24515
24557
  let deferred0_0;
24516
24558
  let deferred0_1;
24517
24559
  try {
@@ -24523,7 +24565,7 @@ function __wbg_get_imports() {
24523
24565
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24524
24566
  }
24525
24567
  },
24526
- __wbg_getAccountCode_c9e87e9228f99d8a: function(arg0, arg1, arg2, arg3) {
24568
+ __wbg_getAccountCode_3cc0ae7a622f54fc: function(arg0, arg1, arg2, arg3) {
24527
24569
  let deferred0_0;
24528
24570
  let deferred0_1;
24529
24571
  try {
@@ -24535,7 +24577,7 @@ function __wbg_get_imports() {
24535
24577
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24536
24578
  }
24537
24579
  },
24538
- __wbg_getAccountHeaderByCommitment_918253bae03e21bd: function(arg0, arg1, arg2, arg3) {
24580
+ __wbg_getAccountHeaderByCommitment_9944282b839bf9b6: function(arg0, arg1, arg2, arg3) {
24539
24581
  let deferred0_0;
24540
24582
  let deferred0_1;
24541
24583
  try {
@@ -24547,7 +24589,7 @@ function __wbg_get_imports() {
24547
24589
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24548
24590
  }
24549
24591
  },
24550
- __wbg_getAccountHeader_19a4cbeb88903833: function(arg0, arg1, arg2, arg3) {
24592
+ __wbg_getAccountHeader_84fb6f83a11e9cea: function(arg0, arg1, arg2, arg3) {
24551
24593
  let deferred0_0;
24552
24594
  let deferred0_1;
24553
24595
  try {
@@ -24559,7 +24601,7 @@ function __wbg_get_imports() {
24559
24601
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24560
24602
  }
24561
24603
  },
24562
- __wbg_getAccountIdByKeyCommitment_2461fd858ac229a5: function(arg0, arg1, arg2, arg3) {
24604
+ __wbg_getAccountIdByKeyCommitment_f993328b4b855b21: function(arg0, arg1, arg2, arg3) {
24563
24605
  let deferred0_0;
24564
24606
  let deferred0_1;
24565
24607
  try {
@@ -24571,11 +24613,11 @@ function __wbg_get_imports() {
24571
24613
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24572
24614
  }
24573
24615
  },
24574
- __wbg_getAccountIds_6ce312ac9bfb1b31: function(arg0, arg1) {
24616
+ __wbg_getAccountIds_e80dceb4cc97875f: function(arg0, arg1) {
24575
24617
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
24576
24618
  return ret;
24577
24619
  },
24578
- __wbg_getAccountStorageMaps_18420aab10cd69bd: function(arg0, arg1, arg2, arg3) {
24620
+ __wbg_getAccountStorageMaps_e36e581a33dc958a: function(arg0, arg1, arg2, arg3) {
24579
24621
  let deferred0_0;
24580
24622
  let deferred0_1;
24581
24623
  try {
@@ -24587,7 +24629,7 @@ function __wbg_get_imports() {
24587
24629
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24588
24630
  }
24589
24631
  },
24590
- __wbg_getAccountStorage_ffe7596409c9223c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24632
+ __wbg_getAccountStorage_50de137ac49bdf17: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24591
24633
  let deferred0_0;
24592
24634
  let deferred0_1;
24593
24635
  try {
@@ -24601,7 +24643,7 @@ function __wbg_get_imports() {
24601
24643
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24602
24644
  }
24603
24645
  },
24604
- __wbg_getAccountVaultAssets_af709bb72685df4c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24646
+ __wbg_getAccountVaultAssets_30c74124867dbf56: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24605
24647
  let deferred0_0;
24606
24648
  let deferred0_1;
24607
24649
  try {
@@ -24615,27 +24657,27 @@ function __wbg_get_imports() {
24615
24657
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24616
24658
  }
24617
24659
  },
24618
- __wbg_getAllAccountHeaders_41895be7c409b88e: function(arg0, arg1) {
24660
+ __wbg_getAllAccountHeaders_b3e3ae880833a8cc: function(arg0, arg1) {
24619
24661
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
24620
24662
  return ret;
24621
24663
  },
24622
- __wbg_getBlockHeaders_5fd7167f134e5843: function(arg0, arg1, arg2, arg3) {
24664
+ __wbg_getBlockHeaders_8fa268d7fb3d3c28: function(arg0, arg1, arg2, arg3) {
24623
24665
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
24624
24666
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24625
24667
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
24626
24668
  return ret;
24627
24669
  },
24628
- __wbg_getCurrentBlockchainPeaks_0d572807e1e9e2ae: function(arg0, arg1) {
24670
+ __wbg_getCurrentBlockchainPeaks_ea97e8dd83a3db2f: function(arg0, arg1) {
24629
24671
  const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
24630
24672
  return ret;
24631
24673
  },
24632
- __wbg_getForeignAccountCode_844c11a17626e563: function(arg0, arg1, arg2, arg3) {
24674
+ __wbg_getForeignAccountCode_7de2117da915f4be: function(arg0, arg1, arg2, arg3) {
24633
24675
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24634
24676
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24635
24677
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
24636
24678
  return ret;
24637
24679
  },
24638
- __wbg_getInputNoteByOffset_9ab1440d682c55fb: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
24680
+ __wbg_getInputNoteByOffset_1cd4bd9db2e38694: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
24639
24681
  let deferred1_0;
24640
24682
  let deferred1_1;
24641
24683
  try {
@@ -24649,31 +24691,31 @@ function __wbg_get_imports() {
24649
24691
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24650
24692
  }
24651
24693
  },
24652
- __wbg_getInputNotesFromDetailsCommitments_0d7a37a6d01eab53: function(arg0, arg1, arg2, arg3) {
24694
+ __wbg_getInputNotesFromDetailsCommitments_334d006c0e228205: function(arg0, arg1, arg2, arg3) {
24653
24695
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24654
24696
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24655
24697
  const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
24656
24698
  return ret;
24657
24699
  },
24658
- __wbg_getInputNotesFromIds_27c39054c73a044b: function(arg0, arg1, arg2, arg3) {
24700
+ __wbg_getInputNotesFromIds_bbaec98ba444d49e: function(arg0, arg1, arg2, arg3) {
24659
24701
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24660
24702
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24661
24703
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
24662
24704
  return ret;
24663
24705
  },
24664
- __wbg_getInputNotesFromNullifiers_301cdfb81aa319a7: function(arg0, arg1, arg2, arg3) {
24706
+ __wbg_getInputNotesFromNullifiers_dde5b06918045f75: function(arg0, arg1, arg2, arg3) {
24665
24707
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24666
24708
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24667
24709
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
24668
24710
  return ret;
24669
24711
  },
24670
- __wbg_getInputNotes_7d1b39ca9e78db47: function(arg0, arg1, arg2, arg3) {
24712
+ __wbg_getInputNotes_02d3daccecb4c763: function(arg0, arg1, arg2, arg3) {
24671
24713
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24672
24714
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24673
24715
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
24674
24716
  return ret;
24675
24717
  },
24676
- __wbg_getKeyCommitmentsByAccountId_81ce3e1041e3bed0: function(arg0, arg1, arg2, arg3) {
24718
+ __wbg_getKeyCommitmentsByAccountId_de5d140392884430: function(arg0, arg1, arg2, arg3) {
24677
24719
  let deferred0_0;
24678
24720
  let deferred0_1;
24679
24721
  try {
@@ -24685,7 +24727,7 @@ function __wbg_get_imports() {
24685
24727
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24686
24728
  }
24687
24729
  },
24688
- __wbg_getNoteScript_5be6f18daf0b0cff: function(arg0, arg1, arg2, arg3) {
24730
+ __wbg_getNoteScript_bc2ab9b3b789361a: function(arg0, arg1, arg2, arg3) {
24689
24731
  let deferred0_0;
24690
24732
  let deferred0_1;
24691
24733
  try {
@@ -24697,39 +24739,39 @@ function __wbg_get_imports() {
24697
24739
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24698
24740
  }
24699
24741
  },
24700
- __wbg_getNoteTags_43e80680e54bade8: function(arg0, arg1) {
24742
+ __wbg_getNoteTags_34a8fb7ffdde9e33: function(arg0, arg1) {
24701
24743
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
24702
24744
  return ret;
24703
24745
  },
24704
- __wbg_getOutputNotesFromDetailsCommitments_68e3dca9188e3f99: function(arg0, arg1, arg2, arg3) {
24746
+ __wbg_getOutputNotesFromDetailsCommitments_6e202d70d207d37f: function(arg0, arg1, arg2, arg3) {
24705
24747
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24706
24748
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24707
24749
  const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
24708
24750
  return ret;
24709
24751
  },
24710
- __wbg_getOutputNotesFromIds_768649a70e0c7bfb: function(arg0, arg1, arg2, arg3) {
24752
+ __wbg_getOutputNotesFromIds_2b07a4ef2fa3fdd9: function(arg0, arg1, arg2, arg3) {
24711
24753
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24712
24754
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24713
24755
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
24714
24756
  return ret;
24715
24757
  },
24716
- __wbg_getOutputNotesFromNullifiers_c7ed92290ce3947a: function(arg0, arg1, arg2, arg3) {
24758
+ __wbg_getOutputNotesFromNullifiers_f59492590ecad477: function(arg0, arg1, arg2, arg3) {
24717
24759
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24718
24760
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24719
24761
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
24720
24762
  return ret;
24721
24763
  },
24722
- __wbg_getOutputNotes_b3ad1953a5193c80: function(arg0, arg1, arg2, arg3) {
24764
+ __wbg_getOutputNotes_7ddd237b643a22e2: function(arg0, arg1, arg2, arg3) {
24723
24765
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24724
24766
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24725
24767
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
24726
24768
  return ret;
24727
24769
  },
24728
- __wbg_getPartialBlockchainNodesAll_6834180a437e7c63: function(arg0, arg1) {
24770
+ __wbg_getPartialBlockchainNodesAll_e2e8c0d62a978ef1: function(arg0, arg1) {
24729
24771
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
24730
24772
  return ret;
24731
24773
  },
24732
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_94dc7d751d77e648: function(arg0, arg1, arg2, arg3) {
24774
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_2f8e8d802df6ede2: function(arg0, arg1, arg2, arg3) {
24733
24775
  let deferred0_0;
24734
24776
  let deferred0_1;
24735
24777
  try {
@@ -24741,7 +24783,7 @@ function __wbg_get_imports() {
24741
24783
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24742
24784
  }
24743
24785
  },
24744
- __wbg_getPartialBlockchainNodes_af5bd7d7471ef114: function(arg0, arg1, arg2, arg3) {
24786
+ __wbg_getPartialBlockchainNodes_4505db840ba96409: function(arg0, arg1, arg2, arg3) {
24745
24787
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24746
24788
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24747
24789
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
@@ -24754,7 +24796,7 @@ function __wbg_get_imports() {
24754
24796
  const ret = arg0.getReader();
24755
24797
  return ret;
24756
24798
  }, arguments); },
24757
- __wbg_getSetting_f06b2891fbabc9cf: function(arg0, arg1, arg2, arg3) {
24799
+ __wbg_getSetting_62039934dd52148a: function(arg0, arg1, arg2, arg3) {
24758
24800
  let deferred0_0;
24759
24801
  let deferred0_1;
24760
24802
  try {
@@ -24766,7 +24808,7 @@ function __wbg_get_imports() {
24766
24808
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24767
24809
  }
24768
24810
  },
24769
- __wbg_getSyncHeight_d79b93a5d88a10be: function(arg0, arg1) {
24811
+ __wbg_getSyncHeight_1c355e9af8a6c5c1: function(arg0, arg1) {
24770
24812
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
24771
24813
  return ret;
24772
24814
  },
@@ -24774,15 +24816,15 @@ function __wbg_get_imports() {
24774
24816
  const ret = arg0.getTime();
24775
24817
  return ret;
24776
24818
  },
24777
- __wbg_getTrackedBlockHeaderNumbers_f0d5e2f2232551cc: function(arg0, arg1) {
24819
+ __wbg_getTrackedBlockHeaderNumbers_1127c2c0de9e8f2d: function(arg0, arg1) {
24778
24820
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
24779
24821
  return ret;
24780
24822
  },
24781
- __wbg_getTrackedBlockHeaders_db61d3cc39ec8dba: function(arg0, arg1) {
24823
+ __wbg_getTrackedBlockHeaders_0c9acbd5575e41f1: function(arg0, arg1) {
24782
24824
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
24783
24825
  return ret;
24784
24826
  },
24785
- __wbg_getTransactions_00723f63af87e326: function(arg0, arg1, arg2, arg3) {
24827
+ __wbg_getTransactions_71b6f120136d4406: function(arg0, arg1, arg2, arg3) {
24786
24828
  let deferred0_0;
24787
24829
  let deferred0_1;
24788
24830
  try {
@@ -24794,7 +24836,7 @@ function __wbg_get_imports() {
24794
24836
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24795
24837
  }
24796
24838
  },
24797
- __wbg_getUnspentInputNoteNullifiers_5352631c6015d6e5: function(arg0, arg1) {
24839
+ __wbg_getUnspentInputNoteNullifiers_ac153627e18848ab: function(arg0, arg1) {
24798
24840
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
24799
24841
  return ret;
24800
24842
  },
@@ -24838,7 +24880,7 @@ function __wbg_get_imports() {
24838
24880
  const ret = InputNoteRecord.__wrap(arg0);
24839
24881
  return ret;
24840
24882
  },
24841
- __wbg_insertAccountAddress_a8f49a2f8f6ff0f1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24883
+ __wbg_insertAccountAddress_15069fe099e1619e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24842
24884
  let deferred0_0;
24843
24885
  let deferred0_1;
24844
24886
  try {
@@ -24852,7 +24894,7 @@ function __wbg_get_imports() {
24852
24894
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24853
24895
  }
24854
24896
  },
24855
- __wbg_insertAccountAuth_3a2314a58a464f90: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24897
+ __wbg_insertAccountAuth_d0cb9c2601ea7324: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24856
24898
  let deferred0_0;
24857
24899
  let deferred0_1;
24858
24900
  let deferred1_0;
@@ -24869,7 +24911,7 @@ function __wbg_get_imports() {
24869
24911
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24870
24912
  }
24871
24913
  },
24872
- __wbg_insertAccountKeyMapping_72c6d4d8b9306667: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24914
+ __wbg_insertAccountKeyMapping_995e470bad5ead0b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24873
24915
  let deferred0_0;
24874
24916
  let deferred0_1;
24875
24917
  let deferred1_0;
@@ -24886,13 +24928,13 @@ function __wbg_get_imports() {
24886
24928
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24887
24929
  }
24888
24930
  },
24889
- __wbg_insertBlockHeader_305b039a9623ae0f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24931
+ __wbg_insertBlockHeader_e5a6e2ded97f2403: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24890
24932
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
24891
24933
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
24892
24934
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
24893
24935
  return ret;
24894
24936
  },
24895
- __wbg_insertPartialBlockchainNodes_cf3566f492028425: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24937
+ __wbg_insertPartialBlockchainNodes_d6d5d926855e4d21: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24896
24938
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24897
24939
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24898
24940
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -24900,7 +24942,7 @@ function __wbg_get_imports() {
24900
24942
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
24901
24943
  return ret;
24902
24944
  },
24903
- __wbg_insertSetting_0f1cae5afcfb4023: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24945
+ __wbg_insertSetting_0b89216c93defa8f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24904
24946
  let deferred0_0;
24905
24947
  let deferred0_1;
24906
24948
  try {
@@ -24914,7 +24956,7 @@ function __wbg_get_imports() {
24914
24956
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24915
24957
  }
24916
24958
  },
24917
- __wbg_insertTransactionScript_254698ca99f13bdb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24959
+ __wbg_insertTransactionScript_25a8761c16b219bb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24918
24960
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24919
24961
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24920
24962
  let v1;
@@ -25011,11 +25053,11 @@ function __wbg_get_imports() {
25011
25053
  const ret = arg0.length;
25012
25054
  return ret;
25013
25055
  },
25014
- __wbg_listSettingKeys_b640b6ed3b2ceee7: function(arg0, arg1) {
25056
+ __wbg_listSettingKeys_2b136b1269935560: function(arg0, arg1) {
25015
25057
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
25016
25058
  return ret;
25017
25059
  },
25018
- __wbg_lockAccount_e19bdabd557a9bac: function(arg0, arg1, arg2, arg3) {
25060
+ __wbg_lockAccount_77845432e7766df6: function(arg0, arg1, arg2, arg3) {
25019
25061
  let deferred0_0;
25020
25062
  let deferred0_1;
25021
25063
  try {
@@ -25218,7 +25260,7 @@ function __wbg_get_imports() {
25218
25260
  const ret = NoteTag.__unwrap(arg0);
25219
25261
  return ret;
25220
25262
  },
25221
- __wbg_openDatabase_9a8fbeb3ab124c9d: function(arg0, arg1, arg2, arg3) {
25263
+ __wbg_openDatabase_2f30006b5f901ff6: function(arg0, arg1, arg2, arg3) {
25222
25264
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
25223
25265
  return ret;
25224
25266
  },
@@ -25249,7 +25291,7 @@ function __wbg_get_imports() {
25249
25291
  const ret = ProvenTransaction.__wrap(arg0);
25250
25292
  return ret;
25251
25293
  },
25252
- __wbg_pruneAccountHistory_6f68d5203b34624d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25294
+ __wbg_pruneAccountHistory_f92187e012bea002: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25253
25295
  let deferred0_0;
25254
25296
  let deferred0_1;
25255
25297
  let deferred1_0;
@@ -25266,7 +25308,7 @@ function __wbg_get_imports() {
25266
25308
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
25267
25309
  }
25268
25310
  },
25269
- __wbg_pruneIrrelevantBlocks_f67204a16f7b32f3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25311
+ __wbg_pruneIrrelevantBlocks_802f17c51c071490: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25270
25312
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
25271
25313
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25272
25314
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -25296,13 +25338,13 @@ function __wbg_get_imports() {
25296
25338
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
25297
25339
  arg0.releaseLock();
25298
25340
  },
25299
- __wbg_removeAccountAddress_c96456170da6ac29: function(arg0, arg1, arg2, arg3) {
25341
+ __wbg_removeAccountAddress_26bf46414ef4d36b: function(arg0, arg1, arg2, arg3) {
25300
25342
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25301
25343
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25302
25344
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
25303
25345
  return ret;
25304
25346
  },
25305
- __wbg_removeAccountAuth_514a8e1ee9bc6293: function(arg0, arg1, arg2, arg3) {
25347
+ __wbg_removeAccountAuth_eee531cc8fc556ab: function(arg0, arg1, arg2, arg3) {
25306
25348
  let deferred0_0;
25307
25349
  let deferred0_1;
25308
25350
  try {
@@ -25314,7 +25356,7 @@ function __wbg_get_imports() {
25314
25356
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25315
25357
  }
25316
25358
  },
25317
- __wbg_removeAllMappingsForKey_18e793a295ac2226: function(arg0, arg1, arg2, arg3) {
25359
+ __wbg_removeAllMappingsForKey_bb2ce4d992b13353: function(arg0, arg1, arg2, arg3) {
25318
25360
  let deferred0_0;
25319
25361
  let deferred0_1;
25320
25362
  try {
@@ -25326,7 +25368,7 @@ function __wbg_get_imports() {
25326
25368
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25327
25369
  }
25328
25370
  },
25329
- __wbg_removeNoteTag_8ae01f5c65dc9174: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
25371
+ __wbg_removeNoteTag_ce18a2071a471486: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
25330
25372
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25331
25373
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25332
25374
  let v1;
@@ -25347,7 +25389,7 @@ function __wbg_get_imports() {
25347
25389
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
25348
25390
  return ret;
25349
25391
  },
25350
- __wbg_removeSetting_5bec82500774f6cf: function(arg0, arg1, arg2, arg3) {
25392
+ __wbg_removeSetting_a6764e1ec62f8c0f: function(arg0, arg1, arg2, arg3) {
25351
25393
  let deferred0_0;
25352
25394
  let deferred0_1;
25353
25395
  try {
@@ -25550,13 +25592,13 @@ function __wbg_get_imports() {
25550
25592
  const ret = TransactionSummary.__wrap(arg0);
25551
25593
  return ret;
25552
25594
  },
25553
- __wbg_undoAccountStates_b7f5bc8db7e5f7d9: function(arg0, arg1, arg2, arg3) {
25595
+ __wbg_undoAccountStates_829a6daf4a392818: function(arg0, arg1, arg2, arg3) {
25554
25596
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
25555
25597
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25556
25598
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
25557
25599
  return ret;
25558
25600
  },
25559
- __wbg_upsertAccountCode_2885d4bc1584e8e8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25601
+ __wbg_upsertAccountCode_f24cee98a5bbbfe5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25560
25602
  let deferred0_0;
25561
25603
  let deferred0_1;
25562
25604
  try {
@@ -25570,7 +25612,7 @@ function __wbg_get_imports() {
25570
25612
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25571
25613
  }
25572
25614
  },
25573
- __wbg_upsertAccountRecord_c3aa685ee4dcc3de: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
25615
+ __wbg_upsertAccountRecord_f616812a7dd3d5a1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
25574
25616
  let deferred0_0;
25575
25617
  let deferred0_1;
25576
25618
  let deferred1_0;
@@ -25612,7 +25654,7 @@ function __wbg_get_imports() {
25612
25654
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
25613
25655
  }
25614
25656
  },
25615
- __wbg_upsertAccountStorage_e482e77a7e281260: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25657
+ __wbg_upsertAccountStorage_4f3a4494f26975fb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25616
25658
  let deferred0_0;
25617
25659
  let deferred0_1;
25618
25660
  try {
@@ -25626,7 +25668,7 @@ function __wbg_get_imports() {
25626
25668
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25627
25669
  }
25628
25670
  },
25629
- __wbg_upsertForeignAccountCode_9aa9b862b6a7e789: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
25671
+ __wbg_upsertForeignAccountCode_6595b4d97e610669: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
25630
25672
  let deferred0_0;
25631
25673
  let deferred0_1;
25632
25674
  let deferred2_0;
@@ -25645,7 +25687,7 @@ function __wbg_get_imports() {
25645
25687
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
25646
25688
  }
25647
25689
  },
25648
- __wbg_upsertInputNote_e10948a629bcee16: 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, arg25, arg26, arg27, arg28) {
25690
+ __wbg_upsertInputNote_850c7540f297f4d4: 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, arg25, arg26, arg27, arg28) {
25649
25691
  let deferred0_0;
25650
25692
  let deferred0_1;
25651
25693
  let deferred6_0;
@@ -25694,7 +25736,7 @@ function __wbg_get_imports() {
25694
25736
  wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
25695
25737
  }
25696
25738
  },
25697
- __wbg_upsertNoteScript_7e9a616d8a143614: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25739
+ __wbg_upsertNoteScript_d946217575ba5025: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25698
25740
  let deferred0_0;
25699
25741
  let deferred0_1;
25700
25742
  try {
@@ -25708,7 +25750,7 @@ function __wbg_get_imports() {
25708
25750
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25709
25751
  }
25710
25752
  },
25711
- __wbg_upsertOutputNote_1194e3f5dcc3d4f1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
25753
+ __wbg_upsertOutputNote_907da49377d56a48: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
25712
25754
  let deferred0_0;
25713
25755
  let deferred0_1;
25714
25756
  let deferred1_0;
@@ -25743,7 +25785,7 @@ function __wbg_get_imports() {
25743
25785
  wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
25744
25786
  }
25745
25787
  },
25746
- __wbg_upsertStorageMapEntries_82d953e23dee24ed: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25788
+ __wbg_upsertStorageMapEntries_6bf2d15ad885daf0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25747
25789
  let deferred0_0;
25748
25790
  let deferred0_1;
25749
25791
  try {
@@ -25757,7 +25799,7 @@ function __wbg_get_imports() {
25757
25799
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25758
25800
  }
25759
25801
  },
25760
- __wbg_upsertTransactionRecord_24154d95069d63bd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
25802
+ __wbg_upsertTransactionRecord_0b4dbeb561124c59: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
25761
25803
  let deferred0_0;
25762
25804
  let deferred0_1;
25763
25805
  try {
@@ -25778,7 +25820,7 @@ function __wbg_get_imports() {
25778
25820
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25779
25821
  }
25780
25822
  },
25781
- __wbg_upsertVaultAssets_e982e767b7e6001a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25823
+ __wbg_upsertVaultAssets_55f07579c9e0113e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25782
25824
  let deferred0_0;
25783
25825
  let deferred0_1;
25784
25826
  try {
@@ -25809,12 +25851,12 @@ function __wbg_get_imports() {
25809
25851
  return ret;
25810
25852
  },
25811
25853
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
25812
- // Cast intrinsic for `Closure(Closure { dtor_idx: 432, function: Function { arguments: [Externref], shim_idx: 815, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
25854
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 427, function: Function { arguments: [Externref], shim_idx: 815, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
25813
25855
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8d8dd5a992b1207e___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_8d8dd5a992b1207e___JsValue____Output_______, wasm_bindgen_8d8dd5a992b1207e___convert__closures_____invoke___wasm_bindgen_8d8dd5a992b1207e___JsValue_____);
25814
25856
  return ret;
25815
25857
  },
25816
25858
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
25817
- // Cast intrinsic for `Closure(Closure { dtor_idx: 432, function: Function { arguments: [], shim_idx: 433, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
25859
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 427, function: Function { arguments: [], shim_idx: 428, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
25818
25860
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8d8dd5a992b1207e___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_8d8dd5a992b1207e___JsValue____Output_______, wasm_bindgen_8d8dd5a992b1207e___convert__closures_____invoke______);
25819
25861
  return ret;
25820
25862
  },
@@ -26761,5 +26803,5 @@ async function __wbg_init(module_or_path) {
26761
26803
 
26762
26804
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
26763
26805
 
26764
- 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, EthAddress, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsSettingMutation, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkAccountTarget, NetworkId, NetworkNoteStatusInfo, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, 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, PswapLineageRecord, PswapLineageState, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, StorageMapEntryJs, 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 };
26765
- //# sourceMappingURL=Cargo-Cysp4vto-BIw-TeJn.js.map
26806
+ 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, AssetCallbackFlag, AssetVault, AuthFalcon512RpoMultisigConfig, AuthScheme, AuthSecretKey, BasicFungibleFaucetComponent, BlockHeader, CodeBuilder, CommittedNote, ConsumableNoteRecord, Endpoint, EthAddress, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsSettingMutation, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkAccountTarget, NetworkId, NetworkNoteStatusInfo, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, 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, PswapLineageRecord, PswapLineageState, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, StorageMapEntryJs, 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 };
26807
+ //# sourceMappingURL=Cargo-DR9fiMbE-C0G0clA_.js.map