@miden-sdk/miden-sdk 0.14.2 → 0.14.4

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.
@@ -12218,6 +12218,19 @@ class BlockHeader {
12218
12218
  const ret = wasm.blockheader_commitment(this.__wbg_ptr);
12219
12219
  return Word.__wrap(ret);
12220
12220
  }
12221
+ /**
12222
+ * Returns the account ID of the fungible faucet whose assets are accepted as the native
12223
+ * asset of the blockchain (i.e. the asset used for paying transaction verification fees).
12224
+ *
12225
+ * This is stored on-chain as part of the block's fee parameters, which means consumers can
12226
+ * discover the native faucet by reading any block header rather than hardcoding it per
12227
+ * network.
12228
+ * @returns {AccountId}
12229
+ */
12230
+ nativeAssetId() {
12231
+ const ret = wasm.blockheader_nativeAssetId(this.__wbg_ptr);
12232
+ return AccountId.__wrap(ret);
12233
+ }
12221
12234
  /**
12222
12235
  * Returns the note commitment root.
12223
12236
  * @returns {Word}
@@ -21334,6 +21347,35 @@ class WebClient {
21334
21347
  }
21335
21348
  return WebKeystoreApi.__wrap(ret[0]);
21336
21349
  }
21350
+ /**
21351
+ * Returns the raw JS value that the most recent sign-callback invocation
21352
+ * threw, or `null` if the last sign call succeeded (or no call has
21353
+ * happened yet).
21354
+ *
21355
+ * Combined with the serialized-call discipline enforced at the JS
21356
+ * `WebClient` wrapper, this lets a caller that caught a failed
21357
+ * `executeTransaction` / `submitNewTransaction` recover the original
21358
+ * JS error the signing callback threw — preserving any structured
21359
+ * metadata (e.g. a `reason: 'locked'` property) that the kernel-level
21360
+ * `auth::request` diagnostic would otherwise have erased.
21361
+ *
21362
+ * # Usage (TS)
21363
+ * ```ts
21364
+ * try {
21365
+ * await client.submitNewTransaction(acc, req);
21366
+ * } catch (e) {
21367
+ * const authErr = client.lastAuthError();
21368
+ * if (authErr && authErr.reason === 'locked') {
21369
+ * // wait for unlock, then retry
21370
+ * }
21371
+ * }
21372
+ * ```
21373
+ * @returns {any}
21374
+ */
21375
+ lastAuthError() {
21376
+ const ret = wasm.webclient_lastAuthError(this.__wbg_ptr);
21377
+ return ret;
21378
+ }
21337
21379
  /**
21338
21380
  * Returns all the existing setting keys from the store.
21339
21381
  * @returns {Promise<string[]>}
@@ -21486,20 +21528,32 @@ class WebClient {
21486
21528
  }
21487
21529
  }
21488
21530
  /**
21489
- * Generates a transaction proof using either the provided prover or the client's default
21490
- * prover if none is supplied.
21531
+ * Generates a transaction proof using the client's default (local) prover.
21491
21532
  * @param {TransactionResult} transaction_result
21492
- * @param {TransactionProver | null} [prover]
21493
21533
  * @returns {Promise<ProvenTransaction>}
21494
21534
  */
