@miden-sdk/miden-sdk 0.14.0 → 0.14.1

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,55 +6644,47 @@ var cmp_1 = cmp;
6644
6644
 
6645
6645
  const { safeRe: re, t } = reExports;
6646
6646
 
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
- }
6647
+ class LRUCache {
6648
+ constructor () {
6649
+ this.max = 1000;
6650
+ this.map = new Map();
6651
+ }
6658
6652
 
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
- }
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
+ }
6670
6664
 
6671
- delete (key) {
6672
- return this.map.delete(key)
6673
- }
6665
+ delete (key) {
6666
+ return this.map.delete(key)
6667
+ }
6674
6668
 
6675
- set (key, value) {
6676
- const deleted = this.delete(key);
6669
+ set (key, value) {
6670
+ const deleted = this.delete(key);
6677
6671
 
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
- }
6684
-
6685
- this.map.set(key, value);
6686
- }
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
+ }
6687
6678
 
6688
- return this
6689
- }
6690
- }
6679
+ this.map.set(key, value);
6680
+ }
6691
6681
 
6692
- lrucache = LRUCache;
6693
- return lrucache;
6682
+ return this
6683
+ }
6694
6684
  }
6695
6685
 
6686
+ var lrucache = LRUCache;
6687
+
6696
6688
  var range;
6697
6689
  var hasRequiredRange;
6698
6690
 
@@ -6913,7 +6905,7 @@ function requireRange () {
6913
6905
 
6914
6906
  range = Range;
6915
6907
 
6916
- const LRU = requireLrucache();
6908
+ const LRU = lrucache;
6917
6909
  const cache = new LRU();
6918
6910
 
6919
6911
  const parseOptions = parseOptions_1;
@@ -22074,7 +22066,7 @@ function __wbg_get_imports() {
22074
22066
  const ret = AccountStorage.__wrap(arg0);
22075
22067
  return ret;
22076
22068
  },
22077
- __wbg_addNoteTag_73f23a831a6e3b6a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22069
+ __wbg_addNoteTag_63799a9478c87a90: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22078
22070
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22079
22071
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22080
22072
  let v1;
@@ -22097,15 +22089,15 @@ function __wbg_get_imports() {
22097
22089
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
22098
22090
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
22099
22091
  }, arguments); },
