@miden-sdk/miden-sdk 0.14.0 → 0.14.2

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.
package/dist/wasm.js CHANGED
@@ -4,7 +4,17 @@
4
4
  async function loadWasm() {
5
5
  let wasmModule;
6
6
  if (!import.meta.env || (import.meta.env && !import.meta.env.SSR)) {
7
- wasmModule = await import('./Cargo-M1xGvXNQ.js');
7
+ wasmModule = await import('./Cargo-D44KIErf.js');
8
+ // The Cargo glue's __wbg_init TLA is stripped by the rollup build to
9
+ // prevent blocking WKWebView module evaluation. Call it explicitly here
10
+ // with the WASM URL that the Cargo glue pre-resolves (relative to its
11
+ // own import.meta.url, which downstream bundlers handle correctly).
12
+ if (wasmModule && typeof wasmModule.__wbg_init === "function") {
13
+ await wasmModule.__wbg_init({
14
+ // eslint-disable-next-line camelcase -- wasm-bindgen init API parameter name
15
+ module_or_path: wasmModule.__wasm_url,
16
+ });
17
+ }
8
18
  }
9
19
  return wasmModule;
10
20
  }
package/dist/wasm.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"wasm.js","sources":["../js/wasm.js"],"sourcesContent":["// This is a documented workaround that should avoid issues with Vite projects\n// https://github.com/wasm-tool/rollup-plugin-rust?tab=readme-ov-file#usage-with-vite\n// Also, this effectively disables SSR.\nasync function loadWasm() {\n let wasmModule;\n if (!import.meta.env || (import.meta.env && !import.meta.env.SSR)) {\n wasmModule = await import(\"../Cargo.toml\");\n }\n return wasmModule;\n}\nexport default loadWasm;\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA,eAAe,QAAQ,GAAG;AAC1B,EAAE,IAAI,UAAU;AAChB,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;AACrE,IAAI,UAAU,GAAG,MAAM,OAAO,qBAAe,CAAC;AAC9C,EAAE;AACF,EAAE,OAAO,UAAU;AACnB;;;;"}
1
+ {"version":3,"file":"wasm.js","sources":["../js/wasm.js"],"sourcesContent":["// This is a documented workaround that should avoid issues with Vite projects\n// https://github.com/wasm-tool/rollup-plugin-rust?tab=readme-ov-file#usage-with-vite\n// Also, this effectively disables SSR.\nasync function loadWasm() {\n let wasmModule;\n if (!import.meta.env || (import.meta.env && !import.meta.env.SSR)) {\n wasmModule = await import(\"../Cargo.toml\");\n // The Cargo glue's __wbg_init TLA is stripped by the rollup build to\n // prevent blocking WKWebView module evaluation. Call it explicitly here\n // with the WASM URL that the Cargo glue pre-resolves (relative to its\n // own import.meta.url, which downstream bundlers handle correctly).\n if (wasmModule && typeof wasmModule.__wbg_init === \"function\") {\n await wasmModule.__wbg_init({\n // eslint-disable-next-line camelcase -- wasm-bindgen init API parameter name\n module_or_path: wasmModule.__wasm_url,\n });\n }\n }\n return wasmModule;\n}\nexport default loadWasm;\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA,eAAe,QAAQ,GAAG;AAC1B,EAAE,IAAI,UAAU;AAChB,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;AACrE,IAAI,UAAU,GAAG,MAAM,OAAO,qBAAe,CAAC;AAC9C;AACA;AACA;AACA;AACA,IAAI,IAAI,UAAU,IAAI,OAAO,UAAU,CAAC,UAAU,KAAK,UAAU,EAAE;AACnE,MAAM,MAAM,UAAU,CAAC,UAAU,CAAC;AAClC;AACA,QAAQ,cAAc,EAAE,UAAU,CAAC,UAAU;AAC7C,OAAO,CAAC;AACR,IAAI;AACJ,EAAE;AACF,EAAE,OAAO,UAAU;AACnB;;;;"}
@@ -8766,12 +8766,40 @@ async function insertBlockHeader(dbId, blockNum, header, partialBlockchainPeaks,
8766
8766
  partialBlockchainPeaks,
8767
8767
  hasClientNotes: hasClientNotes.toString(),
8768
8768
  };
8769
- 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
+ });
8770
8793
  }
