@miden-sdk/miden-sdk 0.14.1 → 0.14.3

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.
@@ -6644,46 +6644,54 @@ var cmp_1 = cmp;
6644
6644
 
6645
6645
  const { safeRe: re, t } = reExports;
6646
6646
 
6647
- class LRUCache {
6648
- constructor () {
6649
- this.max = 1000;
6650
- this.map = new Map();
6651
- }
6647
+ var lrucache;
6648
+ var hasRequiredLrucache;
6649
+
6650
+ function requireLrucache () {
6651
+ if (hasRequiredLrucache) return lrucache;
6652
+ hasRequiredLrucache = 1;
6653
+ class LRUCache {
6654
+ constructor () {
6655
+ this.max = 1000;
6656
+ this.map = new Map();
6657
+ }
6652
6658
 
6653
- get (key) {
6654
- const value = this.map.get(key);
6655
- if (value === undefined) {
6656
- return undefined
6657
- } else {
6658
- // Remove the key from the map and add it to the end
6659
- this.map.delete(key);
6660
- this.map.set(key, value);
6661
- return value
6662
- }
6663
- }
6659
+ get (key) {
6660
+ const value = this.map.get(key);
6661
+ if (value === undefined) {
6662
+ return undefined
6663
+ } else {
6664
+ // Remove the key from the map and add it to the end
6665
+ this.map.delete(key);
6666
+ this.map.set(key, value);
6667
+ return value
6668
+ }
6669
+ }
6664
6670
 
6665
- delete (key) {
6666
- return this.map.delete(key)
6667
- }
6671
+ delete (key) {
6672
+ return this.map.delete(key)
6673
+ }
6668
6674
 
6669
- set (key, value) {
6670
- const deleted = this.delete(key);
6675
+ set (key, value) {
6676
+ const deleted = this.delete(key);
6671
6677
 
6672
- if (!deleted && value !== undefined) {
6673
- // If cache is full, delete the least recently used item
6674
- if (this.map.size >= this.max) {
6675
- const firstKey = this.map.keys().next().value;
6676
- this.delete(firstKey);
6677
- }
6678
+ if (!deleted && value !== undefined) {
6679
+ // If cache is full, delete the least recently used item
6680
+ if (this.map.size >= this.max) {
6681
+ const firstKey = this.map.keys().next().value;
6682
+ this.delete(firstKey);
6683
+ }
6678
6684
 
6679
- this.map.set(key, value);
6680
- }
6685
+ this.map.set(key, value);
6686
+ }
6681
6687
 
6682
- return this
6683
- }
6684
- }
6688
+ return this
6689
+ }
6690
+ }
6685
6691
 
6686
- var lrucache = LRUCache;
6692
+ lrucache = LRUCache;
6693
+ return lrucache;
6694
+ }
6687
6695
 
6688
6696
  var range;
6689
6697
  var hasRequiredRange;
@@ -6905,7 +6913,7 @@ function requireRange () {
6905
6913
 
6906
6914
  range = Range;
6907
6915
 
6908
- const LRU = lrucache;
6916
+ const LRU = requireLrucache();
6909
6917
  const cache = new LRU();
6910
6918
 
6911
6919
  const parseOptions = parseOptions_1;
@@ -8758,12 +8766,40 @@ async function insertBlockHeader(dbId, blockNum, header, partialBlockchainPeaks,
8758
8766
  partialBlockchainPeaks,
8759
8767
  hasClientNotes: hasClientNotes.toString(),
8760
8768
  };
8761
- await db.blockHeaders.put(data);
8769
+ // Mirror SQLite's `insert_block_header_tx`: do an INSERT OR IGNORE on the
8770
+ // row, then explicitly upgrade `has_client_notes` to true if the caller
8771
+ // says so. Two callers hit this:
8772
+ // - Genesis flow — no existing row; the add succeeds.
8773
+ // - `get_and_store_authenticated_block` for a past block — a row
8774
+ // written by `applyStateSync` typically already exists. Overwriting
8775
+ // it would clobber the correct historical peaks (popcount ==
8776
+ // block_num) with peaks from the caller's current `PartialMmr`
8777
+ // forest (popcount == current sync height). Later reads of those
8778
+ // peaks trip `MmrPeaks::new`'s InvalidPeaks validation and wedge
8779
+ // sync for the rest of the session.
8780
+ //
8781
+ // The `has_client_notes` upgrade is load-bearing: `get_tracked_block_
8782
+ // header_numbers` filters by this flag to seed `tracked_leaves`, which
8783
+ // `get_partial_blockchain_nodes(Forest)` relies on. A private-note
8784
+ // import at a block previously synced as irrelevant must flip the flag
8785
+ // to true or the auth paths won't be tracked.
8786
+ await db.blockHeaders.add(data).catch(async (err) => {
8787
+ if (!isConstraintError(err))
8788
+ throw err;
8789
+ if (hasClientNotes) {
8790
+ await db.blockHeaders.update(blockNum, { hasClientNotes: "true" });
8791
+ }
8792
+ });
8762
8793
  }