22100
- __wbg_applyFullAccountState_0d845d902fcf8977: function(arg0, arg1, arg2) {
22092
+ __wbg_applyFullAccountState_f1ff4a1d13811963: function(arg0, arg1, arg2) {
22101
22093
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
22102
22094
  return ret;
22103
22095
  },
22104
- __wbg_applyStateSync_1bcd5a63e003b122: function(arg0, arg1, arg2) {
22096
+ __wbg_applyStateSync_24ad223fd10a4973: function(arg0, arg1, arg2) {
22105
22097
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
22106
22098
  return ret;
22107
22099
  },
22108
- __wbg_applyTransactionDelta_e3969ada5c15edfa: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
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) {
22109
22101
  let deferred0_0;
22110
22102
  let deferred0_1;
22111
22103
  let deferred1_0;
@@ -22240,7 +22232,7 @@ function __wbg_get_imports() {
22240
22232
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22241
22233
  }
22242
22234
  },
22243
- __wbg_exportStore_67cb33e10694e807: function(arg0, arg1) {
22235
+ __wbg_exportStore_961eb403ce6401e7: function(arg0, arg1) {
22244
22236
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
22245
22237
  return ret;
22246
22238
  },
@@ -22272,7 +22264,7 @@ function __wbg_get_imports() {
22272
22264
  const ret = FetchedNote.__wrap(arg0);
22273
22265
  return ret;
22274
22266
  },
22275
- __wbg_forceImportStore_680f1469df7413c7: function(arg0, arg1, arg2) {
22267
+ __wbg_forceImportStore_7ec9187226bc64a6: function(arg0, arg1, arg2) {
22276
22268
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
22277
22269
  return ret;
22278
22270
  },
@@ -22292,7 +22284,7 @@ function __wbg_get_imports() {
22292
22284
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
22293
22285
  return ret;
22294
22286
  },
22295
- __wbg_getAccountAddresses_8baffdc3eeb998cf: function(arg0, arg1, arg2, arg3) {
22287
+ __wbg_getAccountAddresses_ce9cbae0dbe8d488: function(arg0, arg1, arg2, arg3) {
22296
22288
  let deferred0_0;
22297
22289
  let deferred0_1;
22298
22290
  try {
@@ -22304,7 +22296,7 @@ function __wbg_get_imports() {
22304
22296
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22305
22297
  }
22306
22298
  },
22307
- __wbg_getAccountAuthByPubKeyCommitment_e43b4fa523c75690: function(arg0, arg1, arg2, arg3) {
22299
+ __wbg_getAccountAuthByPubKeyCommitment_9108bcc540b259f8: function(arg0, arg1, arg2, arg3) {
22308
22300
  let deferred0_0;
22309
22301
  let deferred0_1;
22310
22302
  try {
@@ -22316,7 +22308,7 @@ function __wbg_get_imports() {
22316
22308
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22317
22309
  }
22318
22310
  },
22319
- __wbg_getAccountCode_2c01e0b1d6e4c0c4: function(arg0, arg1, arg2, arg3) {
22311
+ __wbg_getAccountCode_d6a66dc4c8bcd0fb: function(arg0, arg1, arg2, arg3) {
22320
22312
  let deferred0_0;
22321
22313
  let deferred0_1;
22322
22314
  try {
@@ -22328,7 +22320,7 @@ function __wbg_get_imports() {
22328
22320
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22329
22321
  }
22330
22322
  },
22331
- __wbg_getAccountHeaderByCommitment_1937c881a4ffe36d: function(arg0, arg1, arg2, arg3) {
22323
+ __wbg_getAccountHeaderByCommitment_5a38a4f46714ab0c: function(arg0, arg1, arg2, arg3) {
22332
22324
  let deferred0_0;
22333
22325
  let deferred0_1;
22334
22326
  try {
@@ -22340,7 +22332,7 @@ function __wbg_get_imports() {
22340
22332
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22341
22333
  }
22342
22334
  },
22343
- __wbg_getAccountHeader_31cd380543ca54bb: function(arg0, arg1, arg2, arg3) {
22335
+ __wbg_getAccountHeader_2fc7d24bb322f741: function(arg0, arg1, arg2, arg3) {
22344
22336
  let deferred0_0;
22345
22337
  let deferred0_1;
22346
22338
  try {
@@ -22352,7 +22344,7 @@ function __wbg_get_imports() {
22352
22344
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22353
22345
  }
22354
22346
  },
22355
- __wbg_getAccountIdByKeyCommitment_7e1627233d417ef0: function(arg0, arg1, arg2, arg3) {
22347
+ __wbg_getAccountIdByKeyCommitment_cd45cb20eb4179c6: function(arg0, arg1, arg2, arg3) {
22356
22348
  let deferred0_0;
22357
22349
  let deferred0_1;
22358
22350
  try {
@@ -22364,11 +22356,11 @@ function __wbg_get_imports() {
22364
22356
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22365
22357
  }
22366
22358
  },
22367
- __wbg_getAccountIds_880fce01ae9ed908: function(arg0, arg1) {
22359
+ __wbg_getAccountIds_011f27983158f415: function(arg0, arg1) {
22368
22360
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
22369
22361
  return ret;
22370
22362
  },
22371
- __wbg_getAccountStorageMaps_77f9e51e9f936384: function(arg0, arg1, arg2, arg3) {
22363
+ __wbg_getAccountStorageMaps_e66cd035c5bbb97b: function(arg0, arg1, arg2, arg3) {
22372
22364
  let deferred0_0;
22373
22365
  let deferred0_1;
22374
22366
  try {
@@ -22380,7 +22372,7 @@ function __wbg_get_imports() {
22380
22372
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22381
22373
  }
22382
22374
  },
22383
- __wbg_getAccountStorage_b81f8fc1f4174bf4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22375
+ __wbg_getAccountStorage_ec182807a0c17c91: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22384
22376
  let deferred0_0;
22385
22377
  let deferred0_1;
22386
22378
  try {
@@ -22394,7 +22386,7 @@ function __wbg_get_imports() {
22394
22386
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22395
22387
  }
22396
22388
  },
22397
- __wbg_getAccountVaultAssets_3aaa86634b9c362e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22389
+ __wbg_getAccountVaultAssets_bccdee600be89096: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22398
22390
  let deferred0_0;
22399
22391
  let deferred0_1;
22400
22392
  try {
@@ -22408,23 +22400,23 @@ function __wbg_get_imports() {
22408
22400
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22409
22401
  }
22410
22402
  },
22411
- __wbg_getAllAccountHeaders_de7adaa6ce6f8022: function(arg0, arg1) {
22403
+ __wbg_getAllAccountHeaders_74acd216317a5f87: function(arg0, arg1) {
22412
22404
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
22413
22405
  return ret;
22414
22406
  },
22415
- __wbg_getBlockHeaders_1a3602f84753a649: function(arg0, arg1, arg2, arg3) {
22407
+ __wbg_getBlockHeaders_05b30aae935a1a7d: function(arg0, arg1, arg2, arg3) {
22416
22408
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
22417
22409
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22418
22410
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
22419
22411
  return ret;
22420
22412
  },
22421
- __wbg_getForeignAccountCode_dcbbf63304933fb9: function(arg0, arg1, arg2, arg3) {
22413
+ __wbg_getForeignAccountCode_213f3c8e7e729c1a: function(arg0, arg1, arg2, arg3) {
22422
22414
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22423
22415
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22424
22416
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
22425
22417
  return ret;
22426
22418
  },
22427
- __wbg_getInputNoteByOffset_afd8189342d490ba: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22419
+ __wbg_getInputNoteByOffset_0bee418c75072b27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22428
22420
  let deferred1_0;
22429
22421
  let deferred1_1;
22430
22422
  try {
@@ -22438,25 +22430,25 @@ function __wbg_get_imports() {
22438
22430
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22439
22431
  }
22440
22432
  },
22441
- __wbg_getInputNotesFromIds_e24a7b2888455307: function(arg0, arg1, arg2, arg3) {
22433
+ __wbg_getInputNotesFromIds_721daab430964ba8: function(arg0, arg1, arg2, arg3) {
22442
22434
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22443
22435
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22444
22436
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22445
22437
  return ret;
22446
22438
  },
22447
- __wbg_getInputNotesFromNullifiers_96cb2e010b7806d6: function(arg0, arg1, arg2, arg3) {
22439
+ __wbg_getInputNotesFromNullifiers_f3bab786cefda999: function(arg0, arg1, arg2, arg3) {
22448
22440
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22449
22441
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22450
22442
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22451
22443
  return ret;
22452
22444
  },
22453
- __wbg_getInputNotes_51ceedc136efe8a5: function(arg0, arg1, arg2, arg3) {
22445
+ __wbg_getInputNotes_eb7302d670b898b8: function(arg0, arg1, arg2, arg3) {
22454
22446
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22455
22447
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22456
22448
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
22457
22449
  return ret;
22458
22450
  },
22459
- __wbg_getKeyCommitmentsByAccountId_e7f6c3397b516c99: function(arg0, arg1, arg2, arg3) {
22451
+ __wbg_getKeyCommitmentsByAccountId_39dba15570f24593: function(arg0, arg1, arg2, arg3) {
22460
22452
  let deferred0_0;
22461
22453
  let deferred0_1;
22462
22454
  try {
@@ -22468,7 +22460,7 @@ function __wbg_get_imports() {
22468
22460
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22469
22461
  }
22470
22462
  },
22471
- __wbg_getNoteScript_ebcab1b756e132b7: function(arg0, arg1, arg2, arg3) {
22463
+ __wbg_getNoteScript_efda320e2c0fccf7: function(arg0, arg1, arg2, arg3) {
22472
22464
  let deferred0_0;
22473
22465
  let deferred0_1;
22474
22466
  try {
@@ -22480,33 +22472,33 @@ function __wbg_get_imports() {
22480
22472
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22481
22473
  }
22482
22474
  },
22483
- __wbg_getNoteTags_430e9c90b199fcaf: function(arg0, arg1) {
22475
+ __wbg_getNoteTags_d6b8022f9b4859e8: function(arg0, arg1) {
22484
22476
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
22485
22477
  return ret;
22486
22478
  },
22487
- __wbg_getOutputNotesFromIds_5e6d42b0b3a25b4b: function(arg0, arg1, arg2, arg3) {
22479
+ __wbg_getOutputNotesFromIds_fa5c634a82cd6bff: function(arg0, arg1, arg2, arg3) {
22488
22480
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22489
22481
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22490
22482
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22491
22483
  return ret;
22492
22484
  },
22493
- __wbg_getOutputNotesFromNullifiers_5a9fc255157b6fbd: function(arg0, arg1, arg2, arg3) {
22485
+ __wbg_getOutputNotesFromNullifiers_91fb57f239d4ca70: function(arg0, arg1, arg2, arg3) {
22494
22486
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22495
22487
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22496
22488
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22497
22489
  return ret;
22498
22490
  },
22499
- __wbg_getOutputNotes_4809f2cd6485ad68: function(arg0, arg1, arg2, arg3) {
22491
+ __wbg_getOutputNotes_a1065157d0831b01: function(arg0, arg1, arg2, arg3) {
22500
22492
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22501
22493
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22502
22494
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
22503
22495
  return ret;
22504
22496
  },
22505
- __wbg_getPartialBlockchainNodesAll_674fcd3d1955cfaa: function(arg0, arg1) {
22497
+ __wbg_getPartialBlockchainNodesAll_ddea8ea03a56c531: function(arg0, arg1) {
22506
22498
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
22507
22499
  return ret;
22508
22500
  },
22509
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_ce09946942839df4: function(arg0, arg1, arg2, arg3) {
22501
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_959b31301df8c438: function(arg0, arg1, arg2, arg3) {
22510
22502
  let deferred0_0;
22511
22503
  let deferred0_1;
22512
22504
  try {
@@ -22518,13 +22510,13 @@ function __wbg_get_imports() {
22518
22510
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22519
22511
  }
22520
22512
  },
22521
- __wbg_getPartialBlockchainNodes_8a5579c21093ba83: function(arg0, arg1, arg2, arg3) {
22513
+ __wbg_getPartialBlockchainNodes_09bd2967864c4c45: function(arg0, arg1, arg2, arg3) {
22522
22514
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22523
22515
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22524
22516
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
22525
22517
  return ret;
22526
22518
  },
22527
- __wbg_getPartialBlockchainPeaksByBlockNum_d6eeb9e6a1fba098: function(arg0, arg1, arg2) {
22519
+ __wbg_getPartialBlockchainPeaksByBlockNum_b5b9e95f32003e32: function(arg0, arg1, arg2) {
22528
22520
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
22529
22521
  return ret;
22530
22522
  },
@@ -22535,7 +22527,7 @@ function __wbg_get_imports() {
22535
22527
  const ret = arg0.getReader();
22536
22528
  return ret;
22537
22529
  }, arguments); },
22538
- __wbg_getSetting_1d08025676323ba9: function(arg0, arg1, arg2, arg3) {
22530
+ __wbg_getSetting_ba46bcae2e2b7d6c: function(arg0, arg1, arg2, arg3) {
22539
22531
  let deferred0_0;
22540
22532
  let deferred0_1;
22541
22533
  try {
@@ -22547,7 +22539,7 @@ function __wbg_get_imports() {
22547
22539
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22548
22540
  }
22549
22541
  },
22550
- __wbg_getSyncHeight_945bdd99f3962099: function(arg0, arg1) {
22542
+ __wbg_getSyncHeight_b986a41f20a4c60f: function(arg0, arg1) {
22551
22543
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
22552
22544
  return ret;
22553
22545
  },
@@ -22555,15 +22547,15 @@ function __wbg_get_imports() {
22555
22547
  const ret = arg0.getTime();
22556
22548
  return ret;
22557
22549
  },
22558
- __wbg_getTrackedBlockHeaderNumbers_63af295c749079e4: function(arg0, arg1) {
22550
+ __wbg_getTrackedBlockHeaderNumbers_13758201e4acf879: function(arg0, arg1) {
22559
22551
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
22560
22552
  return ret;
22561
22553
  },
22562
- __wbg_getTrackedBlockHeaders_3e40bc541ec5a490: function(arg0, arg1) {
22554
+ __wbg_getTrackedBlockHeaders_e01f9f3411d5db34: function(arg0, arg1) {
22563
22555
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
22564
22556
  return ret;
22565
22557
  },
22566
- __wbg_getTransactions_3cd589dfbcd48460: function(arg0, arg1, arg2, arg3) {
22558
+ __wbg_getTransactions_39cdbadf132e2cbd: function(arg0, arg1, arg2, arg3) {
22567
22559
  let deferred0_0;
22568
22560
  let deferred0_1;
22569
22561
  try {
@@ -22575,7 +22567,7 @@ function __wbg_get_imports() {
22575
22567
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22576
22568
  }
22577
22569
  },
22578
- __wbg_getUnspentInputNoteNullifiers_f403872bd5cdee30: function(arg0, arg1) {
22570
+ __wbg_getUnspentInputNoteNullifiers_454a694b1712e5cb: function(arg0, arg1) {
22579
22571
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
22580
22572
  return ret;
22581
22573
  },
@@ -22619,7 +22611,7 @@ function __wbg_get_imports() {
22619
22611
  const ret = InputNoteRecord.__wrap(arg0);
22620
22612
  return ret;
22621
22613
  },
22622
- __wbg_insertAccountAddress_010cd84f15a2fba0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22614
+ __wbg_insertAccountAddress_964930c0efd3f292: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22623
22615
  let deferred0_0;
22624
22616
  let deferred0_1;
22625
22617
  try {
@@ -22633,7 +22625,7 @@ function __wbg_get_imports() {
22633
22625
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22634
22626
  }
22635
22627
  },
22636
- __wbg_insertAccountAuth_47c33fb7c61f1aea: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22628
+ __wbg_insertAccountAuth_15db742f3171bda3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22637
22629
  let deferred0_0;
22638
22630
  let deferred0_1;
22639
22631
  let deferred1_0;
@@ -22650,7 +22642,7 @@ function __wbg_get_imports() {
22650
22642
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22651
22643
  }
22652
22644
  },
22653
- __wbg_insertAccountKeyMapping_b94e28f85f7038ef: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22645
+ __wbg_insertAccountKeyMapping_9c49660f1ec7399f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22654
22646
  let deferred0_0;
22655
22647
  let deferred0_1;
22656
22648
  let deferred1_0;
@@ -22667,7 +22659,7 @@ function __wbg_get_imports() {
22667
22659
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22668
22660
  }
22669
22661
  },
22670
- __wbg_insertBlockHeader_f5ae91cdec3dcadd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22662
+ __wbg_insertBlockHeader_060e7f46d4ec35e7: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22671
22663
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
22672
22664
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
22673
22665
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -22675,7 +22667,7 @@ function __wbg_get_imports() {
22675
22667
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
22676
22668
  return ret;
22677
22669
  },
22678
- __wbg_insertPartialBlockchainNodes_b0cb6befaab01e5f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22670
+ __wbg_insertPartialBlockchainNodes_04f374dbb1ca7e77: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22679
22671
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22680
22672
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22681
22673
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -22683,7 +22675,7 @@ function __wbg_get_imports() {
22683
22675
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
22684
22676
  return ret;
22685
22677
  },
22686
- __wbg_insertSetting_db9299455a50a86e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22678
+ __wbg_insertSetting_e8fb47c1a72a54c4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22687
22679
  let deferred0_0;
22688
22680
  let deferred0_1;
22689
22681
  try {
@@ -22697,7 +22689,7 @@ function __wbg_get_imports() {
22697
22689
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22698
22690
  }
22699
22691
  },
22700
- __wbg_insertTransactionScript_0ce3812a118db4dd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22692
+ __wbg_insertTransactionScript_ba6a81a76d47a2d3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22701
22693
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22702
22694
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22703
22695
  let v1;
@@ -22790,11 +22782,11 @@ function __wbg_get_imports() {
22790
22782
  const ret = arg0.length;
22791
22783
  return ret;
22792
22784
  },
22793
- __wbg_listSettingKeys_0a51e3f4cad7f036: function(arg0, arg1) {
22785
+ __wbg_listSettingKeys_bd877420952aabcf: function(arg0, arg1) {
22794
22786
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
22795
22787
  return ret;
22796
22788
  },
22797
- __wbg_lockAccount_8a141fe8afe53d1f: function(arg0, arg1, arg2, arg3) {
22789
+ __wbg_lockAccount_b4469b288371ce1b: function(arg0, arg1, arg2, arg3) {
22798
22790
  let deferred0_0;
22799
22791
  let deferred0_1;
22800
22792
  try {
@@ -22878,7 +22870,7 @@ function __wbg_get_imports() {
22878
22870
  const a = state0.a;
22879
22871
  state0.a = 0;
22880
22872
  try {
22881
- return wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(a, state0.b, arg0, arg1);
22873
+ return wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(a, state0.b, arg0, arg1);
22882
22874
  } finally {
22883
22875
  state0.a = a;
22884
22876
  }
@@ -22985,7 +22977,7 @@ function __wbg_get_imports() {
22985
22977
  const ret = NoteTag.__unwrap(arg0);
22986
22978
  return ret;
22987
22979
  },
22988
- __wbg_openDatabase_cde23913ad00e851: function(arg0, arg1, arg2, arg3) {
22980
+ __wbg_openDatabase_2b359f6f1c11112f: function(arg0, arg1, arg2, arg3) {
22989
22981
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
22990
22982
  return ret;
22991
22983
  },
@@ -23016,7 +23008,7 @@ function __wbg_get_imports() {
23016
23008
  const ret = ProvenTransaction.__wrap(arg0);
23017
23009
  return ret;
23018
23010
  },
23019
- __wbg_pruneAccountHistory_354251ecd3d1db75: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23011
+ __wbg_pruneAccountHistory_f6d2c239f5188516: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23020
23012
  let deferred0_0;
23021
23013
  let deferred0_1;
23022
23014
  let deferred1_0;
@@ -23033,7 +23025,7 @@ function __wbg_get_imports() {
23033
23025
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23034
23026
  }
23035
23027
  },
23036
- __wbg_pruneIrrelevantBlocks_dc97d14f31702d1f: function(arg0, arg1) {
23028
+ __wbg_pruneIrrelevantBlocks_2634ac68b91e6214: function(arg0, arg1) {
23037
23029
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
23038
23030
  return ret;
23039
23031
  },
@@ -23051,13 +23043,13 @@ function __wbg_get_imports() {
23051
23043
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
23052
23044
  arg0.releaseLock();
23053
23045
  },
23054
- __wbg_removeAccountAddress_3f0e0ecc294d79fa: function(arg0, arg1, arg2, arg3) {
23046
+ __wbg_removeAccountAddress_9378ec2111cfd073: function(arg0, arg1, arg2, arg3) {
23055
23047
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23056
23048
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23057
23049
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
23058
23050
  return ret;
23059
23051
  },
23060
- __wbg_removeAccountAuth_0c07288e7cb5a02d: function(arg0, arg1, arg2, arg3) {
23052
+ __wbg_removeAccountAuth_1b38ce482f3a2a01: function(arg0, arg1, arg2, arg3) {
23061
23053
  let deferred0_0;
23062
23054
  let deferred0_1;
23063
23055
  try {
@@ -23069,7 +23061,7 @@ function __wbg_get_imports() {
23069
23061
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23070
23062
  }
23071
23063
  },
23072
- __wbg_removeAllMappingsForKey_17fa2424f229b2ce: function(arg0, arg1, arg2, arg3) {
23064
+ __wbg_removeAllMappingsForKey_8e731aa44d99defa: function(arg0, arg1, arg2, arg3) {
23073
23065
  let deferred0_0;
23074
23066
  let deferred0_1;
23075
23067
  try {
@@ -23081,7 +23073,7 @@ function __wbg_get_imports() {
23081
23073
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23082
23074
  }
23083
23075
  },
23084
- __wbg_removeNoteTag_3d017b00fc0fe3f2: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23076
+ __wbg_removeNoteTag_66b88893678278ff: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23085
23077
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23086
23078
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23087
23079
  let v1;
@@ -23097,7 +23089,7 @@ function __wbg_get_imports() {
23097
23089
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
23098
23090
  return ret;
23099
23091
  },
23100
- __wbg_removeSetting_e2432798ff986675: function(arg0, arg1, arg2, arg3) {
23092
+ __wbg_removeSetting_09bade6bd24dd314: function(arg0, arg1, arg2, arg3) {
23101
23093
  let deferred0_0;
23102
23094
  let deferred0_1;
23103
23095
  try {
@@ -23289,13 +23281,13 @@ function __wbg_get_imports() {
23289
23281
  const ret = TransactionSummary.__wrap(arg0);
23290
23282
  return ret;
23291
23283
  },
23292
- __wbg_undoAccountStates_f1df265279e53b63: function(arg0, arg1, arg2, arg3) {
23284
+ __wbg_undoAccountStates_a9bb97fcb6ee8a5b: function(arg0, arg1, arg2, arg3) {
23293
23285
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23294
23286
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23295
23287
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
23296
23288
  return ret;
23297
23289
  },
23298
- __wbg_upsertAccountCode_a4ac11852963005d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23290
+ __wbg_upsertAccountCode_9f6c4b97ffdc2a70: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23299
23291
  let deferred0_0;
23300
23292
  let deferred0_1;
23301
23293
  try {
@@ -23309,7 +23301,7 @@ function __wbg_get_imports() {
23309
23301
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23310
23302
  }
23311
23303
  },
23312
- __wbg_upsertAccountRecord_e676487b1aeca41f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23304
+ __wbg_upsertAccountRecord_871acd6aa086e68f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23313
23305
  let deferred0_0;
23314
23306
  let deferred0_1;
23315
23307
  let deferred1_0;
@@ -23351,7 +23343,7 @@ function __wbg_get_imports() {
23351
23343
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
23352
23344
  }
23353
23345
  },
23354
- __wbg_upsertAccountStorage_27c35c950278ccb7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23346
+ __wbg_upsertAccountStorage_a50e64183e253d97: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23355
23347
  let deferred0_0;
23356
23348
  let deferred0_1;
23357
23349
  try {
@@ -23365,7 +23357,7 @@ function __wbg_get_imports() {
23365
23357
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23366
23358
  }
23367
23359
  },
23368
- __wbg_upsertForeignAccountCode_ca44fb2bb646a2e5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23360
+ __wbg_upsertForeignAccountCode_9e93abdae6f4c0c7: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23369
23361
  let deferred0_0;
23370
23362
  let deferred0_1;
23371
23363
  let deferred2_0;
@@ -23384,7 +23376,7 @@ function __wbg_get_imports() {
23384
23376
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23385
23377
  }
23386
23378
  },
23387
- __wbg_upsertInputNote_c0a91baad890bea3: 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) {
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) {
23388
23380
  let deferred0_0;
23389
23381
  let deferred0_1;
23390
23382
  let deferred4_0;
@@ -23426,7 +23418,7 @@ function __wbg_get_imports() {
23426
23418
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
23427
23419
  }
23428
23420
  },
23429
- __wbg_upsertNoteScript_a3c063a2acfa4780: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23421
+ __wbg_upsertNoteScript_19e8fc1a041edf85: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23430
23422
  let deferred0_0;
23431
23423
  let deferred0_1;
23432
23424
  try {
@@ -23440,7 +23432,7 @@ function __wbg_get_imports() {
23440
23432
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23441
23433
  }
23442
23434
  },
23443
- __wbg_upsertOutputNote_46d6890a38b77f16: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23435
+ __wbg_upsertOutputNote_fc6f81a8309ef41b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23444
23436
  let deferred0_0;
23445
23437
  let deferred0_1;
23446
23438
  let deferred2_0;
@@ -23468,7 +23460,7 @@ function __wbg_get_imports() {
23468
23460
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23469
23461
  }
23470
23462
  },
23471
- __wbg_upsertStorageMapEntries_f21a9df772c69fc9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23463
+ __wbg_upsertStorageMapEntries_a39827348033fe1a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23472
23464
  let deferred0_0;
23473
23465
  let deferred0_1;
23474
23466
  try {
@@ -23482,7 +23474,7 @@ function __wbg_get_imports() {
23482
23474
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23483
23475
  }
23484
23476
  },
23485
- __wbg_upsertTransactionRecord_0bc4df87c698be51: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23477
+ __wbg_upsertTransactionRecord_01aaa20c21552b32: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23486
23478
  let deferred0_0;
23487
23479
  let deferred0_1;
23488
23480
  try {
@@ -23503,7 +23495,7 @@ function __wbg_get_imports() {
23503
23495
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23504
23496
  }
23505
23497
  },
23506
- __wbg_upsertVaultAssets_ceae9eb0e4c816f0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23498
+ __wbg_upsertVaultAssets_fa65d63a2d8af8de: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23507
23499
  let deferred0_0;
23508
23500
  let deferred0_1;
23509
23501
  try {
@@ -23534,13 +23526,13 @@ function __wbg_get_imports() {
23534
23526
  return ret;
23535
23527
  },
23536
23528
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
23537
- // Cast intrinsic for `Closure(Closure { dtor_idx: 356, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23538
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0);
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);
23539
23531
  return ret;
23540
23532
  },
23541
23533
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
23542
- // Cast intrinsic for `Closure(Closure { dtor_idx: 356, function: Function { arguments: [], shim_idx: 357, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23543
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0);
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);
23544
23536
  return ret;
23545
23537
  },
23546
23538
  __wbindgen_cast_0000000000000003: function(arg0) {
@@ -23644,16 +23636,16 @@ function __wbg_get_imports() {
23644
23636
  };
23645
23637
  }
23646
23638
 
23647
- function wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0(arg0, arg1) {
23648
- wasm.wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0(arg0, arg1);
23639
+ function wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864(arg0, arg1) {
23640
+ wasm.wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864(arg0, arg1);
23649
23641
  }
23650
23642
 
23651
- function wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0(arg0, arg1, arg2) {
23652
- wasm.wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0(arg0, arg1, arg2);
23643
+ function wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2(arg0, arg1, arg2) {
23644
+ wasm.wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2(arg0, arg1, arg2);
23653
23645
  }
23654
23646
 
23655
- function wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(arg0, arg1, arg2, arg3) {
23656
- wasm.wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(arg0, arg1, arg2, arg3);
23647
+ function wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(arg0, arg1, arg2, arg3) {
23648
+ wasm.wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(arg0, arg1, arg2, arg3);
23657
23649
  }
23658
23650
 
23659
23651
 
@@ -24455,8 +24447,5 @@ async function __wbg_init(module_or_path) {
24455
24447
  }
24456
24448
 
24457
24449
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
24458
-
24459
- await __wbg_init({ module_or_path: module$1 });
24460
-
24461
- 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 };
24462
- //# sourceMappingURL=Cargo-M1xGvXNQ.js.map
24450
+ 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