@miden-sdk/miden-sdk 0.15.6 → 0.15.8

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 (44) hide show
  1. package/README.md +15 -0
  2. package/dist/mt/{Cargo-mvyTli7g.js → Cargo-CvYxNO9A.js} +203 -77
  3. package/dist/mt/Cargo-CvYxNO9A.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 +81 -1
  7. package/dist/mt/docs-entry.d.ts +3 -0
  8. package/dist/mt/eager.js +1 -1
  9. package/dist/mt/index.js +279 -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-CvYxNO9A-D_wSZjuK.js} +203 -77
  14. package/dist/mt/workers/Cargo-CvYxNO9A-D_wSZjuK.js.map +1 -0
  15. package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
  16. package/dist/mt/workers/web-client-methods-worker.js +204 -77
  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-L_lPKfww.js} +201 -76
  22. package/dist/st/Cargo-L_lPKfww.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 +81 -1
  26. package/dist/st/docs-entry.d.ts +3 -0
  27. package/dist/st/eager.js +1 -1
  28. package/dist/st/index.js +279 -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-L_lPKfww-BM__buYN.js} +201 -76
  32. package/dist/st/workers/Cargo-L_lPKfww-BM__buYN.js.map +1 -0
  33. package/dist/st/workers/assets/miden_client_web.wasm +0 -0
  34. package/dist/st/workers/web-client-methods-worker.js +202 -76
  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/mt/workers/Cargo-mvyTli7g-BwMMSyoq.js.map +0 -1
  43. package/dist/st/Cargo-Cysp4vto.js.map +0 -1
  44. package/dist/st/workers/Cargo-Cysp4vto-BIw-TeJn.js.map +0 -1
@@ -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
  *
@@ -13198,6 +13218,26 @@ class BasicFungibleFaucetComponent {
13198
13218
  }
13199
13219
  return BasicFungibleFaucetComponent.__wrap(ret[0]);
13200
13220
  }
13221
+ /**
13222
+ * Extracts faucet metadata from an account's storage.
13223
+ *
13224
+ * Unlike [`Self::from_account`], this reads the metadata straight from the storage slots
13225
+ * without checking that the account exposes the basic fungible faucet interface. This makes
13226
+ * it work for faucets built from custom components that reuse the standards storage layout
13227
+ * (e.g. `AggLayer` bridged-asset faucets), but it also means a non-faucet account whose
13228
+ * storage happens to use the same slot names would yield bogus metadata without an error.
13229
+ * @param {AccountStorage} account_storage
13230
+ * @returns {BasicFungibleFaucetComponent}
13231
+ */
13232
+ static fromAccountStorage(account_storage) {
13233
+ _assertClass(account_storage, AccountStorage);
13234
+ var ptr0 = account_storage.__destroy_into_raw();
13235
+ const ret = wasm.basicfungiblefaucetcomponent_fromAccountStorage(ptr0);
13236
+ if (ret[2]) {
13237
+ throw takeFromExternrefTable0(ret[1]);
13238
+ }
13239
+ return BasicFungibleFaucetComponent.__wrap(ret[0]);
13240
+ }
13201
13241
  /**
13202
13242
  * Returns the optional token logo URI, or `undefined` when unset.
13203
13243
  * @returns {string | undefined}
@@ -14585,6 +14625,14 @@ class FungibleAsset {
14585
14625
  const ret = wasm.fungibleasset_amount(this.__wbg_ptr);
14586
14626
  return BigInt.asUintN(64, ret);
14587
14627
  }
14628
+ /**
14629
+ * Returns whether this asset invokes its faucet's callbacks.
14630
+ * @returns {AssetCallbackFlag}
14631
+ */
14632
+ callbacks() {
14633
+ const ret = wasm.fungibleasset_callbacks(this.__wbg_ptr);
14634
+ return ret;
14635
+ }
14588
14636
  /**
14589
14637
  * Returns the faucet account that minted this asset.
14590
14638
  * @returns {AccountId}
@@ -14594,7 +14642,58 @@ class FungibleAsset {
14594
14642
  return AccountId.__wrap(ret);
14595
14643
  }
14596
14644
  /**
14597
- * Encodes this asset into the word layout used in the vault.
14645
+ * Reconstructs a fungible asset from its vault entry the `(key, value)`
14646
+ * word pair as stored in an account vault, i.e. the outputs of
14647
+ * [`vaultKey`](Self::vault_key) and [`intoWord`](Self::into_word). The key
14648
+ * word carries the faucet id and the callback flag; the value word carries
14649
+ * the amount. This is the inverse of those getters, so
14650
+ * `FungibleAsset.fromVaultEntry(a.vaultKey(), a.intoWord())` round-trips an
14651
+ * asset read from vault data (callback flag included). Errors if the words
14652
+ * don't describe a valid fungible asset (e.g. a malformed key, non-zero
14653
+ * upper limbs in the value word, or an amount above the maximum fungible
14654
+ * asset amount, `2^63 - 2^31`).
14655
+ * @param {Word} key
14656
+ * @param {Word} value
14657
+ * @returns {FungibleAsset}
14658
+ */
14659
+ static fromVaultEntry(key, value) {
14660
+ _assertClass(key, Word);
14661
+ _assertClass(value, Word);
14662
+ const ret = wasm.fungibleasset_fromVaultEntry(key.__wbg_ptr, value.__wbg_ptr);
14663
+ if (ret[2]) {
14664
+ throw takeFromExternrefTable0(ret[1]);
14665
+ }
14666
+ return FungibleAsset.__wrap(ret[0]);
14667
+ }
14668
+ /**
14669
+ * Reconstructs a fungible asset from its vault key word and a scalar amount.
14670
+ *
14671
+ * A convenience over [`fromVaultEntry`](Self::from_vault_entry) for when you
14672
+ * hold the key word (from [`vaultKey`](Self::vault_key)) and the amount as a
14673
+ * number rather than the value word: the key supplies the faucet id and
14674
+ * callback flag, and the amount is encoded into the value word for you. Use
14675
+ * `fromVaultEntry` when you already have both vault words. Errors on a
14676
+ * malformed key or an amount above the maximum fungible asset amount,
14677
+ * `2^63 - 2^31`.
14678
+ * @param {Word} key
14679
+ * @param {bigint} amount
14680
+ * @returns {FungibleAsset}
14681
+ */
14682
+ static fromVaultKey(key, amount) {
14683
+ _assertClass(key, Word);
14684
+ const ret = wasm.fungibleasset_fromVaultKey(key.__wbg_ptr, amount);
14685
+ if (ret[2]) {
14686
+ throw takeFromExternrefTable0(ret[1]);
14687
+ }
14688
+ return FungibleAsset.__wrap(ret[0]);
14689
+ }
14690
+ /**
14691
+ * Returns the value word stored under [`vaultKey`](Self::vault_key) in an
14692
+ * account vault. For a fungible asset the value word encodes the amount.
14693
+ *
14694
+ * This is the value half of the vault entry; pair it with `vaultKey()` and
14695
+ * pass both to [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the
14696
+ * asset.
14598
14697
  * @returns {Word}
14599
14698
  */
