@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
@@ -12942,6 +12942,26 @@ class AdviceMap {
12942
12942
  }
12943
12943
  if (Symbol.dispose) AdviceMap.prototype[Symbol.dispose] = AdviceMap.prototype.free;
12944
12944
 
12945
+ /**
12946
+ * Whether a faucet's asset callbacks run when an asset is added to an account or a note.
12947
+ *
12948
+ * The flag is part of an asset's vault key, so two assets from the same faucet with different
12949
+ * flags occupy different vault slots and do not merge. Assets minted by a faucet that registers
12950
+ * transfer policies carry `Enabled`; everything else carries `Disabled`.
12951
+ * @enum {0 | 1}
12952
+ */
12953
+ const AssetCallbackFlag = Object.freeze({
12954
+ /**
12955
+ * The faucet's callbacks are not invoked for this asset. This is the default for an asset
12956
+ * built via the `FungibleAsset` constructor.
12957
+ */
12958
+ Disabled: 0, "0": "Disabled",
12959
+ /**
12960
+ * The faucet's callbacks are invoked before this asset is added to an account or a note.
12961
+ */
12962
+ Enabled: 1, "1": "Enabled",
12963
+ });
12964
+
12945
12965
  /**
12946
12966
  * A container for an unlimited number of assets.
12947
12967
  *
@@ -14684,6 +14704,14 @@ class FungibleAsset {
14684
14704
  const ret = wasm.fungibleasset_amount(this.__wbg_ptr);
14685
14705
  return BigInt.asUintN(64, ret);
14686
14706
  }
14707
+ /**
14708
+ * Returns whether this asset invokes its faucet's callbacks.
14709
+ * @returns {AssetCallbackFlag}
14710
+ */
14711
+ callbacks() {
14712
+ const ret = wasm.fungibleasset_callbacks(this.__wbg_ptr);
14713
+ return ret;
14714
+ }
14687
14715
  /**
14688
14716
  * Returns the faucet account that minted this asset.
14689
14717
  * @returns {AccountId}
@@ -14715,6 +14743,20 @@ class FungibleAsset {
14715
14743
  FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
14716
14744
  return this;
14717
14745
  }
14746
+ /**
14747
+ * Returns a copy of this asset carrying the given callback flag.
14748
+ *
14749
+ * The flag is part of the asset's vault key, so it must match the flag the issuing faucet
14750
+ * applies — an asset built with the wrong flag addresses a different vault slot than the one
14751
+ * holding the balance. The constructor always produces `Disabled`; pass `Enabled` only for
14752
+ * assets from a faucet that registers transfer policies.
14753
+ * @param {AssetCallbackFlag} callbacks
14754
+ * @returns {FungibleAsset}
14755
+ */
14756
+ withCallbacks(callbacks) {
14757
+ const ret = wasm.fungibleasset_withCallbacks(this.__wbg_ptr, callbacks);
14758
+ return FungibleAsset.__wrap(ret);
14759
+ }
14718
14760
  }
14719
14761
  if (Symbol.dispose) FungibleAsset.prototype[Symbol.dispose] = FungibleAsset.prototype.free;
14720
14762
 
@@ -24479,7 +24521,7 @@ function __wbg_get_imports(memory) {
24479
24521
  const ret = AccountStorage.__wrap(arg0);
24480
24522
  return ret;
24481
24523
  },
24482
- __wbg_addNoteTag_c1d851535ec0e098: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
24524
+ __wbg_addNoteTag_94ee2f838ec544dc: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
24483
24525
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24484
24526
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24485
24527
  let v1;
@@ -24507,25 +24549,25 @@ function __wbg_get_imports(memory) {
24507
24549
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
24508
24550
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
24509
24551
  }, arguments); },