8763
8794
  catch (err) {
8764
8795
  logWebStoreError(err);
8765
8796
  }
8766
8797
  }
8798
+ /** Detect Dexie's primary-key collision error across sync + bulk wrappings. */
8799
+ function isConstraintError(err) {
8800
+ const e = err;
8801
+ return e?.name === "ConstraintError" || e?.inner?.name === "ConstraintError";
8802
+ }
8767
8803
  async function insertPartialBlockchainNodes(dbId, ids, nodes) {
8768
8804
  try {
8769
8805
  const db = getDatabase(dbId);
@@ -22066,7 +22102,7 @@ function __wbg_get_imports() {
22066
22102
  const ret = AccountStorage.__wrap(arg0);
22067
22103
  return ret;
22068
22104
  },
22069
- __wbg_addNoteTag_63799a9478c87a90: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22105
+ __wbg_addNoteTag_11ef04a2021426ef: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22070
22106
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22071
22107
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22072
22108
  let v1;
@@ -22089,15 +22125,15 @@ function __wbg_get_imports() {
22089
22125
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
22090
22126
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
22091
22127
  }, arguments); },
22092
- __wbg_applyFullAccountState_f1ff4a1d13811963: function(arg0, arg1, arg2) {
22128
+ __wbg_applyFullAccountState_06104a9f7cd6301c: function(arg0, arg1, arg2) {
22093
22129
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
22094
22130
  return ret;
22095
22131
  },
22096
- __wbg_applyStateSync_24ad223fd10a4973: function(arg0, arg1, arg2) {
22132
+ __wbg_applyStateSync_f03ce7a14d83ae1a: function(arg0, arg1, arg2) {
22097
22133
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
22098
22134
  return ret;
22099
22135
  },
22100
- __wbg_applyTransactionDelta_6041c5f076d8405c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
22136
+ __wbg_applyTransactionDelta_45aa0540549a17a5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
22101
22137
  let deferred0_0;
22102
22138
  let deferred0_1;
22103
22139
  let deferred1_0;
@@ -22232,7 +22268,7 @@ function __wbg_get_imports() {
22232
22268
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22233
22269
  }
22234
22270
  },
22235
- __wbg_exportStore_961eb403ce6401e7: function(arg0, arg1) {
22271
+ __wbg_exportStore_1d052c59453b2e6b: function(arg0, arg1) {
22236
22272
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
22237
22273
  return ret;
22238
22274
  },
@@ -22264,7 +22300,7 @@ function __wbg_get_imports() {
22264
22300
  const ret = FetchedNote.__wrap(arg0);
22265
22301
  return ret;
22266
22302
  },
22267
- __wbg_forceImportStore_7ec9187226bc64a6: function(arg0, arg1, arg2) {
22303
+ __wbg_forceImportStore_40b29b3a8e166d8f: function(arg0, arg1, arg2) {
22268
22304
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
22269
22305
  return ret;
22270
22306
  },
@@ -22284,7 +22320,7 @@ function __wbg_get_imports() {
22284
22320
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
22285
22321
  return ret;
22286
22322
  },
22287
- __wbg_getAccountAddresses_ce9cbae0dbe8d488: function(arg0, arg1, arg2, arg3) {
22323
+ __wbg_getAccountAddresses_926ab3560c2a9431: function(arg0, arg1, arg2, arg3) {
22288
22324
  let deferred0_0;
22289
22325
  let deferred0_1;
22290
22326
  try {
@@ -22296,7 +22332,7 @@ function __wbg_get_imports() {
22296
22332
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22297
22333
  }
22298
22334
  },
22299
- __wbg_getAccountAuthByPubKeyCommitment_9108bcc540b259f8: function(arg0, arg1, arg2, arg3) {
22335
+ __wbg_getAccountAuthByPubKeyCommitment_6180aad0a5b10e89: function(arg0, arg1, arg2, arg3) {
22300
22336
  let deferred0_0;
22301
22337
  let deferred0_1;
22302
22338
  try {
@@ -22308,7 +22344,7 @@ function __wbg_get_imports() {
22308
22344
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22309
22345
  }
22310
22346
  },
22311
- __wbg_getAccountCode_d6a66dc4c8bcd0fb: function(arg0, arg1, arg2, arg3) {
22347
+ __wbg_getAccountCode_7282ed4c1b060f31: function(arg0, arg1, arg2, arg3) {
22312
22348
  let deferred0_0;
22313
22349
  let deferred0_1;
22314
22350
  try {
@@ -22320,7 +22356,7 @@ function __wbg_get_imports() {
22320
22356
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22321
22357
  }
22322
22358
  },
22323
- __wbg_getAccountHeaderByCommitment_5a38a4f46714ab0c: function(arg0, arg1, arg2, arg3) {
22359
+ __wbg_getAccountHeaderByCommitment_c7ead40688213791: function(arg0, arg1, arg2, arg3) {
22324
22360
  let deferred0_0;
22325
22361
  let deferred0_1;
22326
22362
  try {
@@ -22332,7 +22368,7 @@ function __wbg_get_imports() {
22332
22368
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22333
22369
  }
22334
22370
  },
22335
- __wbg_getAccountHeader_2fc7d24bb322f741: function(arg0, arg1, arg2, arg3) {
22371
+ __wbg_getAccountHeader_33832f0bcfdb6862: function(arg0, arg1, arg2, arg3) {
22336
22372
  let deferred0_0;
22337
22373
  let deferred0_1;
22338
22374
  try {
@@ -22344,7 +22380,7 @@ function __wbg_get_imports() {
22344
22380
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22345
22381
  }
22346
22382
  },
22347
- __wbg_getAccountIdByKeyCommitment_cd45cb20eb4179c6: function(arg0, arg1, arg2, arg3) {
22383
+ __wbg_getAccountIdByKeyCommitment_c6133713d0d915a2: function(arg0, arg1, arg2, arg3) {
22348
22384
  let deferred0_0;
22349
22385
  let deferred0_1;
22350
22386
  try {
@@ -22356,11 +22392,11 @@ function __wbg_get_imports() {
22356
22392
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22357
22393
  }
22358
22394
  },
22359
- __wbg_getAccountIds_011f27983158f415: function(arg0, arg1) {
22395
+ __wbg_getAccountIds_cee939c57cc6b89e: function(arg0, arg1) {
22360
22396
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
22361
22397
  return ret;
22362
22398
  },
22363
- __wbg_getAccountStorageMaps_e66cd035c5bbb97b: function(arg0, arg1, arg2, arg3) {
22399
+ __wbg_getAccountStorageMaps_e0d0a1db17eec3dc: function(arg0, arg1, arg2, arg3) {
22364
22400
  let deferred0_0;
22365
22401
  let deferred0_1;
22366
22402
  try {
@@ -22372,7 +22408,7 @@ function __wbg_get_imports() {
22372
22408
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22373
22409
  }
22374
22410
  },
22375
- __wbg_getAccountStorage_ec182807a0c17c91: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22411
+ __wbg_getAccountStorage_c167b8bb7e6786e9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22376
22412
  let deferred0_0;
22377
22413
  let deferred0_1;
22378
22414
  try {
@@ -22386,7 +22422,7 @@ function __wbg_get_imports() {
22386
22422
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22387
22423
  }
22388
22424
  },
22389
- __wbg_getAccountVaultAssets_bccdee600be89096: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22425
+ __wbg_getAccountVaultAssets_deebdbadff97833e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22390
22426
  let deferred0_0;
22391
22427
  let deferred0_1;
22392
22428
  try {
@@ -22400,23 +22436,23 @@ function __wbg_get_imports() {
22400
22436
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22401
22437
  }
22402
22438
  },
22403
- __wbg_getAllAccountHeaders_74acd216317a5f87: function(arg0, arg1) {
22439
+ __wbg_getAllAccountHeaders_8ee29c6d72075e33: function(arg0, arg1) {
22404
22440
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
22405
22441
  return ret;
22406
22442
  },
22407
- __wbg_getBlockHeaders_05b30aae935a1a7d: function(arg0, arg1, arg2, arg3) {
22443
+ __wbg_getBlockHeaders_249b6687b100f621: function(arg0, arg1, arg2, arg3) {
22408
22444
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
22409
22445
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22410
22446
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
22411
22447
  return ret;
22412
22448
  },
22413
- __wbg_getForeignAccountCode_213f3c8e7e729c1a: function(arg0, arg1, arg2, arg3) {
22449
+ __wbg_getForeignAccountCode_5e4e8d9037c06238: function(arg0, arg1, arg2, arg3) {
22414
22450
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22415
22451
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22416
22452
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
22417
22453
  return ret;
22418
22454
  },
22419
- __wbg_getInputNoteByOffset_0bee418c75072b27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22455
+ __wbg_getInputNoteByOffset_a6c99499b09a1b98: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22420
22456
  let deferred1_0;
22421
22457
  let deferred1_1;
22422
22458
  try {
@@ -22430,25 +22466,25 @@ function __wbg_get_imports() {
22430
22466
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22431
22467
  }
22432
22468
  },
22433
- __wbg_getInputNotesFromIds_721daab430964ba8: function(arg0, arg1, arg2, arg3) {
22469
+ __wbg_getInputNotesFromIds_f17b728faada1f3c: function(arg0, arg1, arg2, arg3) {
22434
22470
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22435
22471
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22436
22472
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22437
22473
  return ret;
22438
22474
  },
22439
- __wbg_getInputNotesFromNullifiers_f3bab786cefda999: function(arg0, arg1, arg2, arg3) {
22475
+ __wbg_getInputNotesFromNullifiers_f562e855551c6d5d: function(arg0, arg1, arg2, arg3) {
22440
22476
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22441
22477
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22442
22478
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22443
22479
  return ret;
22444
22480
  },
22445
- __wbg_getInputNotes_eb7302d670b898b8: function(arg0, arg1, arg2, arg3) {
22481
+ __wbg_getInputNotes_3678c3a165fe6fb7: function(arg0, arg1, arg2, arg3) {
22446
22482
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22447
22483
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22448
22484
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
22449
22485
  return ret;
22450
22486
  },
22451
- __wbg_getKeyCommitmentsByAccountId_39dba15570f24593: function(arg0, arg1, arg2, arg3) {
22487
+ __wbg_getKeyCommitmentsByAccountId_62a1ded159bb6e85: function(arg0, arg1, arg2, arg3) {
22452
22488
  let deferred0_0;
22453
22489
  let deferred0_1;
22454
22490
  try {
@@ -22460,7 +22496,7 @@ function __wbg_get_imports() {
22460
22496
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22461
22497
  }
22462
22498
  },
22463
- __wbg_getNoteScript_efda320e2c0fccf7: function(arg0, arg1, arg2, arg3) {
22499
+ __wbg_getNoteScript_61487cdb7895a70f: function(arg0, arg1, arg2, arg3) {
22464
22500
  let deferred0_0;
22465
22501
  let deferred0_1;
22466
22502
  try {
@@ -22472,33 +22508,33 @@ function __wbg_get_imports() {
22472
22508
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22473
22509
  }
22474
22510
  },
22475
- __wbg_getNoteTags_d6b8022f9b4859e8: function(arg0, arg1) {
22511
+ __wbg_getNoteTags_0c26db177ae89c88: function(arg0, arg1) {
22476
22512
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
22477
22513
  return ret;
22478
22514
  },
22479
- __wbg_getOutputNotesFromIds_fa5c634a82cd6bff: function(arg0, arg1, arg2, arg3) {
22515
+ __wbg_getOutputNotesFromIds_9051d7dc5189798a: function(arg0, arg1, arg2, arg3) {
22480
22516
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22481
22517
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22482
22518
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22483
22519
  return ret;
22484
22520
  },
22485
- __wbg_getOutputNotesFromNullifiers_91fb57f239d4ca70: function(arg0, arg1, arg2, arg3) {
22521
+ __wbg_getOutputNotesFromNullifiers_1e5c4da17a47cf06: function(arg0, arg1, arg2, arg3) {
22486
22522
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22487
22523
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22488
22524
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22489
22525
  return ret;
22490
22526
  },
22491
- __wbg_getOutputNotes_a1065157d0831b01: function(arg0, arg1, arg2, arg3) {
22527
+ __wbg_getOutputNotes_9e17595e613f9c01: function(arg0, arg1, arg2, arg3) {
22492
22528
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22493
22529
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22494
22530
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
22495
22531
  return ret;
22496
22532
  },
22497
- __wbg_getPartialBlockchainNodesAll_ddea8ea03a56c531: function(arg0, arg1) {
22533
+ __wbg_getPartialBlockchainNodesAll_9014a51f02bbd53d: function(arg0, arg1) {
22498
22534
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
22499
22535
  return ret;
22500
22536
  },
22501
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_959b31301df8c438: function(arg0, arg1, arg2, arg3) {
22537
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_0254610e7caf6ed7: function(arg0, arg1, arg2, arg3) {
22502
22538
  let deferred0_0;
22503
22539
  let deferred0_1;
22504
22540
  try {
@@ -22510,13 +22546,13 @@ function __wbg_get_imports() {
22510
22546
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22511
22547
  }
22512
22548
  },
22513
- __wbg_getPartialBlockchainNodes_09bd2967864c4c45: function(arg0, arg1, arg2, arg3) {
22549
+ __wbg_getPartialBlockchainNodes_216afeff33c3f62a: function(arg0, arg1, arg2, arg3) {
22514
22550
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22515
22551
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22516
22552
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
22517
22553
  return ret;
22518
22554
  },
22519
- __wbg_getPartialBlockchainPeaksByBlockNum_b5b9e95f32003e32: function(arg0, arg1, arg2) {
22555
+ __wbg_getPartialBlockchainPeaksByBlockNum_1d5f843144fafd89: function(arg0, arg1, arg2) {
22520
22556
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
22521
22557
  return ret;
22522
22558
  },
@@ -22527,7 +22563,7 @@ function __wbg_get_imports() {
22527
22563
  const ret = arg0.getReader();
22528
22564
  return ret;
22529
22565
  }, arguments); },
22530
- __wbg_getSetting_ba46bcae2e2b7d6c: function(arg0, arg1, arg2, arg3) {
22566
+ __wbg_getSetting_6042192ea6a1bf9d: function(arg0, arg1, arg2, arg3) {
22531
22567
  let deferred0_0;
22532
22568
  let deferred0_1;
22533
22569
  try {
@@ -22539,7 +22575,7 @@ function __wbg_get_imports() {
22539
22575
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22540
22576
  }
22541
22577
  },
22542
- __wbg_getSyncHeight_b986a41f20a4c60f: function(arg0, arg1) {
22578
+ __wbg_getSyncHeight_e6eb57509633e416: function(arg0, arg1) {
22543
22579
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
22544
22580
  return ret;
22545
22581
  },
@@ -22547,15 +22583,15 @@ function __wbg_get_imports() {
22547
22583
  const ret = arg0.getTime();
22548
22584
  return ret;
22549
22585
  },
22550
- __wbg_getTrackedBlockHeaderNumbers_13758201e4acf879: function(arg0, arg1) {
22586
+ __wbg_getTrackedBlockHeaderNumbers_10c6744062bd7dbd: function(arg0, arg1) {
22551
22587
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
22552
22588
  return ret;
22553
22589
  },
22554
- __wbg_getTrackedBlockHeaders_e01f9f3411d5db34: function(arg0, arg1) {
22590
+ __wbg_getTrackedBlockHeaders_95c6dcc2ffd76496: function(arg0, arg1) {
22555
22591
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
22556
22592
  return ret;
22557
22593
  },
22558
- __wbg_getTransactions_39cdbadf132e2cbd: function(arg0, arg1, arg2, arg3) {
22594
+ __wbg_getTransactions_5bae4cee1f2f5d61: function(arg0, arg1, arg2, arg3) {
22559
22595
  let deferred0_0;
22560
22596
  let deferred0_1;
22561
22597
  try {
@@ -22567,7 +22603,7 @@ function __wbg_get_imports() {
22567
22603
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22568
22604
  }
22569
22605
  },
22570
- __wbg_getUnspentInputNoteNullifiers_454a694b1712e5cb: function(arg0, arg1) {
22606
+ __wbg_getUnspentInputNoteNullifiers_c8d95cbd1b29253b: function(arg0, arg1) {
22571
22607
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
22572
22608
  return ret;
22573
22609
  },
@@ -22611,7 +22647,7 @@ function __wbg_get_imports() {
22611
22647
  const ret = InputNoteRecord.__wrap(arg0);
22612
22648
  return ret;
22613
22649
  },
22614
- __wbg_insertAccountAddress_964930c0efd3f292: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22650
+ __wbg_insertAccountAddress_de3f0be5aade3edb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22615
22651
  let deferred0_0;
22616
22652
  let deferred0_1;
22617
22653
  try {
@@ -22625,7 +22661,7 @@ function __wbg_get_imports() {
22625
22661
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22626
22662
  }
22627
22663
  },
22628
- __wbg_insertAccountAuth_15db742f3171bda3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22664
+ __wbg_insertAccountAuth_8d37e0d14f5d22b1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22629
22665
  let deferred0_0;
22630
22666
  let deferred0_1;
22631
22667
  let deferred1_0;
@@ -22642,7 +22678,7 @@ function __wbg_get_imports() {
22642
22678
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22643
22679
  }
22644
22680
  },
22645
- __wbg_insertAccountKeyMapping_9c49660f1ec7399f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22681
+ __wbg_insertAccountKeyMapping_1e78156f0d9819cc: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22646
22682
  let deferred0_0;
22647
22683
  let deferred0_1;
22648
22684
  let deferred1_0;
@@ -22659,7 +22695,7 @@ function __wbg_get_imports() {
22659
22695
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22660
22696
  }
22661
22697
  },
22662
- __wbg_insertBlockHeader_060e7f46d4ec35e7: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22698
+ __wbg_insertBlockHeader_b2f6b48025b26202: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22663
22699
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
22664
22700
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
22665
22701
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -22667,7 +22703,7 @@ function __wbg_get_imports() {
22667
22703
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
22668
22704
  return ret;
22669
22705
  },
22670
- __wbg_insertPartialBlockchainNodes_04f374dbb1ca7e77: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22706
+ __wbg_insertPartialBlockchainNodes_b3da456780837be0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22671
22707
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22672
22708
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22673
22709
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -22675,7 +22711,7 @@ function __wbg_get_imports() {
22675
22711
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
22676
22712
  return ret;
22677
22713
  },
22678
- __wbg_insertSetting_e8fb47c1a72a54c4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22714
+ __wbg_insertSetting_327278750a8e8389: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22679
22715
  let deferred0_0;
22680
22716
  let deferred0_1;
22681
22717
  try {
@@ -22689,7 +22725,7 @@ function __wbg_get_imports() {
22689
22725
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22690
22726
  }
22691
22727
  },
22692
- __wbg_insertTransactionScript_ba6a81a76d47a2d3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22728
+ __wbg_insertTransactionScript_4289837b45dd2e6b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22693
22729
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22694
22730
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22695
22731
  let v1;
@@ -22782,11 +22818,11 @@ function __wbg_get_imports() {
22782
22818
  const ret = arg0.length;
22783
22819
  return ret;
22784
22820
  },
22785
- __wbg_listSettingKeys_bd877420952aabcf: function(arg0, arg1) {
22821
+ __wbg_listSettingKeys_c697458b11d26274: function(arg0, arg1) {
22786
22822
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
22787
22823
  return ret;
22788
22824
  },
22789
- __wbg_lockAccount_b4469b288371ce1b: function(arg0, arg1, arg2, arg3) {
22825
+ __wbg_lockAccount_7e4b2eaef4b9c0ae: function(arg0, arg1, arg2, arg3) {
22790
22826
  let deferred0_0;
22791
22827
  let deferred0_1;
22792
22828
  try {
@@ -22870,7 +22906,7 @@ function __wbg_get_imports() {
22870
22906
  const a = state0.a;
22871
22907
  state0.a = 0;
22872
22908
  try {
22873
- return wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(a, state0.b, arg0, arg1);
22909
+ return wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(a, state0.b, arg0, arg1);
22874
22910
  } finally {
22875
22911
  state0.a = a;
22876
22912
  }
@@ -22977,7 +23013,7 @@ function __wbg_get_imports() {
22977
23013
  const ret = NoteTag.__unwrap(arg0);
22978
23014
  return ret;
22979
23015
  },
22980
- __wbg_openDatabase_2b359f6f1c11112f: function(arg0, arg1, arg2, arg3) {
23016
+ __wbg_openDatabase_f82f982d13ff7823: function(arg0, arg1, arg2, arg3) {
22981
23017
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
22982
23018
  return ret;
22983
23019
  },
@@ -23008,7 +23044,7 @@ function __wbg_get_imports() {
23008
23044
  const ret = ProvenTransaction.__wrap(arg0);
23009
23045
  return ret;
23010
23046
  },
23011
- __wbg_pruneAccountHistory_f6d2c239f5188516: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23047
+ __wbg_pruneAccountHistory_17467a4cfcb3099b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23012
23048
  let deferred0_0;
23013
23049
  let deferred0_1;
23014
23050
  let deferred1_0;
@@ -23025,7 +23061,7 @@ function __wbg_get_imports() {
23025
23061
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23026
23062
  }
23027
23063
  },
23028
- __wbg_pruneIrrelevantBlocks_2634ac68b91e6214: function(arg0, arg1) {
23064
+ __wbg_pruneIrrelevantBlocks_2fe3ae3b6757dae5: function(arg0, arg1) {
23029
23065
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
23030
23066
  return ret;
23031
23067
  },
@@ -23043,13 +23079,13 @@ function __wbg_get_imports() {
23043
23079
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
23044
23080
  arg0.releaseLock();
23045
23081
  },
23046
- __wbg_removeAccountAddress_9378ec2111cfd073: function(arg0, arg1, arg2, arg3) {
23082
+ __wbg_removeAccountAddress_a099b08cd765b1fe: function(arg0, arg1, arg2, arg3) {
23047
23083
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23048
23084
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23049
23085
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
23050
23086
  return ret;
23051
23087
  },
23052
- __wbg_removeAccountAuth_1b38ce482f3a2a01: function(arg0, arg1, arg2, arg3) {
23088
+ __wbg_removeAccountAuth_c3eba3ecad64781a: function(arg0, arg1, arg2, arg3) {
23053
23089
  let deferred0_0;
23054
23090
  let deferred0_1;
23055
23091
  try {
@@ -23061,7 +23097,7 @@ function __wbg_get_imports() {
23061
23097
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23062
23098
  }
23063
23099
  },
23064
- __wbg_removeAllMappingsForKey_8e731aa44d99defa: function(arg0, arg1, arg2, arg3) {
23100
+ __wbg_removeAllMappingsForKey_c1d444d71e38a4b4: function(arg0, arg1, arg2, arg3) {
23065
23101
  let deferred0_0;
23066
23102
  let deferred0_1;
23067
23103
  try {
@@ -23073,7 +23109,7 @@ function __wbg_get_imports() {
23073
23109
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23074
23110
  }
23075
23111
  },
23076
- __wbg_removeNoteTag_66b88893678278ff: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23112
+ __wbg_removeNoteTag_07746f6aa221d3c6: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23077
23113
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23078
23114
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23079
23115
  let v1;
@@ -23089,7 +23125,7 @@ function __wbg_get_imports() {
23089
23125
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
23090
23126
  return ret;
23091
23127
  },
23092
- __wbg_removeSetting_09bade6bd24dd314: function(arg0, arg1, arg2, arg3) {
23128
+ __wbg_removeSetting_ed28cefbd3c96fdb: function(arg0, arg1, arg2, arg3) {
23093
23129
  let deferred0_0;
23094
23130
  let deferred0_1;
23095
23131
  try {
@@ -23281,13 +23317,13 @@ function __wbg_get_imports() {
23281
23317
  const ret = TransactionSummary.__wrap(arg0);
23282
23318
  return ret;
23283
23319
  },
23284
- __wbg_undoAccountStates_a9bb97fcb6ee8a5b: function(arg0, arg1, arg2, arg3) {
23320
+ __wbg_undoAccountStates_f537fe1c071a86ac: function(arg0, arg1, arg2, arg3) {
23285
23321
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23286
23322
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23287
23323
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
23288
23324
  return ret;
23289
23325
  },
23290
- __wbg_upsertAccountCode_9f6c4b97ffdc2a70: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23326
+ __wbg_upsertAccountCode_cc05c6891e7d67cc: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23291
23327
  let deferred0_0;
23292
23328
  let deferred0_1;
23293
23329
  try {
@@ -23301,7 +23337,7 @@ function __wbg_get_imports() {
23301
23337
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23302
23338
  }
23303
23339
  },
23304
- __wbg_upsertAccountRecord_871acd6aa086e68f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23340
+ __wbg_upsertAccountRecord_cf92f5b6aa4078a0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23305
23341
  let deferred0_0;
23306
23342
  let deferred0_1;
23307
23343
  let deferred1_0;
@@ -23343,7 +23379,7 @@ function __wbg_get_imports() {
23343
23379
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
23344
23380
  }
23345
23381
  },
23346
- __wbg_upsertAccountStorage_a50e64183e253d97: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23382
+ __wbg_upsertAccountStorage_8afbfc3a0abe8fb8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23347
23383
  let deferred0_0;
23348
23384
  let deferred0_1;
23349
23385
  try {
@@ -23357,7 +23393,7 @@ function __wbg_get_imports() {
23357
23393
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23358
23394
  }
23359
23395
  },
23360
- __wbg_upsertForeignAccountCode_9e93abdae6f4c0c7: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23396
+ __wbg_upsertForeignAccountCode_84c9acf06fa513ab: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23361
23397
  let deferred0_0;
23362
23398
  let deferred0_1;
23363
23399
  let deferred2_0;
@@ -23376,7 +23412,7 @@ function __wbg_get_imports() {
23376
23412
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23377
23413
  }
23378
23414
  },
23379
- __wbg_upsertInputNote_ebefca636604089b: 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) {
23415
+ __wbg_upsertInputNote_f2059d78cbceeb16: 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) {
23380
23416
  let deferred0_0;
23381
23417
  let deferred0_1;
23382
23418
  let deferred4_0;
@@ -23418,7 +23454,7 @@ function __wbg_get_imports() {
23418
23454
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
23419
23455
  }
23420
23456
  },
23421
- __wbg_upsertNoteScript_19e8fc1a041edf85: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23457
+ __wbg_upsertNoteScript_64659c0e516bb6eb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23422
23458
  let deferred0_0;
23423
23459
  let deferred0_1;
23424
23460
  try {
@@ -23432,7 +23468,7 @@ function __wbg_get_imports() {
23432
23468
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23433
23469
  }
23434
23470
  },
23435
- __wbg_upsertOutputNote_fc6f81a8309ef41b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23471
+ __wbg_upsertOutputNote_5b4fc218cd85a558: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23436
23472
  let deferred0_0;
23437
23473
  let deferred0_1;
23438
23474
  let deferred2_0;
@@ -23460,7 +23496,7 @@ function __wbg_get_imports() {
23460
23496
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23461
23497
  }
23462
23498
  },
23463
- __wbg_upsertStorageMapEntries_a39827348033fe1a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23499
+ __wbg_upsertStorageMapEntries_78d89c536a6ba418: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23464
23500
  let deferred0_0;
23465
23501
  let deferred0_1;
23466
23502
  try {
@@ -23474,7 +23510,7 @@ function __wbg_get_imports() {
23474
23510
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23475
23511
  }
23476
23512
  },
23477
- __wbg_upsertTransactionRecord_01aaa20c21552b32: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23513
+ __wbg_upsertTransactionRecord_fb53cbffc8f38bd3: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23478
23514
  let deferred0_0;
23479
23515
  let deferred0_1;
23480
23516
  try {
@@ -23495,7 +23531,7 @@ function __wbg_get_imports() {
23495
23531
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23496
23532
  }
23497
23533
  },
23498
- __wbg_upsertVaultAssets_fa65d63a2d8af8de: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23534
+ __wbg_upsertVaultAssets_7369708ff470bcda: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23499
23535
  let deferred0_0;
23500
23536
  let deferred0_1;
23501
23537
  try {
@@ -23526,13 +23562,13 @@ function __wbg_get_imports() {
23526
23562
  return ret;
23527
23563
  },
23528
23564
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
23529
- // Cast intrinsic for `Closure(Closure { dtor_idx: 373, function: Function { arguments: [Externref], shim_idx: 695, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23530
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h391391dffb6a09df, wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2);
23565
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 354, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23566
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a);
23531
23567
  return ret;
23532
23568
  },
23533
23569
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
23534
- // Cast intrinsic for `Closure(Closure { dtor_idx: 373, function: Function { arguments: [], shim_idx: 374, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23535
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h391391dffb6a09df, wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864);
23570
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 354, function: Function { arguments: [], shim_idx: 355, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23571
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9);
23536
23572
  return ret;
23537
23573
  },
23538
23574
  __wbindgen_cast_0000000000000003: function(arg0) {
@@ -23636,16 +23672,16 @@ function __wbg_get_imports() {
23636
23672
  };
23637
23673
  }
23638
23674
 
23639
- function wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864(arg0, arg1) {
23640
- wasm.wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864(arg0, arg1);
23675
+ function wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1) {
23676
+ wasm.wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1);
23641
23677
  }
23642
23678
 
23643
- function wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2(arg0, arg1, arg2) {
23644
- wasm.wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2(arg0, arg1, arg2);
23679
+ function wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2) {
23680
+ wasm.wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2);
23645
23681
  }
23646
23682
 
23647
- function wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(arg0, arg1, arg2, arg3) {
23648
- wasm.wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(arg0, arg1, arg2, arg3);
23683
+ function wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3) {
23684
+ wasm.wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3);
23649
23685
  }
23650
23686
 
23651
23687
 
@@ -24448,4 +24484,4 @@ async function __wbg_init(module_or_path) {
24448
24484
 
24449
24485
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
24450
24486
  export { Account, AccountArray, AccountBuilder, AccountBuilderResult, AccountCode, AccountComponent, AccountComponentCode, AccountDelta, AccountFile, AccountHeader, AccountId, AccountIdArray, AccountInterface, AccountProof, AccountReader, AccountStatus, AccountStorage, AccountStorageDelta, AccountStorageMode, AccountStorageRequirements, AccountType, AccountVaultDelta, Address, AdviceInputs, AdviceMap, AssetVault, AuthFalcon512RpoMultisigConfig, AuthScheme, AuthSecretKey, BasicFungibleFaucetComponent, BlockHeader, CodeBuilder, CommittedNote, ConsumableNoteRecord, Endpoint, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkId, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, NoteAttachmentKind, NoteAttachmentScheme, NoteConsumability, NoteConsumptionStatus, NoteDetails, NoteDetailsAndTag, NoteDetailsAndTagArray, NoteExecutionHint, NoteExportFormat, NoteFile, NoteFilter, NoteFilterTypes, NoteHeader, NoteId, NoteIdAndArgs, NoteIdAndArgsArray, NoteInclusionProof, NoteLocation, NoteMetadata, NoteRecipient, NoteRecipientArray, NoteScript, NoteStorage, NoteSyncBlock, NoteSyncInfo, NoteTag, NoteType, OutputNote, OutputNoteArray, OutputNoteRecord, OutputNoteState, OutputNotes, Package, PartialNote, Poseidon2, ProcedureThreshold, Program, ProvenTransaction, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, StorageMapInfo, StorageMapUpdate, StorageSlot, StorageSlotArray, SyncSummary, TestUtils, TokenSymbol, TransactionArgs, TransactionFilter, TransactionId, TransactionProver, TransactionRecord, TransactionRequest, TransactionRequestBuilder, TransactionResult, TransactionScript, TransactionScriptInputPair, TransactionScriptInputPairArray, TransactionStatus, TransactionStoreUpdate, TransactionSummary, WebClient, WebKeystoreApi, Word, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, setupLogging , __wbg_init, module$1 as __wasm_url };
24451
- //# sourceMappingURL=Cargo-BZOulF0S.js.map
24487
+ //# sourceMappingURL=Cargo-DanGI-a8.js.map