8771
8794
  catch (err) {
8772
8795
  logWebStoreError(err);
8773
8796
  }
8774
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
+ }
8775
8803
  async function insertPartialBlockchainNodes(dbId, ids, nodes) {
8776
8804
  try {
8777
8805
  const db = getDatabase(dbId);
@@ -22074,7 +22102,7 @@ function __wbg_get_imports() {
22074
22102
  const ret = AccountStorage.__wrap(arg0);
22075
22103
  return ret;
22076
22104
  },
22077
- __wbg_addNoteTag_73f23a831a6e3b6a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22105
+ __wbg_addNoteTag_fa87368c2b7b49e0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22078
22106
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22079
22107
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22080
22108
  let v1;
@@ -22097,15 +22125,15 @@ function __wbg_get_imports() {
22097
22125
  __wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
22098
22126
  arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
22099
22127
  }, arguments); },
22100
- __wbg_applyFullAccountState_0d845d902fcf8977: function(arg0, arg1, arg2) {
22128
+ __wbg_applyFullAccountState_a1dff98a8491308f: function(arg0, arg1, arg2) {
22101
22129
  const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
22102
22130
  return ret;
22103
22131
  },
22104
- __wbg_applyStateSync_1bcd5a63e003b122: function(arg0, arg1, arg2) {
22132
+ __wbg_applyStateSync_fe1497caf76fc042: function(arg0, arg1, arg2) {
22105
22133
  const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
22106
22134
  return ret;
22107
22135
  },
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) {
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) {
22109
22137
  let deferred0_0;
22110
22138
  let deferred0_1;
22111
22139
  let deferred1_0;
@@ -22240,7 +22268,7 @@ function __wbg_get_imports() {
22240
22268
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22241
22269
  }
22242
22270
  },
22243
- __wbg_exportStore_67cb33e10694e807: function(arg0, arg1) {
22271
+ __wbg_exportStore_fe0da1ec1fecca92: function(arg0, arg1) {
22244
22272
  const ret = exportStore(getStringFromWasm0(arg0, arg1));
22245
22273
  return ret;
22246
22274
  },
@@ -22272,7 +22300,7 @@ function __wbg_get_imports() {
22272
22300
  const ret = FetchedNote.__wrap(arg0);
22273
22301
  return ret;
22274
22302
  },
22275
- __wbg_forceImportStore_680f1469df7413c7: function(arg0, arg1, arg2) {
22303
+ __wbg_forceImportStore_718c17745304e8dd: function(arg0, arg1, arg2) {
22276
22304
  const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
22277
22305
  return ret;
22278
22306
  },
@@ -22292,7 +22320,7 @@ function __wbg_get_imports() {
22292
22320
  const ret = FungibleAssetDeltaItem.__wrap(arg0);
22293
22321
  return ret;
22294
22322
  },
22295
- __wbg_getAccountAddresses_8baffdc3eeb998cf: function(arg0, arg1, arg2, arg3) {
22323
+ __wbg_getAccountAddresses_9aa0a7707bc6f600: function(arg0, arg1, arg2, arg3) {
22296
22324
  let deferred0_0;
22297
22325
  let deferred0_1;
22298
22326
  try {
@@ -22304,7 +22332,7 @@ function __wbg_get_imports() {
22304
22332
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22305
22333
  }
22306
22334
  },
22307
- __wbg_getAccountAuthByPubKeyCommitment_e43b4fa523c75690: function(arg0, arg1, arg2, arg3) {
22335
+ __wbg_getAccountAuthByPubKeyCommitment_f35bdd747fb96ad1: function(arg0, arg1, arg2, arg3) {
22308
22336
  let deferred0_0;
22309
22337
  let deferred0_1;
22310
22338
  try {
@@ -22316,7 +22344,7 @@ function __wbg_get_imports() {
22316
22344
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22317
22345
  }
22318
22346
  },
22319
- __wbg_getAccountCode_2c01e0b1d6e4c0c4: function(arg0, arg1, arg2, arg3) {
22347
+ __wbg_getAccountCode_8108c2eb819e8dcb: function(arg0, arg1, arg2, arg3) {
22320
22348
  let deferred0_0;
22321
22349
  let deferred0_1;
22322
22350
  try {
@@ -22328,7 +22356,7 @@ function __wbg_get_imports() {
22328
22356
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22329
22357
  }
22330
22358
  },
22331
- __wbg_getAccountHeaderByCommitment_1937c881a4ffe36d: function(arg0, arg1, arg2, arg3) {
22359
+ __wbg_getAccountHeaderByCommitment_e5e1f7ed01a8a99f: function(arg0, arg1, arg2, arg3) {
22332
22360
  let deferred0_0;
22333
22361
  let deferred0_1;
22334
22362
  try {
@@ -22340,7 +22368,7 @@ function __wbg_get_imports() {
22340
22368
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22341
22369
  }
22342
22370
  },
22343
- __wbg_getAccountHeader_31cd380543ca54bb: function(arg0, arg1, arg2, arg3) {
22371
+ __wbg_getAccountHeader_857048417ad1f6dc: function(arg0, arg1, arg2, arg3) {
22344
22372
  let deferred0_0;
22345
22373
  let deferred0_1;
22346
22374
  try {
@@ -22352,7 +22380,7 @@ function __wbg_get_imports() {
22352
22380
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22353
22381
  }
22354
22382
  },
22355
- __wbg_getAccountIdByKeyCommitment_7e1627233d417ef0: function(arg0, arg1, arg2, arg3) {
22383
+ __wbg_getAccountIdByKeyCommitment_0e1f9cd391408d5b: function(arg0, arg1, arg2, arg3) {
22356
22384
  let deferred0_0;
22357
22385
  let deferred0_1;
22358
22386
  try {
@@ -22364,11 +22392,11 @@ function __wbg_get_imports() {
22364
22392
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22365
22393
  }
22366
22394
  },
22367
- __wbg_getAccountIds_880fce01ae9ed908: function(arg0, arg1) {
22395
+ __wbg_getAccountIds_374185f86d9b2508: function(arg0, arg1) {
22368
22396
  const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
22369
22397
  return ret;
22370
22398
  },
22371
- __wbg_getAccountStorageMaps_77f9e51e9f936384: function(arg0, arg1, arg2, arg3) {
22399
+ __wbg_getAccountStorageMaps_1146cad7bd60117d: function(arg0, arg1, arg2, arg3) {
22372
22400
  let deferred0_0;
22373
22401
  let deferred0_1;
22374
22402
  try {
@@ -22380,7 +22408,7 @@ function __wbg_get_imports() {
22380
22408
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22381
22409
  }
22382
22410
  },
22383
- __wbg_getAccountStorage_b81f8fc1f4174bf4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22411
+ __wbg_getAccountStorage_78becb02283e8527: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22384
22412
  let deferred0_0;
22385
22413
  let deferred0_1;
22386
22414
  try {
@@ -22394,7 +22422,7 @@ function __wbg_get_imports() {
22394
22422
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22395
22423
  }
22396
22424
  },
22397
- __wbg_getAccountVaultAssets_3aaa86634b9c362e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22425
+ __wbg_getAccountVaultAssets_36cfbde063265d57: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22398
22426
  let deferred0_0;
22399
22427
  let deferred0_1;
22400
22428
  try {
@@ -22408,23 +22436,23 @@ function __wbg_get_imports() {
22408
22436
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22409
22437
  }
22410
22438
  },
22411
- __wbg_getAllAccountHeaders_de7adaa6ce6f8022: function(arg0, arg1) {
22439
+ __wbg_getAllAccountHeaders_4d0a4adcb4b10a13: function(arg0, arg1) {
22412
22440
  const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
22413
22441
  return ret;
22414
22442
  },
22415
- __wbg_getBlockHeaders_1a3602f84753a649: function(arg0, arg1, arg2, arg3) {
22443
+ __wbg_getBlockHeaders_76e66b6eccbebd5d: function(arg0, arg1, arg2, arg3) {
22416
22444
  var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
22417
22445
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22418
22446
  const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
22419
22447
  return ret;
22420
22448
  },
22421
- __wbg_getForeignAccountCode_dcbbf63304933fb9: function(arg0, arg1, arg2, arg3) {
22449
+ __wbg_getForeignAccountCode_ec11efbe2165328c: function(arg0, arg1, arg2, arg3) {
22422
22450
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22423
22451
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22424
22452
  const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
22425
22453
  return ret;
22426
22454
  },
22427
- __wbg_getInputNoteByOffset_afd8189342d490ba: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22455
+ __wbg_getInputNoteByOffset_abb533ed69954028: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
22428
22456
  let deferred1_0;
22429
22457
  let deferred1_1;
22430
22458
  try {
@@ -22438,25 +22466,25 @@ function __wbg_get_imports() {
22438
22466
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22439
22467
  }
22440
22468
  },
22441
- __wbg_getInputNotesFromIds_e24a7b2888455307: function(arg0, arg1, arg2, arg3) {
22469
+ __wbg_getInputNotesFromIds_e280071c131a5249: function(arg0, arg1, arg2, arg3) {
22442
22470
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22443
22471
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22444
22472
  const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22445
22473
  return ret;
22446
22474
  },
22447
- __wbg_getInputNotesFromNullifiers_96cb2e010b7806d6: function(arg0, arg1, arg2, arg3) {
22475
+ __wbg_getInputNotesFromNullifiers_eeec8f1e28e95156: function(arg0, arg1, arg2, arg3) {
22448
22476
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22449
22477
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22450
22478
  const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22451
22479
  return ret;
22452
22480
  },
22453
- __wbg_getInputNotes_51ceedc136efe8a5: function(arg0, arg1, arg2, arg3) {
22481
+ __wbg_getInputNotes_aa6ff856b28a9a3b: function(arg0, arg1, arg2, arg3) {
22454
22482
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22455
22483
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22456
22484
  const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
22457
22485
  return ret;
22458
22486
  },
22459
- __wbg_getKeyCommitmentsByAccountId_e7f6c3397b516c99: function(arg0, arg1, arg2, arg3) {
22487
+ __wbg_getKeyCommitmentsByAccountId_51685ac35cc43f90: function(arg0, arg1, arg2, arg3) {
22460
22488
  let deferred0_0;
22461
22489
  let deferred0_1;
22462
22490
  try {
@@ -22468,7 +22496,7 @@ function __wbg_get_imports() {
22468
22496
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22469
22497
  }
22470
22498
  },
22471
- __wbg_getNoteScript_ebcab1b756e132b7: function(arg0, arg1, arg2, arg3) {
22499
+ __wbg_getNoteScript_aae2341fde5e8aab: function(arg0, arg1, arg2, arg3) {
22472
22500
  let deferred0_0;
22473
22501
  let deferred0_1;
22474
22502
  try {
@@ -22480,33 +22508,33 @@ function __wbg_get_imports() {
22480
22508
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22481
22509
  }
22482
22510
  },
22483
- __wbg_getNoteTags_430e9c90b199fcaf: function(arg0, arg1) {
22511
+ __wbg_getNoteTags_39dfaf5125d790dc: function(arg0, arg1) {
22484
22512
  const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
22485
22513
  return ret;
22486
22514
  },
22487
- __wbg_getOutputNotesFromIds_5e6d42b0b3a25b4b: function(arg0, arg1, arg2, arg3) {
22515
+ __wbg_getOutputNotesFromIds_e4efafbf2d047fe6: function(arg0, arg1, arg2, arg3) {
22488
22516
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22489
22517
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22490
22518
  const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
22491
22519
  return ret;
22492
22520
  },
22493
- __wbg_getOutputNotesFromNullifiers_5a9fc255157b6fbd: function(arg0, arg1, arg2, arg3) {
22521
+ __wbg_getOutputNotesFromNullifiers_7d985f82ae1db2be: function(arg0, arg1, arg2, arg3) {
22494
22522
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22495
22523
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22496
22524
  const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
22497
22525
  return ret;
22498
22526
  },
22499
- __wbg_getOutputNotes_4809f2cd6485ad68: function(arg0, arg1, arg2, arg3) {
22527
+ __wbg_getOutputNotes_cdb4518075c647e5: function(arg0, arg1, arg2, arg3) {
22500
22528
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22501
22529
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22502
22530
  const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
22503
22531
  return ret;
22504
22532
  },
22505
- __wbg_getPartialBlockchainNodesAll_674fcd3d1955cfaa: function(arg0, arg1) {
22533
+ __wbg_getPartialBlockchainNodesAll_674394a46a9a0113: function(arg0, arg1) {
22506
22534
  const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
22507
22535
  return ret;
22508
22536
  },
22509
- __wbg_getPartialBlockchainNodesUpToInOrderIndex_ce09946942839df4: function(arg0, arg1, arg2, arg3) {
22537
+ __wbg_getPartialBlockchainNodesUpToInOrderIndex_4b120d8c31f15e29: function(arg0, arg1, arg2, arg3) {
22510
22538
  let deferred0_0;
22511
22539
  let deferred0_1;
22512
22540
  try {
@@ -22518,13 +22546,13 @@ function __wbg_get_imports() {
22518
22546
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22519
22547
  }
22520
22548
  },
22521
- __wbg_getPartialBlockchainNodes_8a5579c21093ba83: function(arg0, arg1, arg2, arg3) {
22549
+ __wbg_getPartialBlockchainNodes_9486ef4d56f6a4d4: function(arg0, arg1, arg2, arg3) {
22522
22550
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22523
22551
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22524
22552
  const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
22525
22553
  return ret;
22526
22554
  },
22527
- __wbg_getPartialBlockchainPeaksByBlockNum_d6eeb9e6a1fba098: function(arg0, arg1, arg2) {
22555
+ __wbg_getPartialBlockchainPeaksByBlockNum_3ebcf8c15fb61638: function(arg0, arg1, arg2) {
22528
22556
  const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
22529
22557
  return ret;
22530
22558
  },
@@ -22535,7 +22563,7 @@ function __wbg_get_imports() {
22535
22563
  const ret = arg0.getReader();
22536
22564
  return ret;
22537
22565
  }, arguments); },
22538
- __wbg_getSetting_1d08025676323ba9: function(arg0, arg1, arg2, arg3) {
22566
+ __wbg_getSetting_dd6484d1ab6ab785: function(arg0, arg1, arg2, arg3) {
22539
22567
  let deferred0_0;
22540
22568
  let deferred0_1;
22541
22569
  try {
@@ -22547,7 +22575,7 @@ function __wbg_get_imports() {
22547
22575
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22548
22576
  }
22549
22577
  },
22550
- __wbg_getSyncHeight_945bdd99f3962099: function(arg0, arg1) {
22578
+ __wbg_getSyncHeight_bdfc465844a19b19: function(arg0, arg1) {
22551
22579
  const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
22552
22580
  return ret;
22553
22581
  },
@@ -22555,15 +22583,15 @@ function __wbg_get_imports() {
22555
22583
  const ret = arg0.getTime();
22556
22584
  return ret;
22557
22585
  },
22558
- __wbg_getTrackedBlockHeaderNumbers_63af295c749079e4: function(arg0, arg1) {
22586
+ __wbg_getTrackedBlockHeaderNumbers_d356fdc789b13156: function(arg0, arg1) {
22559
22587
  const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
22560
22588
  return ret;
22561
22589
  },
22562
- __wbg_getTrackedBlockHeaders_3e40bc541ec5a490: function(arg0, arg1) {
22590
+ __wbg_getTrackedBlockHeaders_b4f9af19352e20e4: function(arg0, arg1) {
22563
22591
  const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
22564
22592
  return ret;
22565
22593
  },
22566
- __wbg_getTransactions_3cd589dfbcd48460: function(arg0, arg1, arg2, arg3) {
22594
+ __wbg_getTransactions_ebe5e94773cc1c65: function(arg0, arg1, arg2, arg3) {
22567
22595
  let deferred0_0;
22568
22596
  let deferred0_1;
22569
22597
  try {
@@ -22575,7 +22603,7 @@ function __wbg_get_imports() {
22575
22603
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22576
22604
  }
22577
22605
  },
22578
- __wbg_getUnspentInputNoteNullifiers_f403872bd5cdee30: function(arg0, arg1) {
22606
+ __wbg_getUnspentInputNoteNullifiers_aec3bc0e3be99738: function(arg0, arg1) {
22579
22607
  const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
22580
22608
  return ret;
22581
22609
  },
@@ -22619,7 +22647,7 @@ function __wbg_get_imports() {
22619
22647
  const ret = InputNoteRecord.__wrap(arg0);
22620
22648
  return ret;
22621
22649
  },
22622
- __wbg_insertAccountAddress_010cd84f15a2fba0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22650
+ __wbg_insertAccountAddress_0af2cb0ca4b54516: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22623
22651
  let deferred0_0;
22624
22652
  let deferred0_1;
22625
22653
  try {
@@ -22633,7 +22661,7 @@ function __wbg_get_imports() {
22633
22661
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22634
22662
  }
22635
22663
  },
22636
- __wbg_insertAccountAuth_47c33fb7c61f1aea: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22664
+ __wbg_insertAccountAuth_fb13b5e942fea58f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22637
22665
  let deferred0_0;
22638
22666
  let deferred0_1;
22639
22667
  let deferred1_0;
@@ -22650,7 +22678,7 @@ function __wbg_get_imports() {
22650
22678
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22651
22679
  }
22652
22680
  },
22653
- __wbg_insertAccountKeyMapping_b94e28f85f7038ef: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22681
+ __wbg_insertAccountKeyMapping_ecada5f7c399925f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22654
22682
  let deferred0_0;
22655
22683
  let deferred0_1;
22656
22684
  let deferred1_0;
@@ -22667,7 +22695,7 @@ function __wbg_get_imports() {
22667
22695
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
22668
22696
  }
22669
22697
  },
22670
- __wbg_insertBlockHeader_f5ae91cdec3dcadd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22698
+ __wbg_insertBlockHeader_16059888cf59b810: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
22671
22699
  var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
22672
22700
  wasm.__wbindgen_free(arg3, arg4 * 1, 1);
22673
22701
  var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
@@ -22675,7 +22703,7 @@ function __wbg_get_imports() {
22675
22703
  const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
22676
22704
  return ret;
22677
22705
  },
22678
- __wbg_insertPartialBlockchainNodes_b0cb6befaab01e5f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22706
+ __wbg_insertPartialBlockchainNodes_ace6ebaad3e7d57f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22679
22707
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
22680
22708
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
22681
22709
  var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
@@ -22683,7 +22711,7 @@ function __wbg_get_imports() {
22683
22711
  const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
22684
22712
  return ret;
22685
22713
  },
22686
- __wbg_insertSetting_db9299455a50a86e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22714
+ __wbg_insertSetting_121573b0ab9da562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22687
22715
  let deferred0_0;
22688
22716
  let deferred0_1;
22689
22717
  try {
@@ -22697,7 +22725,7 @@ function __wbg_get_imports() {
22697
22725
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
22698
22726
  }
22699
22727
  },
22700
- __wbg_insertTransactionScript_0ce3812a118db4dd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22728
+ __wbg_insertTransactionScript_864f994618f1a3f8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
22701
22729
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
22702
22730
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
22703
22731
  let v1;
@@ -22790,11 +22818,11 @@ function __wbg_get_imports() {
22790
22818
  const ret = arg0.length;
22791
22819
  return ret;
22792
22820
  },
22793
- __wbg_listSettingKeys_0a51e3f4cad7f036: function(arg0, arg1) {
22821
+ __wbg_listSettingKeys_df89abca52542f21: function(arg0, arg1) {
22794
22822
  const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
22795
22823
  return ret;
22796
22824
  },
22797
- __wbg_lockAccount_8a141fe8afe53d1f: function(arg0, arg1, arg2, arg3) {
22825
+ __wbg_lockAccount_6c6cd48dd4f916a5: function(arg0, arg1, arg2, arg3) {
22798
22826
  let deferred0_0;
22799
22827
  let deferred0_1;
22800
22828
  try {
@@ -22985,7 +23013,7 @@ function __wbg_get_imports() {
22985
23013
  const ret = NoteTag.__unwrap(arg0);
22986
23014
  return ret;
22987
23015
  },
22988
- __wbg_openDatabase_cde23913ad00e851: function(arg0, arg1, arg2, arg3) {
23016
+ __wbg_openDatabase_b1424a6b7362c69c: function(arg0, arg1, arg2, arg3) {
22989
23017
  const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
22990
23018
  return ret;
22991
23019
  },
@@ -23016,7 +23044,7 @@ function __wbg_get_imports() {
23016
23044
  const ret = ProvenTransaction.__wrap(arg0);
23017
23045
  return ret;
23018
23046
  },
23019
- __wbg_pruneAccountHistory_354251ecd3d1db75: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23047
+ __wbg_pruneAccountHistory_22e8506d45f44fe7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23020
23048
  let deferred0_0;
23021
23049
  let deferred0_1;
23022
23050
  let deferred1_0;
@@ -23033,7 +23061,7 @@ function __wbg_get_imports() {
23033
23061
  wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
23034
23062
  }
23035
23063
  },
23036
- __wbg_pruneIrrelevantBlocks_dc97d14f31702d1f: function(arg0, arg1) {
23064
+ __wbg_pruneIrrelevantBlocks_87daff49119b4c5f: function(arg0, arg1) {
23037
23065
  const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
23038
23066
  return ret;
23039
23067
  },
@@ -23051,13 +23079,13 @@ function __wbg_get_imports() {
23051
23079
  __wbg_releaseLock_aa5846c2494b3032: function(arg0) {
23052
23080
  arg0.releaseLock();
23053
23081
  },
23054
- __wbg_removeAccountAddress_3f0e0ecc294d79fa: function(arg0, arg1, arg2, arg3) {
23082
+ __wbg_removeAccountAddress_dde849df5c7706f8: function(arg0, arg1, arg2, arg3) {
23055
23083
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23056
23084
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23057
23085
  const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
23058
23086
  return ret;
23059
23087
  },
23060
- __wbg_removeAccountAuth_0c07288e7cb5a02d: function(arg0, arg1, arg2, arg3) {
23088
+ __wbg_removeAccountAuth_50e297f4ae902348: function(arg0, arg1, arg2, arg3) {
23061
23089
  let deferred0_0;
23062
23090
  let deferred0_1;
23063
23091
  try {
@@ -23069,7 +23097,7 @@ function __wbg_get_imports() {
23069
23097
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23070
23098
  }
23071
23099
  },
23072
- __wbg_removeAllMappingsForKey_17fa2424f229b2ce: function(arg0, arg1, arg2, arg3) {
23100
+ __wbg_removeAllMappingsForKey_1e0d5e23c7f96514: function(arg0, arg1, arg2, arg3) {
23073
23101
  let deferred0_0;
23074
23102
  let deferred0_1;
23075
23103
  try {
@@ -23081,7 +23109,7 @@ function __wbg_get_imports() {
23081
23109
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23082
23110
  }
23083
23111
  },
23084
- __wbg_removeNoteTag_3d017b00fc0fe3f2: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23112
+ __wbg_removeNoteTag_92477b25e0e47794: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23085
23113
  var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
23086
23114
  wasm.__wbindgen_free(arg2, arg3 * 1, 1);
23087
23115
  let v1;
@@ -23097,7 +23125,7 @@ function __wbg_get_imports() {
23097
23125
  const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
23098
23126
  return ret;
23099
23127
  },
23100
- __wbg_removeSetting_e2432798ff986675: function(arg0, arg1, arg2, arg3) {
23128
+ __wbg_removeSetting_fc7204b0de24b573: function(arg0, arg1, arg2, arg3) {
23101
23129
  let deferred0_0;
23102
23130
  let deferred0_1;
23103
23131
  try {
@@ -23289,13 +23317,13 @@ function __wbg_get_imports() {
23289
23317
  const ret = TransactionSummary.__wrap(arg0);
23290
23318
  return ret;
23291
23319
  },
23292
- __wbg_undoAccountStates_f1df265279e53b63: function(arg0, arg1, arg2, arg3) {
23320
+ __wbg_undoAccountStates_1c2427746f0e5c21: function(arg0, arg1, arg2, arg3) {
23293
23321
  var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
23294
23322
  wasm.__wbindgen_free(arg2, arg3 * 4, 4);
23295
23323
  const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
23296
23324
  return ret;
23297
23325
  },
23298
- __wbg_upsertAccountCode_a4ac11852963005d: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23326
+ __wbg_upsertAccountCode_35e59053ef5055ac: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23299
23327
  let deferred0_0;
23300
23328
  let deferred0_1;
23301
23329
  try {
@@ -23309,7 +23337,7 @@ function __wbg_get_imports() {
23309
23337
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23310
23338
  }
23311
23339
  },
23312
- __wbg_upsertAccountRecord_e676487b1aeca41f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23340
+ __wbg_upsertAccountRecord_f56ec255945d78ab: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
23313
23341
  let deferred0_0;
23314
23342
  let deferred0_1;
23315
23343
  let deferred1_0;
@@ -23351,7 +23379,7 @@ function __wbg_get_imports() {
23351
23379
  wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
23352
23380
  }
23353
23381
  },
23354
- __wbg_upsertAccountStorage_27c35c950278ccb7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23382
+ __wbg_upsertAccountStorage_6f9f8d1619c42121: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23355
23383
  let deferred0_0;
23356
23384
  let deferred0_1;
23357
23385
  try {
@@ -23365,7 +23393,7 @@ function __wbg_get_imports() {
23365
23393
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23366
23394
  }
23367
23395
  },
23368
- __wbg_upsertForeignAccountCode_ca44fb2bb646a2e5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23396
+ __wbg_upsertForeignAccountCode_c39efae265a26a70: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
23369
23397
  let deferred0_0;
23370
23398
  let deferred0_1;
23371
23399
  let deferred2_0;
@@ -23384,7 +23412,7 @@ function __wbg_get_imports() {
23384
23412
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23385
23413
  }
23386
23414
  },
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) {
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) {
23388
23416
  let deferred0_0;
23389
23417
  let deferred0_1;
23390
23418
  let deferred4_0;
@@ -23426,7 +23454,7 @@ function __wbg_get_imports() {
23426
23454
  wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
23427
23455
  }
23428
23456
  },
23429
- __wbg_upsertNoteScript_a3c063a2acfa4780: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23457
+ __wbg_upsertNoteScript_7ed0c29e6c2adebe: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23430
23458
  let deferred0_0;
23431
23459
  let deferred0_1;
23432
23460
  try {
@@ -23440,7 +23468,7 @@ function __wbg_get_imports() {
23440
23468
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23441
23469
  }
23442
23470
  },
23443
- __wbg_upsertOutputNote_46d6890a38b77f16: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23471
+ __wbg_upsertOutputNote_378e42d786a31880: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
23444
23472
  let deferred0_0;
23445
23473
  let deferred0_1;
23446
23474
  let deferred2_0;
@@ -23468,7 +23496,7 @@ function __wbg_get_imports() {
23468
23496
  wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
23469
23497
  }
23470
23498
  },
23471
- __wbg_upsertStorageMapEntries_f21a9df772c69fc9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23499
+ __wbg_upsertStorageMapEntries_18f1f110157c89fd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23472
23500
  let deferred0_0;
23473
23501
  let deferred0_1;
23474
23502
  try {
@@ -23482,7 +23510,7 @@ function __wbg_get_imports() {
23482
23510
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23483
23511
  }
23484
23512
  },
23485
- __wbg_upsertTransactionRecord_0bc4df87c698be51: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23513
+ __wbg_upsertTransactionRecord_b471cc31ac2482e5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
23486
23514
  let deferred0_0;
23487
23515
  let deferred0_1;
23488
23516
  try {
@@ -23503,7 +23531,7 @@ function __wbg_get_imports() {
23503
23531
  wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
23504
23532
  }
23505
23533
  },
23506
- __wbg_upsertVaultAssets_ceae9eb0e4c816f0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23534
+ __wbg_upsertVaultAssets_f6f1c6ab846352e0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
23507
23535
  let deferred0_0;
23508
23536
  let deferred0_1;
23509
23537
  try {
@@ -23534,12 +23562,12 @@ function __wbg_get_imports() {
23534
23562
  return ret;
23535
23563
  },
23536
23564
  __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`.
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`.
23538
23566
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0);
23539
23567
  return ret;
23540
23568
  },
23541
23569
  __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`.
23570
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [], shim_idx: 361, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
23543
23571
  const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0);
23544
23572
  return ret;
23545
23573
  },
@@ -24455,8 +24483,6 @@ async function __wbg_init(module_or_path) {
24455
24483
  }
24456
24484
 
24457
24485
  const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
24458
-
24459
- await __wbg_init({ module_or_path: module$1 });
24460
24486
 
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
24487
+ 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