14600
14699
  intoWord() {
@@ -14616,6 +14715,32 @@ class FungibleAsset {
14616
14715
  FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
14617
14716
  return this;
14618
14717
  }
14718
+ /**
14719
+ * Returns the key word under which this asset is stored in an account vault.
14720
+ *
14721
+ * The key encodes the faucet id and the callback flag; the amount lives in
14722
+ * the paired value word from [`intoWord`](Self::into_word). Pass both back
14723
+ * into [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the asset.
14724
+ * @returns {Word}
14725
+ */
14726
+ vaultKey() {
14727
+ const ret = wasm.fungibleasset_vaultKey(this.__wbg_ptr);
14728
+ return Word.__wrap(ret);
14729
+ }
14730
+ /**
14731
+ * Returns a copy of this asset carrying the given callback flag.
14732
+ *
14733
+ * The flag is part of the asset's vault key, so it must match the flag the issuing faucet
14734
+ * applies — an asset built with the wrong flag addresses a different vault slot than the one
14735
+ * holding the balance. The constructor always produces `Disabled`; pass `Enabled` only for
14736
+ * assets from a faucet that registers transfer policies.
14737
+ * @param {AssetCallbackFlag} callbacks
14738
+ * @returns {FungibleAsset}
14739
+ */
14740
+ withCallbacks(callbacks) {
14741
+ const ret = wasm.fungibleasset_withCallbacks(this.__wbg_ptr, callbacks);
14742
+ return FungibleAsset.__wrap(ret);
14743
+ }
14619
14744
  }
14620
14745
  if (Symbol.dispose) FungibleAsset.prototype[Symbol.dispose] = FungibleAsset.prototype.free;
14621
14746
 
@@ -24258,7 +24383,7 @@ function __wbg_get_imports() {
24258
24383
  const ret = AccountStorage.__wrap(arg0);
24259
24384
  return ret;
24260
24385
  },
24261
- __wbg_addNoteTag_c1d851535ec0e098: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
24386
+ __wbg_addNoteTag_25cad61edb5d555a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
24262
24387
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24263
24388
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24264
24389
  let v1;
@@ -24286,25 +24411,25 @@ function __wbg_get_imports() {
24286
24411
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
24287
24412
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
24288
24413
  }, arguments); },