24510
- __wbg_applyFullAccountState_a76a7cf1d93a9554: function(arg0, arg1, arg2) {
24552
+ __wbg_applyFullAccountState_43caa7474baffc0b: function(arg0, arg1, arg2) {
24511
24553
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
24512
24554
  return ret;
24513
24555
  },
24514
- __wbg_applySettingsMutations_e98dbb5827d3ec93: function(arg0, arg1, arg2, arg3) {
24556
+ __wbg_applySettingsMutations_5de1d94023be9157: function(arg0, arg1, arg2, arg3) {
24515
24557
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24516
24558
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24517
24559
  const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
24518
24560
  return ret;
24519
24561
  },
24520
- __wbg_applyStateSync_c365f1affe42d064: function(arg0, arg1, arg2) {
24562
+ __wbg_applyStateSync_189438332d96496e: function(arg0, arg1, arg2) {
24521
24563
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
24522
24564
  return ret;
24523
24565
  },
24524
- __wbg_applyTransactionBatch_0b07b42c93c25447: function(arg0, arg1, arg2) {
24566
+ __wbg_applyTransactionBatch_c300ed1fee34127a: function(arg0, arg1, arg2) {
24525
24567
  const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
24526
24568
  return ret;
24527
24569
  },
24528
- __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) {
24570
+ __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) {
24529
24571
  let deferred0_0;
24530
24572
  let deferred0_1;
24531
24573
  let deferred1_0;
@@ -24676,7 +24718,7 @@ function __wbg_get_imports(memory) {
24676
24718
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24677
24719
  }
24678
24720
  },
24679
- __wbg_exportStore_ca32cf4c9f46f56b: function(arg0, arg1) {
24721
+ __wbg_exportStore_cf4d695fbf6de143: function(arg0, arg1) {
24680
24722
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
24681
24723
  return ret;
24682
24724
  },
@@ -24708,7 +24750,7 @@ function __wbg_get_imports(memory) {
24708
24750
  const ret = FetchedNote.__wrap(arg0);
24709
24751
  return ret;
24710
24752
  },
24711
- __wbg_forceImportStore_8bb9e5bbca5e1513: function(arg0, arg1, arg2) {
24753
+ __wbg_forceImportStore_c50115d19ee606c7: function(arg0, arg1, arg2) {
24712
24754
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
24713
24755
  return ret;
24714
24756
  },
@@ -24732,7 +24774,7 @@ function __wbg_get_imports(memory) {
24732
24774
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
24733
24775
  return ret;
24734
24776
  },
24735
- __wbg_getAccountAddresses_d068c1e15e7a3f69: function(arg0, arg1, arg2, arg3) {
24777
+ __wbg_getAccountAddresses_cbd727101b08a9f6: function(arg0, arg1, arg2, arg3) {
24736
24778
  let deferred0_0;
24737
24779
  let deferred0_1;
24738
24780
  try {
@@ -24744,7 +24786,7 @@ function __wbg_get_imports(memory) {
24744
24786
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24745
24787
  }
24746
24788
  },
24747
- __wbg_getAccountAuthByPubKeyCommitment_8f67fb0e63c7bd2e: function(arg0, arg1, arg2, arg3) {
24789
+ __wbg_getAccountAuthByPubKeyCommitment_bb937a852fc252bc: function(arg0, arg1, arg2, arg3) {
24748
24790
  let deferred0_0;
24749
24791
  let deferred0_1;
24750
24792
  try {
@@ -24756,7 +24798,7 @@ function __wbg_get_imports(memory) {
24756
24798
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24757
24799
  }
24758
24800
  },
24759
- __wbg_getAccountCode_c9e87e9228f99d8a: function(arg0, arg1, arg2, arg3) {
24801
+ __wbg_getAccountCode_3cc0ae7a622f54fc: function(arg0, arg1, arg2, arg3) {
24760
24802
  let deferred0_0;
24761
24803
  let deferred0_1;
24762
24804
  try {
@@ -24768,7 +24810,7 @@ function __wbg_get_imports(memory) {
24768
24810
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24769
24811
  }
24770
24812
  },
24771
- __wbg_getAccountHeaderByCommitment_918253bae03e21bd: function(arg0, arg1, arg2, arg3) {
24813
+ __wbg_getAccountHeaderByCommitment_9944282b839bf9b6: function(arg0, arg1, arg2, arg3) {
24772
24814
  let deferred0_0;
24773
24815
  let deferred0_1;
24774
24816
  try {
@@ -24780,7 +24822,7 @@ function __wbg_get_imports(memory) {
24780
24822
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24781
24823
  }
24782
24824
  },
24783
- __wbg_getAccountHeader_19a4cbeb88903833: function(arg0, arg1, arg2, arg3) {
24825
+ __wbg_getAccountHeader_84fb6f83a11e9cea: function(arg0, arg1, arg2, arg3) {
24784
24826
  let deferred0_0;
24785
24827
  let deferred0_1;
24786
24828
  try {
@@ -24792,7 +24834,7 @@ function __wbg_get_imports(memory) {
24792
24834
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24793
24835
  }
24794
24836
  },
24795
- __wbg_getAccountIdByKeyCommitment_2461fd858ac229a5: function(arg0, arg1, arg2, arg3) {
24837
+ __wbg_getAccountIdByKeyCommitment_f993328b4b855b21: function(arg0, arg1, arg2, arg3) {
24796
24838
  let deferred0_0;
24797
24839
  let deferred0_1;
24798
24840
  try {
@@ -24804,11 +24846,11 @@ function __wbg_get_imports(memory) {
24804
24846
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24805
24847
  }
24806
24848
  },
24807
- __wbg_getAccountIds_6ce312ac9bfb1b31: function(arg0, arg1) {
24849
+ __wbg_getAccountIds_e80dceb4cc97875f: function(arg0, arg1) {
24808
24850
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
24809
24851
  return ret;
24810
24852
  },
24811
- __wbg_getAccountStorageMaps_18420aab10cd69bd: function(arg0, arg1, arg2, arg3) {
24853
+ __wbg_getAccountStorageMaps_e36e581a33dc958a: function(arg0, arg1, arg2, arg3) {
24812
24854
  let deferred0_0;
24813
24855
  let deferred0_1;
24814
24856
  try {
@@ -24820,7 +24862,7 @@ function __wbg_get_imports(memory) {
24820
24862
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24821
24863
  }
24822
24864
  },
24823
- __wbg_getAccountStorage_ffe7596409c9223c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24865
+ __wbg_getAccountStorage_50de137ac49bdf17: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24824
24866
  let deferred0_0;
24825
24867
  let deferred0_1;
24826
24868
  try {
@@ -24834,7 +24876,7 @@ function __wbg_get_imports(memory) {
24834
24876
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24835
24877
  }
24836
24878
  },
24837
- __wbg_getAccountVaultAssets_af709bb72685df4c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24879
+ __wbg_getAccountVaultAssets_30c74124867dbf56: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24838
24880
  let deferred0_0;
24839
24881
  let deferred0_1;
24840
24882
  try {
@@ -24848,27 +24890,27 @@ function __wbg_get_imports(memory) {
24848
24890
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24849
24891
  }
24850
24892
  },
24851
- __wbg_getAllAccountHeaders_41895be7c409b88e: function(arg0, arg1) {
24893
+ __wbg_getAllAccountHeaders_b3e3ae880833a8cc: function(arg0, arg1) {
24852
24894
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
24853
24895
  return ret;
24854
24896
  },
24855
- __wbg_getBlockHeaders_5fd7167f134e5843: function(arg0, arg1, arg2, arg3) {
24897
+ __wbg_getBlockHeaders_8fa268d7fb3d3c28: function(arg0, arg1, arg2, arg3) {
24856
24898
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
24857
24899
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24858
24900
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
24859
24901
  return ret;
24860
24902
  },
24861
- __wbg_getCurrentBlockchainPeaks_0d572807e1e9e2ae: function(arg0, arg1) {
24903
+ __wbg_getCurrentBlockchainPeaks_ea97e8dd83a3db2f: function(arg0, arg1) {
24862
24904
  const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
24863
24905
  return ret;
24864
24906
  },
24865
- __wbg_getForeignAccountCode_844c11a17626e563: function(arg0, arg1, arg2, arg3) {
24907
+ __wbg_getForeignAccountCode_7de2117da915f4be: function(arg0, arg1, arg2, arg3) {
24866
24908
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24867
24909
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24868
24910
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
24869
24911
  return ret;
24870
24912
  },
24871
- __wbg_getInputNoteByOffset_9ab1440d682c55fb: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
24913
+ __wbg_getInputNoteByOffset_1cd4bd9db2e38694: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
24872
24914
  let deferred1_0;
24873
24915
  let deferred1_1;
24874
24916
  try {
@@ -24882,31 +24924,31 @@ function __wbg_get_imports(memory) {
24882
24924
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24883
24925
  }
24884
24926
  },
24885
- __wbg_getInputNotesFromDetailsCommitments_0d7a37a6d01eab53: function(arg0, arg1, arg2, arg3) {
24927
+ __wbg_getInputNotesFromDetailsCommitments_334d006c0e228205: function(arg0, arg1, arg2, arg3) {
24886
24928
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24887
24929
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24888
24930
  const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
24889
24931
  return ret;
24890
24932
  },
24891
- __wbg_getInputNotesFromIds_27c39054c73a044b: function(arg0, arg1, arg2, arg3) {
24933
+ __wbg_getInputNotesFromIds_bbaec98ba444d49e: function(arg0, arg1, arg2, arg3) {
24892
24934
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24893
24935
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24894
24936
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
24895
24937
  return ret;
24896
24938
  },
24897
- __wbg_getInputNotesFromNullifiers_301cdfb81aa319a7: function(arg0, arg1, arg2, arg3) {
24939
+ __wbg_getInputNotesFromNullifiers_dde5b06918045f75: function(arg0, arg1, arg2, arg3) {
24898
24940
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24899
24941
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24900
24942
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
24901
24943
  return ret;
24902
24944
  },
24903
- __wbg_getInputNotes_7d1b39ca9e78db47: function(arg0, arg1, arg2, arg3) {
24945
+ __wbg_getInputNotes_02d3daccecb4c763: function(arg0, arg1, arg2, arg3) {
24904
24946
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24905
24947
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24906
24948
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
24907
24949
  return ret;
24908
24950
  },
24909
- __wbg_getKeyCommitmentsByAccountId_81ce3e1041e3bed0: function(arg0, arg1, arg2, arg3) {
24951
+ __wbg_getKeyCommitmentsByAccountId_de5d140392884430: function(arg0, arg1, arg2, arg3) {
24910
24952
  let deferred0_0;
24911
24953
  let deferred0_1;
24912
24954
  try {
@@ -24918,7 +24960,7 @@ function __wbg_get_imports(memory) {
24918
24960
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24919
24961
  }
24920
24962
  },
24921
- __wbg_getNoteScript_5be6f18daf0b0cff: function(arg0, arg1, arg2, arg3) {
24963
+ __wbg_getNoteScript_bc2ab9b3b789361a: function(arg0, arg1, arg2, arg3) {
24922
24964
  let deferred0_0;
24923
24965
  let deferred0_1;
24924
24966
  try {
@@ -24930,39 +24972,39 @@ function __wbg_get_imports(memory) {
24930
24972
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24931
24973
  }
24932
24974
  },
24933
- __wbg_getNoteTags_43e80680e54bade8: function(arg0, arg1) {
24975
+ __wbg_getNoteTags_34a8fb7ffdde9e33: function(arg0, arg1) {
24934
24976
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
24935
24977
  return ret;
24936
24978
  },
24937
- __wbg_getOutputNotesFromDetailsCommitments_68e3dca9188e3f99: function(arg0, arg1, arg2, arg3) {
24979
+ __wbg_getOutputNotesFromDetailsCommitments_6e202d70d207d37f: function(arg0, arg1, arg2, arg3) {
24938
24980
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24939
24981
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24940
24982
  const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
24941
24983
  return ret;
24942
24984
  },
24943
- __wbg_getOutputNotesFromIds_768649a70e0c7bfb: function(arg0, arg1, arg2, arg3) {
24985
+ __wbg_getOutputNotesFromIds_2b07a4ef2fa3fdd9: function(arg0, arg1, arg2, arg3) {
24944
24986
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24945
24987
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24946
24988
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
24947
24989
  return ret;
24948
24990
  },
24949
- __wbg_getOutputNotesFromNullifiers_c7ed92290ce3947a: function(arg0, arg1, arg2, arg3) {
24991
+ __wbg_getOutputNotesFromNullifiers_f59492590ecad477: function(arg0, arg1, arg2, arg3) {
24950
24992
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24951
24993
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24952
24994
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
24953
24995
  return ret;
24954
24996
  },
24955
- __wbg_getOutputNotes_b3ad1953a5193c80: function(arg0, arg1, arg2, arg3) {
24997
+ __wbg_getOutputNotes_7ddd237b643a22e2: function(arg0, arg1, arg2, arg3) {
24956
24998
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24957
24999
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24958
25000
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
24959
25001
  return ret;
24960
25002
  },
24961
- __wbg_getPartialBlockchainNodesAll_6834180a437e7c63: function(arg0, arg1) {
25003
+ __wbg_getPartialBlockchainNodesAll_e2e8c0d62a978ef1: function(arg0, arg1) {
24962
25004
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
24963
25005
  return ret;
24964
25006
  },
24965
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_94dc7d751d77e648: function(arg0, arg1, arg2, arg3) {
25007
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_2f8e8d802df6ede2: function(arg0, arg1, arg2, arg3) {
24966
25008
  let deferred0_0;
24967
25009
  let deferred0_1;
24968
25010
  try {
@@ -24974,7 +25016,7 @@ function __wbg_get_imports(memory) {
24974
25016
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24975
25017
  }
24976
25018
  },
24977
- __wbg_getPartialBlockchainNodes_af5bd7d7471ef114: function(arg0, arg1, arg2, arg3) {
25019
+ __wbg_getPartialBlockchainNodes_4505db840ba96409: function(arg0, arg1, arg2, arg3) {
24978
25020
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24979
25021
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24980
25022
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
@@ -24987,7 +25029,7 @@ function __wbg_get_imports(memory) {
24987
25029
  const ret = arg0.getReader();
24988
25030
  return ret;
24989
25031
  }, arguments); },
24990
- __wbg_getSetting_f06b2891fbabc9cf: function(arg0, arg1, arg2, arg3) {
25032
+ __wbg_getSetting_62039934dd52148a: function(arg0, arg1, arg2, arg3) {
24991
25033
  let deferred0_0;
24992
25034
  let deferred0_1;
24993
25035
  try {
@@ -24999,7 +25041,7 @@ function __wbg_get_imports(memory) {
24999
25041
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25000
25042
  }
25001
25043
  },
25002
- __wbg_getSyncHeight_d79b93a5d88a10be: function(arg0, arg1) {
25044
+ __wbg_getSyncHeight_1c355e9af8a6c5c1: function(arg0, arg1) {
25003
25045
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
25004
25046
  return ret;
25005
25047
  },
@@ -25007,15 +25049,15 @@ function __wbg_get_imports(memory) {
25007
25049
  const ret = arg0.getTime();
25008
25050
  return ret;
25009
25051
  },
25010
- __wbg_getTrackedBlockHeaderNumbers_f0d5e2f2232551cc: function(arg0, arg1) {
25052
+ __wbg_getTrackedBlockHeaderNumbers_1127c2c0de9e8f2d: function(arg0, arg1) {
25011
25053
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
25012
25054
  return ret;
25013
25055
  },
25014
- __wbg_getTrackedBlockHeaders_db61d3cc39ec8dba: function(arg0, arg1) {
25056
+ __wbg_getTrackedBlockHeaders_0c9acbd5575e41f1: function(arg0, arg1) {
25015
25057
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
25016
25058
  return ret;
25017
25059
  },
25018
- __wbg_getTransactions_00723f63af87e326: function(arg0, arg1, arg2, arg3) {
25060
+ __wbg_getTransactions_71b6f120136d4406: function(arg0, arg1, arg2, arg3) {
25019
25061
  let deferred0_0;
25020
25062
  let deferred0_1;
25021
25063
  try {
@@ -25027,7 +25069,7 @@ function __wbg_get_imports(memory) {
25027
25069
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25028
25070
  }
25029
25071
  },
25030
- __wbg_getUnspentInputNoteNullifiers_5352631c6015d6e5: function(arg0, arg1) {
25072
+ __wbg_getUnspentInputNoteNullifiers_ac153627e18848ab: function(arg0, arg1) {
25031
25073
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
25032
25074
  return ret;
25033
25075
  },
@@ -25071,7 +25113,7 @@ function __wbg_get_imports(memory) {
25071
25113
  const ret = InputNoteRecord.__wrap(arg0);
25072
25114
  return ret;
25073
25115
  },
25074
- __wbg_insertAccountAddress_a8f49a2f8f6ff0f1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25116
+ __wbg_insertAccountAddress_15069fe099e1619e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25075
25117
  let deferred0_0;
25076
25118
  let deferred0_1;
25077
25119
  try {
@@ -25085,7 +25127,7 @@ function __wbg_get_imports(memory) {
25085
25127
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25086
25128
  }
25087
25129
  },
25088
- __wbg_insertAccountAuth_3a2314a58a464f90: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25130
+ __wbg_insertAccountAuth_d0cb9c2601ea7324: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25089
25131
  let deferred0_0;
25090
25132
  let deferred0_1;
25091
25133
  let deferred1_0;
@@ -25102,7 +25144,7 @@ function __wbg_get_imports(memory) {
25102
25144
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
25103
25145
  }
25104
25146
  },
25105
- __wbg_insertAccountKeyMapping_72c6d4d8b9306667: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25147
+ __wbg_insertAccountKeyMapping_995e470bad5ead0b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25106
25148
  let deferred0_0;
25107
25149
  let deferred0_1;
25108
25150
  let deferred1_0;
@@ -25119,13 +25161,13 @@ function __wbg_get_imports(memory) {
25119
25161
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
25120
25162
  }
25121
25163
  },
25122
- __wbg_insertBlockHeader_305b039a9623ae0f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25164
+ __wbg_insertBlockHeader_e5a6e2ded97f2403: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25123
25165
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
25124
25166
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
25125
25167
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
25126
25168
  return ret;
25127
25169
  },
25128
- __wbg_insertPartialBlockchainNodes_cf3566f492028425: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25170
+ __wbg_insertPartialBlockchainNodes_d6d5d926855e4d21: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25129
25171
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
25130
25172
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25131
25173
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -25133,7 +25175,7 @@ function __wbg_get_imports(memory) {
25133
25175
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
25134
25176
  return ret;
25135
25177
  },
25136
- __wbg_insertSetting_0f1cae5afcfb4023: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25178
+ __wbg_insertSetting_0b89216c93defa8f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25137
25179
  let deferred0_0;
25138
25180
  let deferred0_1;
25139
25181
  try {
@@ -25147,7 +25189,7 @@ function __wbg_get_imports(memory) {
25147
25189
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25148
25190
  }
25149
25191
  },
25150
- __wbg_insertTransactionScript_254698ca99f13bdb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25192
+ __wbg_insertTransactionScript_25a8761c16b219bb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25151
25193
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25152
25194
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25153
25195
  let v1;
@@ -25254,11 +25296,11 @@ function __wbg_get_imports(memory) {
25254
25296
  const ret = arg0.length;
25255
25297
  return ret;
25256
25298
  },
25257
- __wbg_listSettingKeys_b640b6ed3b2ceee7: function(arg0, arg1) {
25299
+ __wbg_listSettingKeys_2b136b1269935560: function(arg0, arg1) {
25258
25300
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
25259
25301
  return ret;
25260
25302
  },
25261
- __wbg_lockAccount_e19bdabd557a9bac: function(arg0, arg1, arg2, arg3) {
25303
+ __wbg_lockAccount_77845432e7766df6: function(arg0, arg1, arg2, arg3) {
25262
25304
  let deferred0_0;
25263
25305
  let deferred0_1;
25264
25306
  try {
@@ -25477,7 +25519,7 @@ function __wbg_get_imports(memory) {
25477
25519
  const ret = Array.of(arg0, arg1, arg2);
25478
25520
  return ret;
25479
25521
  },
25480
- __wbg_openDatabase_9a8fbeb3ab124c9d: function(arg0, arg1, arg2, arg3) {
25522
+ __wbg_openDatabase_2f30006b5f901ff6: function(arg0, arg1, arg2, arg3) {
25481
25523
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
25482
25524
  return ret;
25483
25525
  },
@@ -25511,7 +25553,7 @@ function __wbg_get_imports(memory) {
25511
25553
  const ret = ProvenTransaction.__wrap(arg0);
25512
25554
  return ret;
25513
25555
  },
25514
- __wbg_pruneAccountHistory_6f68d5203b34624d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25556
+ __wbg_pruneAccountHistory_f92187e012bea002: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25515
25557
  let deferred0_0;
25516
25558
  let deferred0_1;
25517
25559
  let deferred1_0;
@@ -25528,7 +25570,7 @@ function __wbg_get_imports(memory) {
25528
25570
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
25529
25571
  }
25530
25572
  },
25531
- __wbg_pruneIrrelevantBlocks_f67204a16f7b32f3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25573
+ __wbg_pruneIrrelevantBlocks_802f17c51c071490: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25532
25574
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
25533
25575
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25534
25576
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -25558,13 +25600,13 @@ function __wbg_get_imports(memory) {
25558
25600
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
25559
25601
  arg0.releaseLock();
25560
25602
  },
25561
- __wbg_removeAccountAddress_c96456170da6ac29: function(arg0, arg1, arg2, arg3) {
25603
+ __wbg_removeAccountAddress_26bf46414ef4d36b: function(arg0, arg1, arg2, arg3) {
25562
25604
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25563
25605
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25564
25606
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
25565
25607
  return ret;
25566
25608
  },
25567
- __wbg_removeAccountAuth_514a8e1ee9bc6293: function(arg0, arg1, arg2, arg3) {
25609
+ __wbg_removeAccountAuth_eee531cc8fc556ab: function(arg0, arg1, arg2, arg3) {
25568
25610
  let deferred0_0;
25569
25611
  let deferred0_1;
25570
25612
  try {
@@ -25576,7 +25618,7 @@ function __wbg_get_imports(memory) {
25576
25618
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25577
25619
  }
25578
25620
  },
25579
- __wbg_removeAllMappingsForKey_18e793a295ac2226: function(arg0, arg1, arg2, arg3) {
25621
+ __wbg_removeAllMappingsForKey_bb2ce4d992b13353: function(arg0, arg1, arg2, arg3) {
25580
25622
  let deferred0_0;
25581
25623
  let deferred0_1;
25582
25624
  try {
@@ -25588,7 +25630,7 @@ function __wbg_get_imports(memory) {
25588
25630
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25589
25631
  }
25590
25632
  },
25591
- __wbg_removeNoteTag_8ae01f5c65dc9174: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
25633
+ __wbg_removeNoteTag_ce18a2071a471486: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
25592
25634
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25593
25635
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25594
25636
  let v1;
@@ -25609,7 +25651,7 @@ function __wbg_get_imports(memory) {
25609
25651
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
25610
25652
  return ret;
25611
25653
  },
25612
- __wbg_removeSetting_5bec82500774f6cf: function(arg0, arg1, arg2, arg3) {
25654
+ __wbg_removeSetting_a6764e1ec62f8c0f: function(arg0, arg1, arg2, arg3) {
25613
25655
  let deferred0_0;
25614
25656
  let deferred0_1;
25615
25657
  try {
@@ -25819,13 +25861,13 @@ function __wbg_get_imports(memory) {
25819
25861
  const ret = TransactionSummary.__wrap(arg0);
25820
25862
  return ret;
25821
25863
  },
25822
- __wbg_undoAccountStates_b7f5bc8db7e5f7d9: function(arg0, arg1, arg2, arg3) {
25864
+ __wbg_undoAccountStates_829a6daf4a392818: function(arg0, arg1, arg2, arg3) {
25823
25865
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
25824
25866
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25825
25867
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
25826
25868
  return ret;
25827
25869
  },
25828
- __wbg_upsertAccountCode_2885d4bc1584e8e8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25870
+ __wbg_upsertAccountCode_f24cee98a5bbbfe5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25829
25871
  let deferred0_0;
25830
25872
  let deferred0_1;
25831
25873
  try {
@@ -25839,7 +25881,7 @@ function __wbg_get_imports(memory) {
25839
25881
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25840
25882
  }
25841
25883
  },
25842
- __wbg_upsertAccountRecord_c3aa685ee4dcc3de: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
25884
+ __wbg_upsertAccountRecord_f616812a7dd3d5a1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
25843
25885
  let deferred0_0;
25844
25886
  let deferred0_1;
25845
25887
  let deferred1_0;
@@ -25881,7 +25923,7 @@ function __wbg_get_imports(memory) {
25881
25923
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
25882
25924
  }
25883
25925
  },
25884
- __wbg_upsertAccountStorage_e482e77a7e281260: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25926
+ __wbg_upsertAccountStorage_4f3a4494f26975fb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25885
25927
  let deferred0_0;
25886
25928
  let deferred0_1;
25887
25929
  try {
@@ -25895,7 +25937,7 @@ function __wbg_get_imports(memory) {
25895
25937
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25896
25938
  }
25897
25939
  },
25898
- __wbg_upsertForeignAccountCode_9aa9b862b6a7e789: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
25940
+ __wbg_upsertForeignAccountCode_6595b4d97e610669: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
25899
25941
  let deferred0_0;
25900
25942
  let deferred0_1;
25901
25943
  let deferred2_0;
@@ -25914,7 +25956,7 @@ function __wbg_get_imports(memory) {
25914
25956
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
25915
25957
  }
25916
25958
  },
25917
- __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) {
25959
+ __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) {
25918
25960
  let deferred0_0;
25919
25961
  let deferred0_1;
25920
25962
  let deferred6_0;
@@ -25963,7 +26005,7 @@ function __wbg_get_imports(memory) {
25963
26005
  wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
25964
26006
  }
25965
26007
  },
25966
- __wbg_upsertNoteScript_7e9a616d8a143614: function(arg0, arg1, arg2, arg3, arg4, arg5) {
26008
+ __wbg_upsertNoteScript_d946217575ba5025: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25967
26009
  let deferred0_0;
25968
26010
  let deferred0_1;
25969
26011
  try {
@@ -25977,7 +26019,7 @@ function __wbg_get_imports(memory) {
25977
26019
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25978
26020
  }
25979
26021
  },
25980
- __wbg_upsertOutputNote_1194e3f5dcc3d4f1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
26022
+ __wbg_upsertOutputNote_907da49377d56a48: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
25981
26023
  let deferred0_0;
25982
26024
  let deferred0_1;
25983
26025
  let deferred1_0;
@@ -26012,7 +26054,7 @@ function __wbg_get_imports(memory) {
26012
26054
  wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
26013
26055
  }
26014
26056
  },
26015
- __wbg_upsertStorageMapEntries_82d953e23dee24ed: function(arg0, arg1, arg2, arg3, arg4, arg5) {
26057
+ __wbg_upsertStorageMapEntries_6bf2d15ad885daf0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
26016
26058
  let deferred0_0;
26017
26059
  let deferred0_1;
26018
26060
  try {
@@ -26026,7 +26068,7 @@ function __wbg_get_imports(memory) {
26026
26068
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
26027
26069
  }
26028
26070
  },
26029
- __wbg_upsertTransactionRecord_24154d95069d63bd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
26071
+ __wbg_upsertTransactionRecord_0b4dbeb561124c59: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
26030
26072
  let deferred0_0;
26031
26073
  let deferred0_1;
26032
26074
  try {
@@ -26047,7 +26089,7 @@ function __wbg_get_imports(memory) {
26047
26089
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
26048
26090
  }
26049
26091
  },
26050
- __wbg_upsertVaultAssets_e982e767b7e6001a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
26092
+ __wbg_upsertVaultAssets_55f07579c9e0113e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
26051
26093
  let deferred0_0;
26052
26094
  let deferred0_1;
26053
26095
  try {
@@ -26090,17 +26132,17 @@ function __wbg_get_imports(memory) {
26090
26132
  return ret;
26091
26133
  },
26092
26134
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
26093
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128, function: Function { arguments: [Externref], shim_idx: 129, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
26135
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 129, function: Function { arguments: [Externref], shim_idx: 130, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
26094
26136
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8294944b14acb139___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_8294944b14acb139___JsValue____Output_______, wasm_bindgen_8294944b14acb139___convert__closures_____invoke___wasm_bindgen_8294944b14acb139___JsValue_____);
26095
26137
  return ret;
26096
26138
  },
26097
26139
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
26098
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 129, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
26140
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 129, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 130, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
26099
26141
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8294944b14acb139___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_8294944b14acb139___JsValue____Output_______, wasm_bindgen_8294944b14acb139___convert__closures_____invoke___wasm_bindgen_8294944b14acb139___JsValue_____);
26100
26142
  return ret;
26101
26143
  },
26102
26144
  __wbindgen_cast_0000000000000003: function(arg0, arg1) {
26103
- // Cast intrinsic for `Closure(Closure { dtor_idx: 128, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
26145
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 129, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
26104
26146
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8294944b14acb139___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_8294944b14acb139___JsValue____Output_______, wasm_bindgen_8294944b14acb139___convert__closures_____invoke______);
26105
26147
  return ret;
26106
26148
  },
@@ -27095,6 +27137,7 @@ var index = /*#__PURE__*/Object.freeze({
27095
27137
  Address: Address,
27096
27138
  AdviceInputs: AdviceInputs,
27097
27139
  AdviceMap: AdviceMap,
27140
+ AssetCallbackFlag: AssetCallbackFlag,
27098
27141
  AssetVault: AssetVault,
27099
27142
  AuthFalcon512RpoMultisigConfig: AuthFalcon512RpoMultisigConfig,
27100
27143
  AuthScheme: AuthScheme,
@@ -27237,5 +27280,5 @@ var index = /*#__PURE__*/Object.freeze({
27237
27280
  });
27238
27281
 
27239
27282
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
27240
- 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, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, initThreadPool, mtProbeAsync, mtProbeSync, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker , __wbg_init, module$1 as __wasm_url };
27241
- //# sourceMappingURL=Cargo-mvyTli7g.js.map
27283
+ 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, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, initThreadPool, mtProbeAsync, mtProbeSync, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker , __wbg_init, module$1 as __wasm_url };
27284
+ //# sourceMappingURL=Cargo-CnGom-_z.js.map