@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/{workers/Cargo-M1xGvXNQ-M1xGvXNQ.js → Cargo-D44KIErf.js} +100 -75
- package/dist/Cargo-D44KIErf.js.map +1 -0
- package/dist/api-types.d.ts +65 -7
- package/dist/assets/miden_client_web.wasm +0 -0
- package/dist/index.js +117 -26
- package/dist/index.js.map +1 -1
- package/dist/wasm.js +11 -1
- package/dist/wasm.js.map +1 -1
- package/dist/{Cargo-M1xGvXNQ.js → workers/Cargo-D44KIErf-BV9FX7WD.js} +100 -74
- package/dist/workers/Cargo-D44KIErf-BV9FX7WD.js.map +1 -0
- package/dist/workers/assets/miden_client_web.wasm +0 -0
- package/dist/workers/web-client-methods-worker.js +24657 -3
- package/dist/workers/web-client-methods-worker.js.map +1 -1
- package/dist/workers/web-client-methods-worker.module.js +551 -0
- package/dist/workers/web-client-methods-worker.module.js.map +1 -0
- package/package.json +3 -1
- package/dist/Cargo-M1xGvXNQ.js.map +0 -1
- package/dist/workers/Cargo-M1xGvXNQ-M1xGvXNQ.js.map +0 -1
|
@@ -8766,12 +8766,40 @@ async function insertBlockHeader(dbId, blockNum, header, partialBlockchainPeaks,
|
|
|
8766
8766
|
partialBlockchainPeaks,
|
|
8767
8767
|
hasClientNotes: hasClientNotes.toString(),
|
|
8768
8768
|
};
|
|
8769
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22395
|
+
__wbg_getAccountIds_374185f86d9b2508: function(arg0, arg1) {
|
|
22368
22396
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
22369
22397
|
return ret;
|
|
22370
22398
|
},
|
|
22371
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22439
|
+
__wbg_getAllAccountHeaders_4d0a4adcb4b10a13: function(arg0, arg1) {
|
|
22412
22440
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
22413
22441
|
return ret;
|
|
22414
22442
|
},
|
|
22415
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22511
|
+
__wbg_getNoteTags_39dfaf5125d790dc: function(arg0, arg1) {
|
|
22484
22512
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
22485
22513
|
return ret;
|
|
22486
22514
|
},
|
|
22487
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22533
|
+
__wbg_getPartialBlockchainNodesAll_674394a46a9a0113: function(arg0, arg1) {
|
|
22506
22534
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
22507
22535
|
return ret;
|
|
22508
22536
|
},
|
|
22509
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22586
|
+
__wbg_getTrackedBlockHeaderNumbers_d356fdc789b13156: function(arg0, arg1) {
|
|
22559
22587
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
22560
22588
|
return ret;
|
|
22561
22589
|
},
|
|
22562
|
-
|
|
22590
|
+
__wbg_getTrackedBlockHeaders_b4f9af19352e20e4: function(arg0, arg1) {
|
|
22563
22591
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
22564
22592
|
return ret;
|
|
22565
22593
|
},
|
|
22566
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22821
|
+
__wbg_listSettingKeys_df89abca52542f21: function(arg0, arg1) {
|
|
22794
22822
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
22795
22823
|
return ret;
|
|
22796
22824
|
},
|
|
22797
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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:
|
|
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:
|
|
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,5 @@ 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
|
-
|
|
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-M1xGvXNQ.js.map
|
|
24486
|
+
export { Account, AccountArray, AccountBuilder, AccountBuilderResult, AccountCode, AccountComponent, AccountComponentCode, AccountDelta, AccountFile, AccountHeader, AccountId, AccountIdArray, AccountInterface, AccountProof, AccountReader, AccountStatus, AccountStorage, AccountStorageDelta, AccountStorageMode, AccountStorageRequirements, AccountType, AccountVaultDelta, Address, AdviceInputs, AdviceMap, AssetVault, AuthFalcon512RpoMultisigConfig, AuthScheme, AuthSecretKey, BasicFungibleFaucetComponent, BlockHeader, CodeBuilder, CommittedNote, ConsumableNoteRecord, Endpoint, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkId, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, NoteAttachmentKind, NoteAttachmentScheme, NoteConsumability, NoteConsumptionStatus, NoteDetails, NoteDetailsAndTag, NoteDetailsAndTagArray, NoteExecutionHint, NoteExportFormat, NoteFile, NoteFilter, NoteFilterTypes, NoteHeader, NoteId, NoteIdAndArgs, NoteIdAndArgsArray, NoteInclusionProof, NoteLocation, NoteMetadata, NoteRecipient, NoteRecipientArray, NoteScript, NoteStorage, NoteSyncBlock, NoteSyncInfo, NoteTag, NoteType, OutputNote, OutputNoteArray, OutputNoteRecord, OutputNoteState, OutputNotes, Package, PartialNote, Poseidon2, ProcedureThreshold, Program, ProvenTransaction, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, StorageMapInfo, StorageMapUpdate, StorageSlot, StorageSlotArray, SyncSummary, TestUtils, TokenSymbol, TransactionArgs, TransactionFilter, TransactionId, TransactionProver, TransactionRecord, TransactionRequest, TransactionRequestBuilder, TransactionResult, TransactionScript, TransactionScriptInputPair, TransactionScriptInputPairArray, TransactionStatus, TransactionStoreUpdate, TransactionSummary, WebClient, WebKeystoreApi, Word, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, setupLogging , __wbg_init, module$1 as __wasm_url };
|
|
24487
|
+
//# sourceMappingURL=Cargo-D44KIErf.js.map
|