21495
- proveTransaction(transaction_result, prover) {
21535
+ proveTransaction(transaction_result) {
21496
21536
  _assertClass(transaction_result, TransactionResult);
21497
- let ptr0 = 0;
21498
- if (!isLikeNone(prover)) {
21499
- _assertClass(prover, TransactionProver);
21500
- ptr0 = prover.__destroy_into_raw();
21501
- }
21502
- const ret = wasm.webclient_proveTransaction(this.__wbg_ptr, transaction_result.__wbg_ptr, ptr0);
21537
+ const ret = wasm.webclient_proveTransaction(this.__wbg_ptr, transaction_result.__wbg_ptr);
21538
+ return ret;
21539
+ }
21540
+ /**
21541
+ * Generates a transaction proof using the provided prover.
21542
+ *
21543
+ * Takes the prover by reference so the JS-side handle is NOT consumed
21544
+ * by wasm-bindgen. Taking `TransactionProver` by value would transfer
21545
+ * ownership on each call, invalidating the JS object's internal WASM
21546
+ * handle; after one use, subsequent calls from JS would pass a dangling
21547
+ * handle that wasm-bindgen interprets as `None`, silently falling back
21548
+ * to the local prover.
21549
+ * @param {TransactionResult} transaction_result
21550
+ * @param {TransactionProver} prover
21551
+ * @returns {Promise<ProvenTransaction>}
21552
+ */
21553
+ proveTransactionWithProver(transaction_result, prover) {
21554
+ _assertClass(transaction_result, TransactionResult);
21555
+ _assertClass(prover, TransactionProver);
21556
+ const ret = wasm.webclient_proveTransactionWithProver(this.__wbg_ptr, transaction_result.__wbg_ptr, prover.__wbg_ptr);
21503
21557
  return ret;
21504
21558
  }
21505
21559
  /**
@@ -22102,7 +22156,7 @@ function __wbg_get_imports() {
22102
22156
  const ret = AccountStorage.__wrap(arg0);
22103
22157
  return ret;
22104
22158
  },
22105
- __wbg_addNoteTag_fa87368c2b7b49e0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22159
+ __wbg_addNoteTag_698909ab9460b85a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22106
22160
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22107
22161
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22108
22162
  let v1;
@@ -22125,15 +22179,15 @@ function __wbg_get_imports() {
22125
22179
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
22126
22180
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
22127
22181
  }, arguments); },
22128
- __wbg_applyFullAccountState_a1dff98a8491308f: function(arg0, arg1, arg2) {
22182
+ __wbg_applyFullAccountState_eade9faa19596125: function(arg0, arg1, arg2) {
22129
22183
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
22130
22184
  return ret;
22131
22185
  },
22132
- __wbg_applyStateSync_fe1497caf76fc042: function(arg0, arg1, arg2) {
22186
+ __wbg_applyStateSync_9564c858a70c99b8: function(arg0, arg1, arg2) {
22133
22187
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
22134
22188
  return ret;
22135
22189
  },
22136
- __wbg_applyTransactionDelta_55546d467d24092b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
22190
+ __wbg_applyTransactionDelta_9628eb6590c0ceb1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
22137
22191
  let deferred0_0;
22138
22192
  let deferred0_1;
22139
22193
  let deferred1_0;
@@ -22268,7 +22322,7 @@ function __wbg_get_imports() {
22268
22322
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22269
22323
  }
22270
22324
  },
22271
- __wbg_exportStore_fe0da1ec1fecca92: function(arg0, arg1) {
22325
+ __wbg_exportStore_a67b45413c960e8c: function(arg0, arg1) {
22272
22326
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
22273
22327
  return ret;
22274
22328
  },
@@ -22300,7 +22354,7 @@ function __wbg_get_imports() {
22300
22354
  const ret = FetchedNote.__wrap(arg0);
22301
22355
  return ret;
22302
22356
  },
22303
- __wbg_forceImportStore_718c17745304e8dd: function(arg0, arg1, arg2) {
22357
+ __wbg_forceImportStore_eb9f85ecf3af7d43: function(arg0, arg1, arg2) {
22304
22358
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
22305
22359
  return ret;
22306
22360
  },
@@ -22320,7 +22374,7 @@ function __wbg_get_imports() {
22320
22374
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
22321
22375
  return ret;
22322
22376
  },
22323
- __wbg_getAccountAddresses_9aa0a7707bc6f600: function(arg0, arg1, arg2, arg3) {
22377
+ __wbg_getAccountAddresses_51afaacf9f52c77a: function(arg0, arg1, arg2, arg3) {
22324
22378
  let deferred0_0;
22325
22379
  let deferred0_1;
22326
22380
  try {
@@ -22332,7 +22386,7 @@ function __wbg_get_imports() {
22332
22386
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22333
22387
  }
22334
22388
  },
22335
- __wbg_getAccountAuthByPubKeyCommitment_f35bdd747fb96ad1: function(arg0, arg1, arg2, arg3) {
22389
+ __wbg_getAccountAuthByPubKeyCommitment_3d1eeae52f97e127: function(arg0, arg1, arg2, arg3) {
22336
22390
  let deferred0_0;
22337
22391
  let deferred0_1;
22338
22392
  try {
@@ -22344,7 +22398,7 @@ function __wbg_get_imports() {
22344
22398
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22345
22399
  }
22346
22400
  },
22347
- __wbg_getAccountCode_8108c2eb819e8dcb: function(arg0, arg1, arg2, arg3) {
22401
+ __wbg_getAccountCode_84b1542a2d9efa6e: function(arg0, arg1, arg2, arg3) {
22348
22402
  let deferred0_0;
22349
22403
  let deferred0_1;
22350
22404
  try {
@@ -22356,7 +22410,7 @@ function __wbg_get_imports() {
22356
22410
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22357
22411
  }
22358
22412
  },
22359
- __wbg_getAccountHeaderByCommitment_e5e1f7ed01a8a99f: function(arg0, arg1, arg2, arg3) {
22413
+ __wbg_getAccountHeaderByCommitment_5be294a0512143cb: function(arg0, arg1, arg2, arg3) {
22360
22414
  let deferred0_0;
22361
22415
  let deferred0_1;
22362
22416
  try {
@@ -22368,7 +22422,7 @@ function __wbg_get_imports() {
22368
22422
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22369
22423
  }
22370
22424
  },
22371
- __wbg_getAccountHeader_857048417ad1f6dc: function(arg0, arg1, arg2, arg3) {
22425
+ __wbg_getAccountHeader_a9304a0079f4e254: function(arg0, arg1, arg2, arg3) {
22372
22426
  let deferred0_0;
22373
22427
  let deferred0_1;
22374
22428
  try {
@@ -22380,7 +22434,7 @@ function __wbg_get_imports() {
22380
22434
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22381
22435
  }
22382
22436
  },
22383
- __wbg_getAccountIdByKeyCommitment_0e1f9cd391408d5b: function(arg0, arg1, arg2, arg3) {
22437
+ __wbg_getAccountIdByKeyCommitment_adfd1a18dc9eff3d: function(arg0, arg1, arg2, arg3) {
22384
22438
  let deferred0_0;
22385
22439
  let deferred0_1;
22386
22440
  try {
@@ -22392,11 +22446,11 @@ function __wbg_get_imports() {
22392
22446
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22393
22447
  }
22394
22448
  },
22395
- __wbg_getAccountIds_374185f86d9b2508: function(arg0, arg1) {
22449
+ __wbg_getAccountIds_2b769482d9d22c91: function(arg0, arg1) {
22396
22450
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
22397
22451
  return ret;
22398
22452
  },
22399
- __wbg_getAccountStorageMaps_1146cad7bd60117d: function(arg0, arg1, arg2, arg3) {
22453
+ __wbg_getAccountStorageMaps_8315b00d0eb2f171: function(arg0, arg1, arg2, arg3) {
22400
22454
  let deferred0_0;
22401
22455
  let deferred0_1;
22402
22456
  try {
@@ -22408,7 +22462,7 @@ function __wbg_get_imports() {
22408
22462
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22409
22463
  }
22410
22464
  },
22411
- __wbg_getAccountStorage_78becb02283e8527: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22465
+ __wbg_getAccountStorage_15977a4f6e04fd64: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22412
22466
  let deferred0_0;
22413
22467
  let deferred0_1;
22414
22468
  try {
@@ -22422,7 +22476,7 @@ function __wbg_get_imports() {
22422
22476
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22423
22477
  }
22424
22478
  },
22425
- __wbg_getAccountVaultAssets_36cfbde063265d57: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22479
+ __wbg_getAccountVaultAssets_a97760310afd4d4b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22426
22480
  let deferred0_0;
22427
22481
  let deferred0_1;
22428
22482
  try {
@@ -22436,23 +22490,23 @@ function __wbg_get_imports() {
22436
22490
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22437
22491
  }
22438
22492
  },
22439
- __wbg_getAllAccountHeaders_4d0a4adcb4b10a13: function(arg0, arg1) {
22493
+ __wbg_getAllAccountHeaders_be49e1d4ba8290ab: function(arg0, arg1) {
22440
22494
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
22441
22495
  return ret;
22442
22496
  },
22443
- __wbg_getBlockHeaders_76e66b6eccbebd5d: function(arg0, arg1, arg2, arg3) {
22497
+ __wbg_getBlockHeaders_17f4a78b0b73a04f: function(arg0, arg1, arg2, arg3) {
22444
22498
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
22445
22499
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22446
22500
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
22447
22501
  return ret;
22448
22502
  },
22449
- __wbg_getForeignAccountCode_ec11efbe2165328c: function(arg0, arg1, arg2, arg3) {
22503
+ __wbg_getForeignAccountCode_1b334242465029b9: function(arg0, arg1, arg2, arg3) {
22450
22504
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22451
22505
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22452
22506
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
22453
22507
  return ret;
22454
22508
  },
22455
- __wbg_getInputNoteByOffset_abb533ed69954028: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22509
+ __wbg_getInputNoteByOffset_b159a98e6585d580: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22456
22510
  let deferred1_0;
22457
22511
  let deferred1_1;
22458
22512
  try {
@@ -22466,25 +22520,25 @@ function __wbg_get_imports() {
22466
22520
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22467
22521
  }
22468
22522
  },
22469
- __wbg_getInputNotesFromIds_e280071c131a5249: function(arg0, arg1, arg2, arg3) {
22523
+ __wbg_getInputNotesFromIds_9244d0972946d1e9: function(arg0, arg1, arg2, arg3) {
22470
22524
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22471
22525
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22472
22526
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22473
22527
  return ret;
22474
22528
  },
22475
- __wbg_getInputNotesFromNullifiers_eeec8f1e28e95156: function(arg0, arg1, arg2, arg3) {
22529
+ __wbg_getInputNotesFromNullifiers_20a275b6054e2675: function(arg0, arg1, arg2, arg3) {
22476
22530
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22477
22531
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22478
22532
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22479
22533
  return ret;
22480
22534
  },
22481
- __wbg_getInputNotes_aa6ff856b28a9a3b: function(arg0, arg1, arg2, arg3) {
22535
+ __wbg_getInputNotes_3c02639073a27a1b: function(arg0, arg1, arg2, arg3) {
22482
22536
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22483
22537
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22484
22538
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
22485
22539
  return ret;
22486
22540
  },
22487
- __wbg_getKeyCommitmentsByAccountId_51685ac35cc43f90: function(arg0, arg1, arg2, arg3) {
22541
+ __wbg_getKeyCommitmentsByAccountId_b0f7dfe5f184268b: function(arg0, arg1, arg2, arg3) {
22488
22542
  let deferred0_0;
22489
22543
  let deferred0_1;
22490
22544
  try {
@@ -22496,7 +22550,7 @@ function __wbg_get_imports() {
22496
22550
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22497
22551
  }
22498
22552
  },
22499
- __wbg_getNoteScript_aae2341fde5e8aab: function(arg0, arg1, arg2, arg3) {
22553
+ __wbg_getNoteScript_867d54f06c81e941: function(arg0, arg1, arg2, arg3) {
22500
22554
  let deferred0_0;
22501
22555
  let deferred0_1;
22502
22556
  try {
@@ -22508,33 +22562,33 @@ function __wbg_get_imports() {
22508
22562
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22509
22563
  }
22510
22564
  },
22511
- __wbg_getNoteTags_39dfaf5125d790dc: function(arg0, arg1) {
22565
+ __wbg_getNoteTags_9873a6e080e3852e: function(arg0, arg1) {
22512
22566
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
22513
22567
  return ret;
22514
22568
  },
22515
- __wbg_getOutputNotesFromIds_e4efafbf2d047fe6: function(arg0, arg1, arg2, arg3) {
22569
+ __wbg_getOutputNotesFromIds_39d02b7c705b516a: function(arg0, arg1, arg2, arg3) {
22516
22570
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22517
22571
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22518
22572
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22519
22573
  return ret;
22520
22574
  },
22521
- __wbg_getOutputNotesFromNullifiers_7d985f82ae1db2be: function(arg0, arg1, arg2, arg3) {
22575
+ __wbg_getOutputNotesFromNullifiers_d1ae3200c43e2f6c: function(arg0, arg1, arg2, arg3) {
22522
22576
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22523
22577
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22524
22578
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22525
22579
  return ret;
22526
22580
  },
22527
- __wbg_getOutputNotes_cdb4518075c647e5: function(arg0, arg1, arg2, arg3) {
22581
+ __wbg_getOutputNotes_bb6846291f45a6d5: function(arg0, arg1, arg2, arg3) {
22528
22582
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22529
22583
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22530
22584
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
22531
22585
  return ret;
22532
22586
  },
22533
- __wbg_getPartialBlockchainNodesAll_674394a46a9a0113: function(arg0, arg1) {
22587
+ __wbg_getPartialBlockchainNodesAll_94c7cf9fe9cbfce1: function(arg0, arg1) {
22534
22588
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
22535
22589
  return ret;
22536
22590
  },
22537
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_4b120d8c31f15e29: function(arg0, arg1, arg2, arg3) {
22591
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_4f5ca17c3f5dc6d6: function(arg0, arg1, arg2, arg3) {
22538
22592
  let deferred0_0;
22539
22593
  let deferred0_1;
22540
22594
  try {
@@ -22546,13 +22600,13 @@ function __wbg_get_imports() {
22546
22600
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22547
22601
  }
22548
22602
  },
22549
- __wbg_getPartialBlockchainNodes_9486ef4d56f6a4d4: function(arg0, arg1, arg2, arg3) {
22603
+ __wbg_getPartialBlockchainNodes_ae379fc78bb9f182: function(arg0, arg1, arg2, arg3) {
22550
22604
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22551
22605
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22552
22606
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
22553
22607
  return ret;
22554
22608
  },
22555
- __wbg_getPartialBlockchainPeaksByBlockNum_3ebcf8c15fb61638: function(arg0, arg1, arg2) {
22609
+ __wbg_getPartialBlockchainPeaksByBlockNum_3aabada7ce71eee3: function(arg0, arg1, arg2) {
22556
22610
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
22557
22611
  return ret;
22558
22612
  },
@@ -22563,7 +22617,7 @@ function __wbg_get_imports() {
22563
22617
  const ret = arg0.getReader();
22564
22618
  return ret;
22565
22619
  }, arguments); },
22566
- __wbg_getSetting_dd6484d1ab6ab785: function(arg0, arg1, arg2, arg3) {
22620
+ __wbg_getSetting_186df2c955123498: function(arg0, arg1, arg2, arg3) {
22567
22621
  let deferred0_0;
22568
22622
  let deferred0_1;
22569
22623
  try {
@@ -22575,7 +22629,7 @@ function __wbg_get_imports() {
22575
22629
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22576
22630
  }
22577
22631
  },
22578
- __wbg_getSyncHeight_bdfc465844a19b19: function(arg0, arg1) {
22632
+ __wbg_getSyncHeight_bb8554ff55ffbf9f: function(arg0, arg1) {
22579
22633
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
22580
22634
  return ret;
22581
22635
  },
@@ -22583,15 +22637,15 @@ function __wbg_get_imports() {
22583
22637
  const ret = arg0.getTime();
22584
22638
  return ret;
22585
22639
  },
22586
- __wbg_getTrackedBlockHeaderNumbers_d356fdc789b13156: function(arg0, arg1) {
22640
+ __wbg_getTrackedBlockHeaderNumbers_f816d2d4d27342c3: function(arg0, arg1) {
22587
22641
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
22588
22642
  return ret;
22589
22643
  },
22590
- __wbg_getTrackedBlockHeaders_b4f9af19352e20e4: function(arg0, arg1) {
22644
+ __wbg_getTrackedBlockHeaders_f283e0da82bfc822: function(arg0, arg1) {
22591
22645
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
22592
22646
  return ret;
22593
22647
  },
22594
- __wbg_getTransactions_ebe5e94773cc1c65: function(arg0, arg1, arg2, arg3) {
22648
+ __wbg_getTransactions_1bd61b628e179d02: function(arg0, arg1, arg2, arg3) {
22595
22649
  let deferred0_0;
22596
22650
  let deferred0_1;
22597
22651
  try {
@@ -22603,7 +22657,7 @@ function __wbg_get_imports() {
22603
22657
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22604
22658
  }
22605
22659
  },
22606
- __wbg_getUnspentInputNoteNullifiers_aec3bc0e3be99738: function(arg0, arg1) {
22660
+ __wbg_getUnspentInputNoteNullifiers_d62daa144f0c3fe5: function(arg0, arg1) {
22607
22661
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
22608
22662
  return ret;
22609
22663
  },
@@ -22647,7 +22701,7 @@ function __wbg_get_imports() {
22647
22701
  const ret = InputNoteRecord.__wrap(arg0);
22648
22702
  return ret;
22649
22703
  },
22650
- __wbg_insertAccountAddress_0af2cb0ca4b54516: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22704
+ __wbg_insertAccountAddress_74f0e4c7a639254e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22651
22705
  let deferred0_0;
22652
22706
  let deferred0_1;
22653
22707
  try {
@@ -22661,7 +22715,7 @@ function __wbg_get_imports() {
22661
22715
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22662
22716
  }
22663
22717
  },
22664
- __wbg_insertAccountAuth_fb13b5e942fea58f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22718
+ __wbg_insertAccountAuth_3c33b553fe5c8c05: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22665
22719
  let deferred0_0;
22666
22720
  let deferred0_1;
22667
22721
  let deferred1_0;
@@ -22678,7 +22732,7 @@ function __wbg_get_imports() {
22678
22732
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22679
22733
  }
22680
22734
  },
22681
- __wbg_insertAccountKeyMapping_ecada5f7c399925f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22735
+ __wbg_insertAccountKeyMapping_d2a0b817a8140e6e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22682
22736
  let deferred0_0;
22683
22737
  let deferred0_1;
22684
22738
  let deferred1_0;
@@ -22695,7 +22749,7 @@ function __wbg_get_imports() {
22695
22749
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22696
22750
  }
22697
22751
  },
22698
- __wbg_insertBlockHeader_16059888cf59b810: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22752
+ __wbg_insertBlockHeader_bcda8bc22e77cf32: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22699
22753
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
22700
22754
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
22701
22755
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -22703,7 +22757,7 @@ function __wbg_get_imports() {
22703
22757
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
22704
22758
  return ret;
22705
22759
  },
22706
- __wbg_insertPartialBlockchainNodes_ace6ebaad3e7d57f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22760
+ __wbg_insertPartialBlockchainNodes_135515caa8cd47bd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22707
22761
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22708
22762
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22709
22763
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -22711,7 +22765,7 @@ function __wbg_get_imports() {
22711
22765
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
22712
22766
  return ret;
22713
22767
  },
22714
- __wbg_insertSetting_121573b0ab9da562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22768
+ __wbg_insertSetting_fe1899c3024e1e38: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22715
22769
  let deferred0_0;
22716
22770
  let deferred0_1;
22717
22771
  try {
@@ -22725,7 +22779,7 @@ function __wbg_get_imports() {
22725
22779
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22726
22780
  }
22727
22781
  },
22728
- __wbg_insertTransactionScript_864f994618f1a3f8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22782
+ __wbg_insertTransactionScript_310aca4fb4647d32: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22729
22783
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22730
22784
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22731
22785
  let v1;
@@ -22818,11 +22872,11 @@ function __wbg_get_imports() {
22818
22872
  const ret = arg0.length;
22819
22873
  return ret;
22820
22874
  },
22821
- __wbg_listSettingKeys_df89abca52542f21: function(arg0, arg1) {
22875
+ __wbg_listSettingKeys_384288a044f385de: function(arg0, arg1) {
22822
22876
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
22823
22877
  return ret;
22824
22878
  },
22825
- __wbg_lockAccount_6c6cd48dd4f916a5: function(arg0, arg1, arg2, arg3) {
22879
+ __wbg_lockAccount_a60d709094c45b53: function(arg0, arg1, arg2, arg3) {
22826
22880
  let deferred0_0;
22827
22881
  let deferred0_1;
22828
22882
  try {
@@ -22906,7 +22960,7 @@ function __wbg_get_imports() {
22906
22960
  const a = state0.a;
22907
22961
  state0.a = 0;
22908
22962
  try {
22909
- return wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(a, state0.b, arg0, arg1);
22963
+ return wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(a, state0.b, arg0, arg1);
22910
22964
  } finally {
22911
22965
  state0.a = a;
22912
22966
  }
@@ -23013,7 +23067,7 @@ function __wbg_get_imports() {
23013
23067
  const ret = NoteTag.__unwrap(arg0);
23014
23068
  return ret;
23015
23069
  },
23016
- __wbg_openDatabase_b1424a6b7362c69c: function(arg0, arg1, arg2, arg3) {
23070
+ __wbg_openDatabase_4c3b292fbda4fc9b: function(arg0, arg1, arg2, arg3) {
23017
23071
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
23018
23072
  return ret;
23019
23073
  },
@@ -23044,7 +23098,7 @@ function __wbg_get_imports() {
23044
23098
  const ret = ProvenTransaction.__wrap(arg0);
23045
23099
  return ret;
23046
23100
  },
23047
- __wbg_pruneAccountHistory_22e8506d45f44fe7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23101
+ __wbg_pruneAccountHistory_862dcd6254067486: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23048
23102
  let deferred0_0;
23049
23103
  let deferred0_1;
23050
23104
  let deferred1_0;
@@ -23061,7 +23115,7 @@ function __wbg_get_imports() {
23061
23115
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23062
23116
  }
23063
23117
  },
23064
- __wbg_pruneIrrelevantBlocks_87daff49119b4c5f: function(arg0, arg1) {
23118
+ __wbg_pruneIrrelevantBlocks_5d9d0b791bc84bbd: function(arg0, arg1) {
23065
23119
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
23066
23120
  return ret;
23067
23121
  },
@@ -23079,13 +23133,13 @@ function __wbg_get_imports() {
23079
23133
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
23080
23134
  arg0.releaseLock();
23081
23135
  },
23082
- __wbg_removeAccountAddress_dde849df5c7706f8: function(arg0, arg1, arg2, arg3) {
23136
+ __wbg_removeAccountAddress_b55c1b0cd60d92df: function(arg0, arg1, arg2, arg3) {
23083
23137
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23084
23138
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23085
23139
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
23086
23140
  return ret;
23087
23141
  },
23088
- __wbg_removeAccountAuth_50e297f4ae902348: function(arg0, arg1, arg2, arg3) {
23142
+ __wbg_removeAccountAuth_3fb9058cee274111: function(arg0, arg1, arg2, arg3) {
23089
23143
  let deferred0_0;
23090
23144
  let deferred0_1;
23091
23145
  try {
@@ -23097,7 +23151,7 @@ function __wbg_get_imports() {
23097
23151
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23098
23152
  }
23099
23153
  },
23100
- __wbg_removeAllMappingsForKey_1e0d5e23c7f96514: function(arg0, arg1, arg2, arg3) {
23154
+ __wbg_removeAllMappingsForKey_66ff5b0d6f9c2bd6: function(arg0, arg1, arg2, arg3) {
23101
23155
  let deferred0_0;
23102
23156
  let deferred0_1;
23103
23157
  try {
@@ -23109,7 +23163,7 @@ function __wbg_get_imports() {
23109
23163
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23110
23164
  }
23111
23165
  },
23112
- __wbg_removeNoteTag_92477b25e0e47794: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23166
+ __wbg_removeNoteTag_0a14e1372f23806f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23113
23167
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23114
23168
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23115
23169
  let v1;
@@ -23125,7 +23179,7 @@ function __wbg_get_imports() {
23125
23179
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
23126
23180
  return ret;
23127
23181
  },
23128
- __wbg_removeSetting_fc7204b0de24b573: function(arg0, arg1, arg2, arg3) {
23182
+ __wbg_removeSetting_6bcea18b3e8da9e4: function(arg0, arg1, arg2, arg3) {
23129
23183
  let deferred0_0;
23130
23184
  let deferred0_1;
23131
23185
  try {
@@ -23317,13 +23371,13 @@ function __wbg_get_imports() {
23317
23371
  const ret = TransactionSummary.__wrap(arg0);
23318
23372
  return ret;
23319
23373
  },
23320
- __wbg_undoAccountStates_1c2427746f0e5c21: function(arg0, arg1, arg2, arg3) {
23374
+ __wbg_undoAccountStates_772949347567310a: function(arg0, arg1, arg2, arg3) {
23321
23375
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23322
23376
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23323
23377
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
23324
23378
  return ret;
23325
23379
  },
23326
- __wbg_upsertAccountCode_35e59053ef5055ac: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23380
+ __wbg_upsertAccountCode_5aeef852ebb4eea3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23327
23381
  let deferred0_0;
23328
23382
  let deferred0_1;
23329
23383
  try {
@@ -23337,7 +23391,7 @@ function __wbg_get_imports() {
23337
23391
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23338
23392
  }
23339
23393
  },
23340
- __wbg_upsertAccountRecord_f56ec255945d78ab: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23394
+ __wbg_upsertAccountRecord_e857a604366533d6: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23341
23395
  let deferred0_0;
23342
23396
  let deferred0_1;
23343
23397
  let deferred1_0;
@@ -23379,7 +23433,7 @@ function __wbg_get_imports() {
23379
23433
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
23380
23434
  }
23381
23435
  },
23382
- __wbg_upsertAccountStorage_6f9f8d1619c42121: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23436
+ __wbg_upsertAccountStorage_cadea80cad14d44e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23383
23437
  let deferred0_0;
23384
23438
  let deferred0_1;
23385
23439
  try {
@@ -23393,7 +23447,7 @@ function __wbg_get_imports() {
23393
23447
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23394
23448
  }
23395
23449
  },
23396
- __wbg_upsertForeignAccountCode_c39efae265a26a70: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23450
+ __wbg_upsertForeignAccountCode_0ff2a287e6afee27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23397
23451
  let deferred0_0;
23398
23452
  let deferred0_1;
23399
23453
  let deferred2_0;
@@ -23412,7 +23466,7 @@ function __wbg_get_imports() {
23412
23466
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23413
23467
  }
23414
23468
  },
23415
- __wbg_upsertInputNote_8793dba84ba07fdf: 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) {
23469
+ __wbg_upsertInputNote_7e5a34ad5a5f84cf: 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) {
23416
23470
  let deferred0_0;
23417
23471
  let deferred0_1;
23418
23472
  let deferred4_0;
@@ -23454,7 +23508,7 @@ function __wbg_get_imports() {
23454
23508
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
23455
23509
  }
23456
23510
  },
23457
- __wbg_upsertNoteScript_7ed0c29e6c2adebe: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23511
+ __wbg_upsertNoteScript_bf2e3cd8091e4d8e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23458
23512
  let deferred0_0;
23459
23513
  let deferred0_1;
23460
23514
  try {
@@ -23468,7 +23522,7 @@ function __wbg_get_imports() {
23468
23522
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23469
23523
  }
23470
23524
  },
23471
- __wbg_upsertOutputNote_378e42d786a31880: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23525
+ __wbg_upsertOutputNote_6680c25bcf1c6752: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23472
23526
  let deferred0_0;
23473
23527
  let deferred0_1;
23474
23528
  let deferred2_0;
@@ -23496,7 +23550,7 @@ function __wbg_get_imports() {
23496
23550
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23497
23551
  }
23498
23552
  },
23499
- __wbg_upsertStorageMapEntries_18f1f110157c89fd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23553
+ __wbg_upsertStorageMapEntries_3599951ef72300cc: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23500
23554
  let deferred0_0;
23501
23555
  let deferred0_1;
23502
23556
  try {
@@ -23510,7 +23564,7 @@ function __wbg_get_imports() {
23510
23564
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23511
23565
  }
23512
23566
  },
23513
- __wbg_upsertTransactionRecord_b471cc31ac2482e5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23567
+ __wbg_upsertTransactionRecord_5306c0b813a1cef4: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23514
23568
  let deferred0_0;
23515
23569
  let deferred0_1;
23516
23570
  try {
@@ -23531,7 +23585,7 @@ function __wbg_get_imports() {
23531
23585
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23532
23586
  }
23533
23587
  },
23534
- __wbg_upsertVaultAssets_f6f1c6ab846352e0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23588
+ __wbg_upsertVaultAssets_66ef95ec9c1a13ce: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23535
23589
  let deferred0_0;
23536
23590
  let deferred0_1;
23537
23591
  try {
@@ -23562,13 +23616,13 @@ function __wbg_get_imports() {
23562
23616
  return ret;
23563
23617
  },
23564
23618
  __wbindgen_cast_0000000000000001: function(arg0, arg1) {
23565
- // Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [Externref], shim_idx: 695, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23566
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0);
23619
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 357, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23620
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a);
23567
23621
  return ret;
23568
23622
  },
23569
23623
  __wbindgen_cast_0000000000000002: function(arg0, arg1) {
23570
- // Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [], shim_idx: 361, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23571
- const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0);
23624
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 357, function: Function { arguments: [], shim_idx: 358, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23625
+ const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9);
23572
23626
  return ret;
23573
23627
  },
23574
23628
  __wbindgen_cast_0000000000000003: function(arg0) {
@@ -23672,16 +23726,16 @@ function __wbg_get_imports() {
23672
23726
  };
23673
23727
  }
23674
23728
 
23675
- function wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0(arg0, arg1) {
23676
- wasm.wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0(arg0, arg1);
23729
+ function wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1) {
23730
+ wasm.wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1);
23677
23731
  }
23678
23732
 
23679
- function wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0(arg0, arg1, arg2) {
23680
- wasm.wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0(arg0, arg1, arg2);
23733
+ function wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2) {
23734
+ wasm.wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2);
23681
23735
  }
23682
23736
 
23683
- function wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(arg0, arg1, arg2, arg3) {
23684
- wasm.wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(arg0, arg1, arg2, arg3);
23737
+ function wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3) {
23738
+ wasm.wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3);
23685
23739
  }
23686
23740
 
23687
23741
 
@@ -24485,4 +24539,4 @@ async function __wbg_init(module_or_path) {
24485
24539
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
24486
24540
 
24487
24541
  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, module$1 as __wasm_url, __wbg_init, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, setupLogging };
24488
- //# sourceMappingURL=Cargo-D44KIErf-BV9FX7WD.js.map
24542
+ //# sourceMappingURL=Cargo-Bwjf7IkR-Cz54YuXA.js.map