24289
- __wbg_applyFullAccountState_a76a7cf1d93a9554: function(arg0, arg1, arg2) {
24414
+ __wbg_applyFullAccountState_2aeb79c033cb94e9: function(arg0, arg1, arg2) {
24290
24415
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
24291
24416
  return ret;
24292
24417
  },
24293
- __wbg_applySettingsMutations_e98dbb5827d3ec93: function(arg0, arg1, arg2, arg3) {
24418
+ __wbg_applySettingsMutations_e331196301c58c75: function(arg0, arg1, arg2, arg3) {
24294
24419
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24295
24420
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24296
24421
  const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
24297
24422
  return ret;
24298
24423
  },
24299
- __wbg_applyStateSync_c365f1affe42d064: function(arg0, arg1, arg2) {
24424
+ __wbg_applyStateSync_75d2fe4dcfcd8387: function(arg0, arg1, arg2) {
24300
24425
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
24301
24426
  return ret;
24302
24427
  },
24303
- __wbg_applyTransactionBatch_0b07b42c93c25447: function(arg0, arg1, arg2) {
24428
+ __wbg_applyTransactionBatch_9d2069a58ecdeb08: function(arg0, arg1, arg2) {
24304
24429
  const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
24305
24430
  return ret;
24306
24431
  },
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) {
24432
+ __wbg_applyTransactionDelta_0678a2cd1164cac0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
24308
24433
  let deferred0_0;
24309
24434
  let deferred0_1;
24310
24435
  let deferred1_0;
@@ -24443,7 +24568,7 @@ function __wbg_get_imports() {
24443
24568
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24444
24569
  }
24445
24570
  },
24446
- __wbg_exportStore_ca32cf4c9f46f56b: function(arg0, arg1) {
24571
+ __wbg_exportStore_bf1688fbcaeac761: function(arg0, arg1) {
24447
24572
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
24448
24573
  return ret;
24449
24574
  },
@@ -24475,7 +24600,7 @@ function __wbg_get_imports() {
24475
24600
  const ret = FetchedNote.__wrap(arg0);
24476
24601
  return ret;
24477
24602
  },
24478
- __wbg_forceImportStore_8bb9e5bbca5e1513: function(arg0, arg1, arg2) {
24603
+ __wbg_forceImportStore_bd5ce688ff80c047: function(arg0, arg1, arg2) {
24479
24604
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
24480
24605
  return ret;
24481
24606
  },
@@ -24499,7 +24624,7 @@ function __wbg_get_imports() {
24499
24624
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
24500
24625
  return ret;
24501
24626
  },
24502
- __wbg_getAccountAddresses_d068c1e15e7a3f69: function(arg0, arg1, arg2, arg3) {
24627
+ __wbg_getAccountAddresses_44b5a6db696a9381: function(arg0, arg1, arg2, arg3) {
24503
24628
  let deferred0_0;
24504
24629
  let deferred0_1;
24505
24630
  try {
@@ -24511,7 +24636,7 @@ function __wbg_get_imports() {
24511
24636
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24512
24637
  }
24513
24638
  },
24514
- __wbg_getAccountAuthByPubKeyCommitment_8f67fb0e63c7bd2e: function(arg0, arg1, arg2, arg3) {
24639
+ __wbg_getAccountAuthByPubKeyCommitment_98a8d726bce942e5: function(arg0, arg1, arg2, arg3) {
24515
24640
  let deferred0_0;
24516
24641
  let deferred0_1;
24517
24642
  try {
@@ -24523,7 +24648,7 @@ function __wbg_get_imports() {
24523
24648
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24524
24649
  }
24525
24650
  },
24526
- __wbg_getAccountCode_c9e87e9228f99d8a: function(arg0, arg1, arg2, arg3) {
24651
+ __wbg_getAccountCode_15c1a978217210a3: function(arg0, arg1, arg2, arg3) {
24527
24652
  let deferred0_0;
24528
24653
  let deferred0_1;
24529
24654
  try {
@@ -24535,7 +24660,7 @@ function __wbg_get_imports() {
24535
24660
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24536
24661
  }
24537
24662
  },
24538
- __wbg_getAccountHeaderByCommitment_918253bae03e21bd: function(arg0, arg1, arg2, arg3) {
24663
+ __wbg_getAccountHeaderByCommitment_6e856b122fb63445: function(arg0, arg1, arg2, arg3) {
24539
24664
  let deferred0_0;
24540
24665
  let deferred0_1;
24541
24666
  try {
@@ -24547,7 +24672,7 @@ function __wbg_get_imports() {
24547
24672
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24548
24673
  }
24549
24674
  },
24550
- __wbg_getAccountHeader_19a4cbeb88903833: function(arg0, arg1, arg2, arg3) {
24675
+ __wbg_getAccountHeader_1cfea7b95b20687b: function(arg0, arg1, arg2, arg3) {
24551
24676
  let deferred0_0;
24552
24677
  let deferred0_1;
24553
24678
  try {
@@ -24559,7 +24684,7 @@ function __wbg_get_imports() {
24559
24684
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24560
24685
  }
24561
24686
  },
24562
- __wbg_getAccountIdByKeyCommitment_2461fd858ac229a5: function(arg0, arg1, arg2, arg3) {
24687
+ __wbg_getAccountIdByKeyCommitment_dc2e8d8d8a290ac9: function(arg0, arg1, arg2, arg3) {
24563
24688
  let deferred0_0;
24564
24689
  let deferred0_1;
24565
24690
  try {
@@ -24571,11 +24696,11 @@ function __wbg_get_imports() {
24571
24696
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24572
24697
  }
24573
24698
  },
24574
- __wbg_getAccountIds_6ce312ac9bfb1b31: function(arg0, arg1) {
24699
+ __wbg_getAccountIds_0ce97765a3c31e7d: function(arg0, arg1) {
24575
24700
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
24576
24701
  return ret;
24577
24702
  },
24578
- __wbg_getAccountStorageMaps_18420aab10cd69bd: function(arg0, arg1, arg2, arg3) {
24703
+ __wbg_getAccountStorageMaps_09cb3c149afb2ab6: function(arg0, arg1, arg2, arg3) {
24579
24704
  let deferred0_0;
24580
24705
  let deferred0_1;
24581
24706
  try {
@@ -24587,7 +24712,7 @@ function __wbg_get_imports() {
24587
24712
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24588
24713
  }
24589
24714
  },
24590
- __wbg_getAccountStorage_ffe7596409c9223c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24715
+ __wbg_getAccountStorage_5502bfe95b2eb790: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24591
24716
  let deferred0_0;
24592
24717
  let deferred0_1;
24593
24718
  try {
@@ -24601,7 +24726,7 @@ function __wbg_get_imports() {
24601
24726
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24602
24727
  }
24603
24728
  },
24604
- __wbg_getAccountVaultAssets_af709bb72685df4c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24729
+ __wbg_getAccountVaultAssets_9519922d942fecee: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24605
24730
  let deferred0_0;
24606
24731
  let deferred0_1;
24607
24732
  try {
@@ -24615,27 +24740,27 @@ function __wbg_get_imports() {
24615
24740
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24616
24741
  }
24617
24742
  },
24618
- __wbg_getAllAccountHeaders_41895be7c409b88e: function(arg0, arg1) {
24743
+ __wbg_getAllAccountHeaders_df840fc87d4bdec9: function(arg0, arg1) {
24619
24744
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
24620
24745
  return ret;
24621
24746
  },
24622
- __wbg_getBlockHeaders_5fd7167f134e5843: function(arg0, arg1, arg2, arg3) {
24747
+ __wbg_getBlockHeaders_5873b22bd7744156: function(arg0, arg1, arg2, arg3) {
24623
24748
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
24624
24749
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24625
24750
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
24626
24751
  return ret;
24627
24752
  },
24628
- __wbg_getCurrentBlockchainPeaks_0d572807e1e9e2ae: function(arg0, arg1) {
24753
+ __wbg_getCurrentBlockchainPeaks_f329c1684cabaf21: function(arg0, arg1) {
24629
24754
  const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
24630
24755
  return ret;
24631
24756
  },
24632
- __wbg_getForeignAccountCode_844c11a17626e563: function(arg0, arg1, arg2, arg3) {
24757
+ __wbg_getForeignAccountCode_626cc9a21065ce07: function(arg0, arg1, arg2, arg3) {
24633
24758
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24634
24759
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24635
24760
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
24636
24761
  return ret;
24637
24762
  },
24638
- __wbg_getInputNoteByOffset_9ab1440d682c55fb: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
24763
+ __wbg_getInputNoteByOffset_437795f571f7c2fd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
24639
24764
  let deferred1_0;
24640
24765
  let deferred1_1;
24641
24766
  try {
@@ -24649,31 +24774,31 @@ function __wbg_get_imports() {
24649
24774
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24650
24775
  }
24651
24776
  },
24652
- __wbg_getInputNotesFromDetailsCommitments_0d7a37a6d01eab53: function(arg0, arg1, arg2, arg3) {
24777
+ __wbg_getInputNotesFromDetailsCommitments_e49ccdee208d1f22: function(arg0, arg1, arg2, arg3) {
24653
24778
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24654
24779
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24655
24780
  const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
24656
24781
  return ret;
24657
24782
  },
24658
- __wbg_getInputNotesFromIds_27c39054c73a044b: function(arg0, arg1, arg2, arg3) {
24783
+ __wbg_getInputNotesFromIds_057a1693a3b197c0: function(arg0, arg1, arg2, arg3) {
24659
24784
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24660
24785
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24661
24786
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
24662
24787
  return ret;
24663
24788
  },
24664
- __wbg_getInputNotesFromNullifiers_301cdfb81aa319a7: function(arg0, arg1, arg2, arg3) {
24789
+ __wbg_getInputNotesFromNullifiers_afa84bb5844ca0f2: function(arg0, arg1, arg2, arg3) {
24665
24790
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24666
24791
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24667
24792
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
24668
24793
  return ret;
24669
24794
  },
24670
- __wbg_getInputNotes_7d1b39ca9e78db47: function(arg0, arg1, arg2, arg3) {
24795
+ __wbg_getInputNotes_c22939005e704005: function(arg0, arg1, arg2, arg3) {
24671
24796
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24672
24797
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24673
24798
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
24674
24799
  return ret;
24675
24800
  },
24676
- __wbg_getKeyCommitmentsByAccountId_81ce3e1041e3bed0: function(arg0, arg1, arg2, arg3) {
24801
+ __wbg_getKeyCommitmentsByAccountId_a9d9f0e316e0b961: function(arg0, arg1, arg2, arg3) {
24677
24802
  let deferred0_0;
24678
24803
  let deferred0_1;
24679
24804
  try {
@@ -24685,7 +24810,7 @@ function __wbg_get_imports() {
24685
24810
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24686
24811
  }
24687
24812
  },
24688
- __wbg_getNoteScript_5be6f18daf0b0cff: function(arg0, arg1, arg2, arg3) {
24813
+ __wbg_getNoteScript_40c99e72d3a5347b: function(arg0, arg1, arg2, arg3) {
24689
24814
  let deferred0_0;
24690
24815
  let deferred0_1;
24691
24816
  try {
@@ -24697,39 +24822,39 @@ function __wbg_get_imports() {
24697
24822
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24698
24823
  }
24699
24824
  },
24700
- __wbg_getNoteTags_43e80680e54bade8: function(arg0, arg1) {
24825
+ __wbg_getNoteTags_67063dd77a36d6b4: function(arg0, arg1) {
24701
24826
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
24702
24827
  return ret;
24703
24828
  },
24704
- __wbg_getOutputNotesFromDetailsCommitments_68e3dca9188e3f99: function(arg0, arg1, arg2, arg3) {
24829
+ __wbg_getOutputNotesFromDetailsCommitments_bdf7b0c9d2a5db36: function(arg0, arg1, arg2, arg3) {
24705
24830
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24706
24831
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24707
24832
  const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
24708
24833
  return ret;
24709
24834
  },
24710
- __wbg_getOutputNotesFromIds_768649a70e0c7bfb: function(arg0, arg1, arg2, arg3) {
24835
+ __wbg_getOutputNotesFromIds_219945e5373d809b: function(arg0, arg1, arg2, arg3) {
24711
24836
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24712
24837
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24713
24838
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
24714
24839
  return ret;
24715
24840
  },
24716
- __wbg_getOutputNotesFromNullifiers_c7ed92290ce3947a: function(arg0, arg1, arg2, arg3) {
24841
+ __wbg_getOutputNotesFromNullifiers_707ceecfe32e4a35: function(arg0, arg1, arg2, arg3) {
24717
24842
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24718
24843
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24719
24844
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
24720
24845
  return ret;
24721
24846
  },
24722
- __wbg_getOutputNotes_b3ad1953a5193c80: function(arg0, arg1, arg2, arg3) {
24847
+ __wbg_getOutputNotes_326a5aa0d3790050: function(arg0, arg1, arg2, arg3) {
24723
24848
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24724
24849
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24725
24850
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
24726
24851
  return ret;
24727
24852
  },
24728
- __wbg_getPartialBlockchainNodesAll_6834180a437e7c63: function(arg0, arg1) {
24853
+ __wbg_getPartialBlockchainNodesAll_7cf9e7cf6f37f395: function(arg0, arg1) {
24729
24854
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
24730
24855
  return ret;
24731
24856
  },
24732
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_94dc7d751d77e648: function(arg0, arg1, arg2, arg3) {
24857
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_e91098152297e0da: function(arg0, arg1, arg2, arg3) {
24733
24858
  let deferred0_0;
24734
24859
  let deferred0_1;
24735
24860
  try {
@@ -24741,7 +24866,7 @@ function __wbg_get_imports() {
24741
24866
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24742
24867
  }
24743
24868
  },
24744
- __wbg_getPartialBlockchainNodes_af5bd7d7471ef114: function(arg0, arg1, arg2, arg3) {
24869
+ __wbg_getPartialBlockchainNodes_433475f2ec8b2171: function(arg0, arg1, arg2, arg3) {
24745
24870
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24746
24871
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24747
24872
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
@@ -24754,7 +24879,7 @@ function __wbg_get_imports() {
24754
24879
  const ret = arg0.getReader();
24755
24880
  return ret;
24756
24881
  }, arguments); },
24757
- __wbg_getSetting_f06b2891fbabc9cf: function(arg0, arg1, arg2, arg3) {
24882
+ __wbg_getSetting_e008c5a99f10e590: function(arg0, arg1, arg2, arg3) {
24758
24883
  let deferred0_0;
24759
24884
  let deferred0_1;
24760
24885
  try {
@@ -24766,7 +24891,7 @@ function __wbg_get_imports() {
24766
24891
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24767
24892
  }
24768
24893
  },
24769
- __wbg_getSyncHeight_d79b93a5d88a10be: function(arg0, arg1) {
24894
+ __wbg_getSyncHeight_ecfa19078de4c98f: function(arg0, arg1) {
24770
24895
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
24771
24896
  return ret;
24772
24897
  },
@@ -24774,15 +24899,15 @@ function __wbg_get_imports() {
24774
24899
  const ret = arg0.getTime();
24775
24900
  return ret;
24776
24901
  },
24777
- __wbg_getTrackedBlockHeaderNumbers_f0d5e2f2232551cc: function(arg0, arg1) {
24902
+ __wbg_getTrackedBlockHeaderNumbers_1cb8016a509ed0c4: function(arg0, arg1) {
24778
24903
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
24779
24904
  return ret;
24780
24905
  },
24781
- __wbg_getTrackedBlockHeaders_db61d3cc39ec8dba: function(arg0, arg1) {
24906
+ __wbg_getTrackedBlockHeaders_ea97bc37d74a875a: function(arg0, arg1) {
24782
24907
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
24783
24908
  return ret;
24784
24909
  },
24785
- __wbg_getTransactions_00723f63af87e326: function(arg0, arg1, arg2, arg3) {
24910
+ __wbg_getTransactions_fbcf8488c75fde0d: function(arg0, arg1, arg2, arg3) {
24786
24911
  let deferred0_0;
24787
24912
  let deferred0_1;
24788
24913
  try {
@@ -24794,7 +24919,7 @@ function __wbg_get_imports() {
24794
24919
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24795
24920
  }
24796
24921
  },
24797
- __wbg_getUnspentInputNoteNullifiers_5352631c6015d6e5: function(arg0, arg1) {
24922
+ __wbg_getUnspentInputNoteNullifiers_75ec5ab42ea5afa9: function(arg0, arg1) {
24798
24923
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
24799
24924
  return ret;
24800
24925
  },
@@ -24838,7 +24963,7 @@ function __wbg_get_imports() {
24838
24963
  const ret = InputNoteRecord.__wrap(arg0);
24839
24964
  return ret;
24840
24965
  },
24841
- __wbg_insertAccountAddress_a8f49a2f8f6ff0f1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24966
+ __wbg_insertAccountAddress_e8628627a138e81e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24842
24967
  let deferred0_0;
24843
24968
  let deferred0_1;
24844
24969
  try {
@@ -24852,7 +24977,7 @@ function __wbg_get_imports() {
24852
24977
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24853
24978
  }
24854
24979
  },
24855
- __wbg_insertAccountAuth_3a2314a58a464f90: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24980
+ __wbg_insertAccountAuth_278a833f3fef3aca: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24856
24981
  let deferred0_0;
24857
24982
  let deferred0_1;
24858
24983
  let deferred1_0;
@@ -24869,7 +24994,7 @@ function __wbg_get_imports() {
24869
24994
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24870
24995
  }
24871
24996
  },
24872
- __wbg_insertAccountKeyMapping_72c6d4d8b9306667: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24997
+ __wbg_insertAccountKeyMapping_05e2b0009cf1cfe3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24873
24998
  let deferred0_0;
24874
24999
  let deferred0_1;
24875
25000
  let deferred1_0;
@@ -24886,13 +25011,13 @@ function __wbg_get_imports() {
24886
25011
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
24887
25012
  }
24888
25013
  },
24889
- __wbg_insertBlockHeader_305b039a9623ae0f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25014
+ __wbg_insertBlockHeader_d972fb92f29e7da7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24890
25015
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
24891
25016
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
24892
25017
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
24893
25018
  return ret;
24894
25019
  },
24895
- __wbg_insertPartialBlockchainNodes_cf3566f492028425: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25020
+ __wbg_insertPartialBlockchainNodes_70af5f15aaab9f89: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24896
25021
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
24897
25022
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
24898
25023
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -24900,7 +25025,7 @@ function __wbg_get_imports() {
24900
25025
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
24901
25026
  return ret;
24902
25027
  },
24903
- __wbg_insertSetting_0f1cae5afcfb4023: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25028
+ __wbg_insertSetting_a1f83afe232d6b43: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24904
25029
  let deferred0_0;
24905
25030
  let deferred0_1;
24906
25031
  try {
@@ -24914,7 +25039,7 @@ function __wbg_get_imports() {
24914
25039
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
24915
25040
  }
24916
25041
  },
24917
- __wbg_insertTransactionScript_254698ca99f13bdb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25042
+ __wbg_insertTransactionScript_4ca2858864a66866: function(arg0, arg1, arg2, arg3, arg4, arg5) {
24918
25043
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
24919
25044
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
24920
25045
  let v1;
@@ -25011,11 +25136,11 @@ function __wbg_get_imports() {
25011
25136
  const ret = arg0.length;
25012
25137
  return ret;
25013
25138
  },
25014
- __wbg_listSettingKeys_b640b6ed3b2ceee7: function(arg0, arg1) {
25139
+ __wbg_listSettingKeys_32703227794f5ddf: function(arg0, arg1) {
25015
25140
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
25016
25141
  return ret;
25017
25142
  },
25018
- __wbg_lockAccount_e19bdabd557a9bac: function(arg0, arg1, arg2, arg3) {
25143
+ __wbg_lockAccount_6847f6622cfbb360: function(arg0, arg1, arg2, arg3) {
25019
25144
  let deferred0_0;
25020
25145
  let deferred0_1;
25021
25146
  try {
@@ -25218,7 +25343,7 @@ function __wbg_get_imports() {
25218
25343
  const ret = NoteTag.__unwrap(arg0);
25219
25344
  return ret;
25220
25345
  },
25221
- __wbg_openDatabase_9a8fbeb3ab124c9d: function(arg0, arg1, arg2, arg3) {
25346
+ __wbg_openDatabase_41d26d65ebf6caf0: function(arg0, arg1, arg2, arg3) {
25222
25347
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
25223
25348
  return ret;
25224
25349
  },
@@ -25249,7 +25374,7 @@ function __wbg_get_imports() {
25249
25374
  const ret = ProvenTransaction.__wrap(arg0);
25250
25375
  return ret;
25251
25376
  },
25252
- __wbg_pruneAccountHistory_6f68d5203b34624d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25377
+ __wbg_pruneAccountHistory_07a7e45174c9f37a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25253
25378
  let deferred0_0;
25254
25379
  let deferred0_1;
25255
25380
  let deferred1_0;
@@ -25266,7 +25391,7 @@ function __wbg_get_imports() {
25266
25391
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
25267
25392
  }
25268
25393
  },
25269
- __wbg_pruneIrrelevantBlocks_f67204a16f7b32f3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25394
+ __wbg_pruneIrrelevantBlocks_94286980844c1214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25270
25395
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
25271
25396
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25272
25397
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -25296,13 +25421,13 @@ function __wbg_get_imports() {
25296
25421
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
25297
25422
  arg0.releaseLock();
25298
25423
  },
25299
- __wbg_removeAccountAddress_c96456170da6ac29: function(arg0, arg1, arg2, arg3) {
25424
+ __wbg_removeAccountAddress_329baf02728f4c41: function(arg0, arg1, arg2, arg3) {
25300
25425
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25301
25426
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25302
25427
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
25303
25428
  return ret;
25304
25429
  },
25305
- __wbg_removeAccountAuth_514a8e1ee9bc6293: function(arg0, arg1, arg2, arg3) {
25430
+ __wbg_removeAccountAuth_603363308e6ae70b: function(arg0, arg1, arg2, arg3) {
25306
25431
  let deferred0_0;
25307
25432
  let deferred0_1;
25308
25433
  try {
@@ -25314,7 +25439,7 @@ function __wbg_get_imports() {
25314
25439
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25315
25440
  }
25316
25441
  },
25317
- __wbg_removeAllMappingsForKey_18e793a295ac2226: function(arg0, arg1, arg2, arg3) {
25442
+ __wbg_removeAllMappingsForKey_fbc7b61a67110568: function(arg0, arg1, arg2, arg3) {
25318
25443
  let deferred0_0;
25319
25444
  let deferred0_1;
25320
25445
  try {
@@ -25326,7 +25451,7 @@ function __wbg_get_imports() {
25326
25451
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25327
25452
  }
25328
25453
  },
25329
- __wbg_removeNoteTag_8ae01f5c65dc9174: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
25454
+ __wbg_removeNoteTag_5bb25427e520f50b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
25330
25455
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
25331
25456
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
25332
25457
  let v1;
@@ -25347,7 +25472,7 @@ function __wbg_get_imports() {
25347
25472
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
25348
25473
  return ret;
25349
25474
  },
25350
- __wbg_removeSetting_5bec82500774f6cf: function(arg0, arg1, arg2, arg3) {
25475
+ __wbg_removeSetting_51d62e3d24593afc: function(arg0, arg1, arg2, arg3) {
25351
25476
  let deferred0_0;
25352
25477
  let deferred0_1;
25353
25478
  try {
@@ -25550,13 +25675,13 @@ function __wbg_get_imports() {
25550
25675
  const ret = TransactionSummary.__wrap(arg0);
25551
25676
  return ret;
25552
25677
  },
25553
- __wbg_undoAccountStates_b7f5bc8db7e5f7d9: function(arg0, arg1, arg2, arg3) {
25678
+ __wbg_undoAccountStates_b3c3c03f96aba29a: function(arg0, arg1, arg2, arg3) {
25554
25679
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
25555
25680
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
25556
25681
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
25557
25682
  return ret;
25558
25683
  },
25559
- __wbg_upsertAccountCode_2885d4bc1584e8e8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25684
+ __wbg_upsertAccountCode_a011479caf2f2773: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25560
25685
  let deferred0_0;
25561
25686
  let deferred0_1;
25562
25687
  try {
@@ -25570,7 +25695,7 @@ function __wbg_get_imports() {
25570
25695
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25571
25696
  }
25572
25697
  },
25573
- __wbg_upsertAccountRecord_c3aa685ee4dcc3de: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
25698
+ __wbg_upsertAccountRecord_313a9a93a9853a03: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
25574
25699
  let deferred0_0;
25575
25700
  let deferred0_1;
25576
25701
  let deferred1_0;
@@ -25612,7 +25737,7 @@ function __wbg_get_imports() {
25612
25737
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
25613
25738
  }
25614
25739
  },
25615
- __wbg_upsertAccountStorage_e482e77a7e281260: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25740
+ __wbg_upsertAccountStorage_ea6d136c93fbd28c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25616
25741
  let deferred0_0;
25617
25742
  let deferred0_1;
25618
25743
  try {
@@ -25626,7 +25751,7 @@ function __wbg_get_imports() {
25626
25751
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25627
25752
  }
25628
25753
  },
25629
- __wbg_upsertForeignAccountCode_9aa9b862b6a7e789: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
25754
+ __wbg_upsertForeignAccountCode_e9e22981c11ab8ec: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
25630
25755
  let deferred0_0;
25631
25756
  let deferred0_1;
25632
25757
  let deferred2_0;
@@ -25645,7 +25770,7 @@ function __wbg_get_imports() {
25645
25770
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
25646
25771
  }
25647
25772
  },
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) {
25773
+ __wbg_upsertInputNote_ef1243df774d4302: 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
25774
  let deferred0_0;
25650
25775
  let deferred0_1;
25651
25776
  let deferred6_0;
@@ -25694,7 +25819,7 @@ function __wbg_get_imports() {
25694
25819
  wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
25695
25820
  }
25696
25821
  },
25697
- __wbg_upsertNoteScript_7e9a616d8a143614: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25822
+ __wbg_upsertNoteScript_e9617c5e4fc75fb0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25698
25823
  let deferred0_0;
25699
25824
  let deferred0_1;
25700
25825
  try {
@@ -25708,7 +25833,7 @@ function __wbg_get_imports() {
25708
25833
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25709
25834
  }
25710
25835
  },
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) {
25836
+ __wbg_upsertOutputNote_656aa32b96217f2d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
25712
25837
  let deferred0_0;
25713
25838
  let deferred0_1;
25714
25839
  let deferred1_0;
@@ -25743,7 +25868,7 @@ function __wbg_get_imports() {
25743
25868
  wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
25744
25869
  }
25745
25870
  },
25746
- __wbg_upsertStorageMapEntries_82d953e23dee24ed: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25871
+ __wbg_upsertStorageMapEntries_91e646dab4d24d18: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25747
25872
  let deferred0_0;
25748
25873
  let deferred0_1;
25749
25874
  try {
@@ -25757,7 +25882,7 @@ function __wbg_get_imports() {
25757
25882
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25758
25883
  }
25759
25884
  },
25760
- __wbg_upsertTransactionRecord_24154d95069d63bd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
25885
+ __wbg_upsertTransactionRecord_e3f85f1b9f19136d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
25761
25886
  let deferred0_0;
25762
25887
  let deferred0_1;
25763
25888
  try {
@@ -25778,7 +25903,7 @@ function __wbg_get_imports() {
25778
25903
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
25779
25904
  }
25780
25905
  },
25781
- __wbg_upsertVaultAssets_e982e767b7e6001a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25906
+ __wbg_upsertVaultAssets_4ec8f231ecdc55e4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
25782
25907
  let deferred0_0;
25783
25908
  let deferred0_1;
25784
25909
  try {
@@ -25809,12 +25934,12 @@ function __wbg_get_imports() {
25809
25934
  return ret;
25810
25935
  },
25811
25936
  __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`.
25937
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 453, function: Function { arguments: [Externref], shim_idx: 815, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
25813
25938
  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
25939
  return ret;
25815
25940
  },
25816
25941
  __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`.
25942
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 453, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
25818
25943
  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
25944
  return ret;
25820
25945
  },
@@ -26760,5 +26885,5 @@ async function __wbg_init(module_or_path) {
26760
26885
  }
26761
26886
 
26762
26887
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
26763
- 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, sequentialSumBench, setupLogging , __wbg_init, module$1 as __wasm_url };
26764
- //# sourceMappingURL=Cargo-Cysp4vto.js.map
26888
+ 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, sequentialSumBench, setupLogging , __wbg_init, module$1 as __wasm_url };
26889
+ //# sourceMappingURL=Cargo-L_lPKfww.js.map