@miden-sdk/miden-sdk 0.14.8 → 0.14.10
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/mt/{Cargo-CUP4fvtE.js → Cargo-DcB9UMnw.js} +96 -69
- package/dist/mt/{Cargo-CUP4fvtE.js.map → Cargo-DcB9UMnw.js.map} +1 -1
- package/dist/mt/api-types.d.ts +15 -0
- package/dist/mt/assets/miden_client_web.wasm +0 -0
- package/dist/mt/crates/miden_client_web.d.ts +22 -0
- package/dist/mt/eager.js +1 -1
- package/dist/mt/index.d.ts +4 -2
- package/dist/mt/index.js +57 -13
- package/dist/mt/index.js.map +1 -1
- package/dist/mt/wasm.js +1 -1
- package/dist/mt/workerHelpers.js +1 -1
- package/dist/mt/workers/{Cargo-CUP4fvtE-DQbaP5ul.js → Cargo-DcB9UMnw-w3wXmKCr.js} +96 -69
- package/dist/mt/workers/{Cargo-CUP4fvtE-DQbaP5ul.js.map → Cargo-DcB9UMnw-w3wXmKCr.js.map} +1 -1
- package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
- package/dist/mt/workers/web-client-methods-worker.js +97 -70
- package/dist/mt/workers/web-client-methods-worker.js.map +1 -1
- package/dist/mt/workers/web-client-methods-worker.module.js +1 -1
- package/dist/mt/workers/web-client-methods-worker.module.js.map +1 -1
- package/dist/mt/workers/workerHelpers.js +1 -1
- package/dist/st/{Cargo-C35FdGuj.js → Cargo-CgOCogcE.js} +97 -70
- package/dist/st/{Cargo-C35FdGuj.js.map → Cargo-CgOCogcE.js.map} +1 -1
- package/dist/st/api-types.d.ts +15 -0
- package/dist/st/assets/miden_client_web.wasm +0 -0
- package/dist/st/crates/miden_client_web.d.ts +22 -0
- package/dist/st/eager.js +1 -1
- package/dist/st/index.d.ts +4 -2
- package/dist/st/index.js +57 -13
- package/dist/st/index.js.map +1 -1
- package/dist/st/wasm.js +1 -1
- package/dist/st/workers/{Cargo-C35FdGuj-DAEzC4n9.js → Cargo-CgOCogcE-dIBKWd7c.js} +97 -70
- package/dist/st/workers/{Cargo-C35FdGuj-DAEzC4n9.js.map → Cargo-CgOCogcE-dIBKWd7c.js.map} +1 -1
- package/dist/st/workers/assets/miden_client_web.wasm +0 -0
- package/dist/st/workers/web-client-methods-worker.js +98 -71
- package/dist/st/workers/web-client-methods-worker.js.map +1 -1
- package/dist/st/workers/web-client-methods-worker.module.js +1 -1
- package/dist/st/workers/web-client-methods-worker.module.js.map +1 -1
- package/package.json +1 -1
package/dist/mt/wasm.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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-
|
|
7
|
+
wasmModule = await import('./Cargo-DcB9UMnw.js');
|
|
8
8
|
// The Cargo glue's __wbg_init TLA is stripped by the rollup build to
|
|
9
9
|
// prevent blocking WKWebView module evaluation. Call it explicitly here
|
|
10
10
|
// with the WASM URL that the Cargo glue pre-resolves (relative to its
|
package/dist/mt/workerHelpers.js
CHANGED
|
@@ -14,7 +14,7 @@ function waitForMsgType(target, type) {
|
|
|
14
14
|
});
|
|
15
15
|
}
|
|
16
16
|
waitForMsgType(self, 'wasm_bindgen_worker_init').then(async ({ init, receiver }) => {
|
|
17
|
-
const pkg = await import('./Cargo-
|
|
17
|
+
const pkg = await import('./Cargo-DcB9UMnw.js');
|
|
18
18
|
// Our build exports __wbg_init by name (the [remove-wasm-tla] plugin adds
|
|
19
19
|
// it back so loadWasm() can call it explicitly). Stock wasm-bindgen-rayon
|
|
20
20
|
// expects pkg.default — not present here, since rollup-plugin-rust's
|
|
@@ -20841,6 +20841,33 @@ class TransactionProver {
|
|
|
20841
20841
|
}
|
|
20842
20842
|
return v1;
|
|
20843
20843
|
}
|
|
20844
|
+
/**
|
|
20845
|
+
* Creates a prover that delegates `prove()` to a JavaScript callback.
|
|
20846
|
+
*
|
|
20847
|
+
* The callback receives the serialized [`TransactionInputs`] as a
|
|
20848
|
+
* `Uint8Array` and must return a `Promise<Uint8Array>` resolving to a
|
|
20849
|
+
* serialized [`ProvenTransaction`] (same encoding the gRPC remote
|
|
20850
|
+
* prover uses: `tx_inputs.to_bytes()` in, `ProvenTransaction::read_from_bytes`
|
|
20851
|
+
* out).
|
|
20852
|
+
*
|
|
20853
|
+
* Use case: routing prove to a native iOS / Android plugin
|
|
20854
|
+
* (`@miden/native-prover`) so mobile builds skip WASM prove entirely
|
|
20855
|
+
* — `WKWebView` can't be made cross-origin-isolated reliably and the
|
|
20856
|
+
* MT WASM bundle can't instantiate without `SharedArrayBuffer`, so the
|
|
20857
|
+
* host wraps a native Rust prover (built with the same `miden_tx`
|
|
20858
|
+
* crate) and exposes a JS-shaped callback over the Capacitor bridge.
|
|
20859
|
+
*
|
|
20860
|
+
* The SDK does NOT serialize the prover for persistence across
|
|
20861
|
+
* reloads (unlike `newRemoteProver`), since the callback is a
|
|
20862
|
+
* runtime JS reference. Hosts must recreate the prover on every
|
|
20863
|
+
* page load.
|
|
20864
|
+
* @param {Function} callback
|
|
20865
|
+
* @returns {TransactionProver}
|
|
20866
|
+
*/
|
|
20867
|
+
static newCallbackProver(callback) {
|
|
20868
|
+
const ret = wasm.transactionprover_newCallbackProver(callback);
|
|
20869
|
+
return TransactionProver.__wrap(ret);
|
|
20870
|
+
}
|
|
20844
20871
|
/**
|
|
20845
20872
|
* Creates a prover that uses the local proving backend.
|
|
20846
20873
|
* @returns {TransactionProver}
|
|
@@ -23166,7 +23193,7 @@ function __wbg_get_imports(memory) {
|
|
|
23166
23193
|
const ret = AccountStorage.__wrap(arg0);
|
|
23167
23194
|
return ret;
|
|
23168
23195
|
},
|
|
23169
|
-
|
|
23196
|
+
__wbg_addNoteTag_c52215c0c6037ab3: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23170
23197
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23171
23198
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23172
23199
|
let v1;
|
|
@@ -23189,15 +23216,15 @@ function __wbg_get_imports(memory) {
|
|
|
23189
23216
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
23190
23217
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
23191
23218
|
}, arguments); },
|
|
23192
|
-
|
|
23219
|
+
__wbg_applyFullAccountState_4703a5032c085d73: function(arg0, arg1, arg2) {
|
|
23193
23220
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
23194
23221
|
return ret;
|
|
23195
23222
|
},
|
|
23196
|
-
|
|
23223
|
+
__wbg_applyStateSync_244acda2fd3f41fd: function(arg0, arg1, arg2) {
|
|
23197
23224
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
23198
23225
|
return ret;
|
|
23199
23226
|
},
|
|
23200
|
-
|
|
23227
|
+
__wbg_applyTransactionDelta_24becca72252ed4a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
23201
23228
|
let deferred0_0;
|
|
23202
23229
|
let deferred0_1;
|
|
23203
23230
|
let deferred1_0;
|
|
@@ -23344,7 +23371,7 @@ function __wbg_get_imports(memory) {
|
|
|
23344
23371
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23345
23372
|
}
|
|
23346
23373
|
},
|
|
23347
|
-
|
|
23374
|
+
__wbg_exportStore_64bed565999e1c84: function(arg0, arg1) {
|
|
23348
23375
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
23349
23376
|
return ret;
|
|
23350
23377
|
},
|
|
@@ -23376,7 +23403,7 @@ function __wbg_get_imports(memory) {
|
|
|
23376
23403
|
const ret = FetchedNote.__wrap(arg0);
|
|
23377
23404
|
return ret;
|
|
23378
23405
|
},
|
|
23379
|
-
|
|
23406
|
+
__wbg_forceImportStore_579e76fb9d69009b: function(arg0, arg1, arg2) {
|
|
23380
23407
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
23381
23408
|
return ret;
|
|
23382
23409
|
},
|
|
@@ -23396,7 +23423,7 @@ function __wbg_get_imports(memory) {
|
|
|
23396
23423
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
23397
23424
|
return ret;
|
|
23398
23425
|
},
|
|
23399
|
-
|
|
23426
|
+
__wbg_getAccountAddresses_d153f1bbb28eb843: function(arg0, arg1, arg2, arg3) {
|
|
23400
23427
|
let deferred0_0;
|
|
23401
23428
|
let deferred0_1;
|
|
23402
23429
|
try {
|
|
@@ -23408,7 +23435,7 @@ function __wbg_get_imports(memory) {
|
|
|
23408
23435
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23409
23436
|
}
|
|
23410
23437
|
},
|
|
23411
|
-
|
|
23438
|
+
__wbg_getAccountAuthByPubKeyCommitment_a42ca0a20bb7dde4: function(arg0, arg1, arg2, arg3) {
|
|
23412
23439
|
let deferred0_0;
|
|
23413
23440
|
let deferred0_1;
|
|
23414
23441
|
try {
|
|
@@ -23420,7 +23447,7 @@ function __wbg_get_imports(memory) {
|
|
|
23420
23447
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23421
23448
|
}
|
|
23422
23449
|
},
|
|
23423
|
-
|
|
23450
|
+
__wbg_getAccountCode_45887ee5ee9651dd: function(arg0, arg1, arg2, arg3) {
|
|
23424
23451
|
let deferred0_0;
|
|
23425
23452
|
let deferred0_1;
|
|
23426
23453
|
try {
|
|
@@ -23432,7 +23459,7 @@ function __wbg_get_imports(memory) {
|
|
|
23432
23459
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23433
23460
|
}
|
|
23434
23461
|
},
|
|
23435
|
-
|
|
23462
|
+
__wbg_getAccountHeaderByCommitment_54b507a3241dc490: function(arg0, arg1, arg2, arg3) {
|
|
23436
23463
|
let deferred0_0;
|
|
23437
23464
|
let deferred0_1;
|
|
23438
23465
|
try {
|
|
@@ -23444,7 +23471,7 @@ function __wbg_get_imports(memory) {
|
|
|
23444
23471
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23445
23472
|
}
|
|
23446
23473
|
},
|
|
23447
|
-
|
|
23474
|
+
__wbg_getAccountHeader_cea76ef79706de7b: function(arg0, arg1, arg2, arg3) {
|
|
23448
23475
|
let deferred0_0;
|
|
23449
23476
|
let deferred0_1;
|
|
23450
23477
|
try {
|
|
@@ -23456,7 +23483,7 @@ function __wbg_get_imports(memory) {
|
|
|
23456
23483
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23457
23484
|
}
|
|
23458
23485
|
},
|
|
23459
|
-
|
|
23486
|
+
__wbg_getAccountIdByKeyCommitment_5d3f7cb02410ad5b: function(arg0, arg1, arg2, arg3) {
|
|
23460
23487
|
let deferred0_0;
|
|
23461
23488
|
let deferred0_1;
|
|
23462
23489
|
try {
|
|
@@ -23468,11 +23495,11 @@ function __wbg_get_imports(memory) {
|
|
|
23468
23495
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23469
23496
|
}
|
|
23470
23497
|
},
|
|
23471
|
-
|
|
23498
|
+
__wbg_getAccountIds_735b755cba58a330: function(arg0, arg1) {
|
|
23472
23499
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
23473
23500
|
return ret;
|
|
23474
23501
|
},
|
|
23475
|
-
|
|
23502
|
+
__wbg_getAccountStorageMaps_0ad3f0c3d73817a3: function(arg0, arg1, arg2, arg3) {
|
|
23476
23503
|
let deferred0_0;
|
|
23477
23504
|
let deferred0_1;
|
|
23478
23505
|
try {
|
|
@@ -23484,7 +23511,7 @@ function __wbg_get_imports(memory) {
|
|
|
23484
23511
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23485
23512
|
}
|
|
23486
23513
|
},
|
|
23487
|
-
|
|
23514
|
+
__wbg_getAccountStorage_abde662f68f394b0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23488
23515
|
let deferred0_0;
|
|
23489
23516
|
let deferred0_1;
|
|
23490
23517
|
try {
|
|
@@ -23498,7 +23525,7 @@ function __wbg_get_imports(memory) {
|
|
|
23498
23525
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23499
23526
|
}
|
|
23500
23527
|
},
|
|
23501
|
-
|
|
23528
|
+
__wbg_getAccountVaultAssets_2a7f6e3b75dccf85: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23502
23529
|
let deferred0_0;
|
|
23503
23530
|
let deferred0_1;
|
|
23504
23531
|
try {
|
|
@@ -23512,23 +23539,23 @@ function __wbg_get_imports(memory) {
|
|
|
23512
23539
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23513
23540
|
}
|
|
23514
23541
|
},
|
|
23515
|
-
|
|
23542
|
+
__wbg_getAllAccountHeaders_fd276fc0411388ad: function(arg0, arg1) {
|
|
23516
23543
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
23517
23544
|
return ret;
|
|
23518
23545
|
},
|
|
23519
|
-
|
|
23546
|
+
__wbg_getBlockHeaders_35ec527f384137de: function(arg0, arg1, arg2, arg3) {
|
|
23520
23547
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
23521
23548
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23522
23549
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
23523
23550
|
return ret;
|
|
23524
23551
|
},
|
|
23525
|
-
|
|
23552
|
+
__wbg_getForeignAccountCode_fa8d929104f53a32: function(arg0, arg1, arg2, arg3) {
|
|
23526
23553
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23527
23554
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23528
23555
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
23529
23556
|
return ret;
|
|
23530
23557
|
},
|
|
23531
|
-
|
|
23558
|
+
__wbg_getInputNoteByOffset_128222c1ab14e73e: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
23532
23559
|
let deferred1_0;
|
|
23533
23560
|
let deferred1_1;
|
|
23534
23561
|
try {
|
|
@@ -23542,25 +23569,25 @@ function __wbg_get_imports(memory) {
|
|
|
23542
23569
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23543
23570
|
}
|
|
23544
23571
|
},
|
|
23545
|
-
|
|
23572
|
+
__wbg_getInputNotesFromIds_354a95ea44cf7585: function(arg0, arg1, arg2, arg3) {
|
|
23546
23573
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23547
23574
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23548
23575
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23549
23576
|
return ret;
|
|
23550
23577
|
},
|
|
23551
|
-
|
|
23578
|
+
__wbg_getInputNotesFromNullifiers_1f79c376e52b4e80: function(arg0, arg1, arg2, arg3) {
|
|
23552
23579
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23553
23580
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23554
23581
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23555
23582
|
return ret;
|
|
23556
23583
|
},
|
|
23557
|
-
|
|
23584
|
+
__wbg_getInputNotes_3a7f585d0bc2a5d7: function(arg0, arg1, arg2, arg3) {
|
|
23558
23585
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23559
23586
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23560
23587
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23561
23588
|
return ret;
|
|
23562
23589
|
},
|
|
23563
|
-
|
|
23590
|
+
__wbg_getKeyCommitmentsByAccountId_590c47f5b336b8a9: function(arg0, arg1, arg2, arg3) {
|
|
23564
23591
|
let deferred0_0;
|
|
23565
23592
|
let deferred0_1;
|
|
23566
23593
|
try {
|
|
@@ -23572,7 +23599,7 @@ function __wbg_get_imports(memory) {
|
|
|
23572
23599
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23573
23600
|
}
|
|
23574
23601
|
},
|
|
23575
|
-
|
|
23602
|
+
__wbg_getNoteScript_678bef9b8a701098: function(arg0, arg1, arg2, arg3) {
|
|
23576
23603
|
let deferred0_0;
|
|
23577
23604
|
let deferred0_1;
|
|
23578
23605
|
try {
|
|
@@ -23584,33 +23611,33 @@ function __wbg_get_imports(memory) {
|
|
|
23584
23611
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23585
23612
|
}
|
|
23586
23613
|
},
|
|
23587
|
-
|
|
23614
|
+
__wbg_getNoteTags_18b8085b487456c5: function(arg0, arg1) {
|
|
23588
23615
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
23589
23616
|
return ret;
|
|
23590
23617
|
},
|
|
23591
|
-
|
|
23618
|
+
__wbg_getOutputNotesFromIds_f4b9cb555822668e: function(arg0, arg1, arg2, arg3) {
|
|
23592
23619
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23593
23620
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23594
23621
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23595
23622
|
return ret;
|
|
23596
23623
|
},
|
|
23597
|
-
|
|
23624
|
+
__wbg_getOutputNotesFromNullifiers_c2acf08da1ad8bf2: function(arg0, arg1, arg2, arg3) {
|
|
23598
23625
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23599
23626
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23600
23627
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23601
23628
|
return ret;
|
|
23602
23629
|
},
|
|
23603
|
-
|
|
23630
|
+
__wbg_getOutputNotes_8cf18b9e026a5586: function(arg0, arg1, arg2, arg3) {
|
|
23604
23631
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23605
23632
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23606
23633
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23607
23634
|
return ret;
|
|
23608
23635
|
},
|
|
23609
|
-
|
|
23636
|
+
__wbg_getPartialBlockchainNodesAll_5cb5eba43829bff6: function(arg0, arg1) {
|
|
23610
23637
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
23611
23638
|
return ret;
|
|
23612
23639
|
},
|
|
23613
|
-
|
|
23640
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_c7354538b7669bde: function(arg0, arg1, arg2, arg3) {
|
|
23614
23641
|
let deferred0_0;
|
|
23615
23642
|
let deferred0_1;
|
|
23616
23643
|
try {
|
|
@@ -23622,13 +23649,13 @@ function __wbg_get_imports(memory) {
|
|
|
23622
23649
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23623
23650
|
}
|
|
23624
23651
|
},
|
|
23625
|
-
|
|
23652
|
+
__wbg_getPartialBlockchainNodes_b0e5c10410d3d833: function(arg0, arg1, arg2, arg3) {
|
|
23626
23653
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23627
23654
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23628
23655
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
23629
23656
|
return ret;
|
|
23630
23657
|
},
|
|
23631
|
-
|
|
23658
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_5026f9dabe289e0b: function(arg0, arg1, arg2) {
|
|
23632
23659
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
23633
23660
|
return ret;
|
|
23634
23661
|
},
|
|
@@ -23639,7 +23666,7 @@ function __wbg_get_imports(memory) {
|
|
|
23639
23666
|
const ret = arg0.getReader();
|
|
23640
23667
|
return ret;
|
|
23641
23668
|
}, arguments); },
|
|
23642
|
-
|
|
23669
|
+
__wbg_getSetting_54c1e4d9755a1703: function(arg0, arg1, arg2, arg3) {
|
|
23643
23670
|
let deferred0_0;
|
|
23644
23671
|
let deferred0_1;
|
|
23645
23672
|
try {
|
|
@@ -23651,7 +23678,7 @@ function __wbg_get_imports(memory) {
|
|
|
23651
23678
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23652
23679
|
}
|
|
23653
23680
|
},
|
|
23654
|
-
|
|
23681
|
+
__wbg_getSyncHeight_81df6bb109798a91: function(arg0, arg1) {
|
|
23655
23682
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
23656
23683
|
return ret;
|
|
23657
23684
|
},
|
|
@@ -23659,15 +23686,15 @@ function __wbg_get_imports(memory) {
|
|
|
23659
23686
|
const ret = arg0.getTime();
|
|
23660
23687
|
return ret;
|
|
23661
23688
|
},
|
|
23662
|
-
|
|
23689
|
+
__wbg_getTrackedBlockHeaderNumbers_344035c2ae140965: function(arg0, arg1) {
|
|
23663
23690
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
23664
23691
|
return ret;
|
|
23665
23692
|
},
|
|
23666
|
-
|
|
23693
|
+
__wbg_getTrackedBlockHeaders_1da1c073fae136b6: function(arg0, arg1) {
|
|
23667
23694
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
23668
23695
|
return ret;
|
|
23669
23696
|
},
|
|
23670
|
-
|
|
23697
|
+
__wbg_getTransactions_e2e1ecc55367a808: function(arg0, arg1, arg2, arg3) {
|
|
23671
23698
|
let deferred0_0;
|
|
23672
23699
|
let deferred0_1;
|
|
23673
23700
|
try {
|
|
@@ -23679,7 +23706,7 @@ function __wbg_get_imports(memory) {
|
|
|
23679
23706
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23680
23707
|
}
|
|
23681
23708
|
},
|
|
23682
|
-
|
|
23709
|
+
__wbg_getUnspentInputNoteNullifiers_9f755496d70d78dc: function(arg0, arg1) {
|
|
23683
23710
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
23684
23711
|
return ret;
|
|
23685
23712
|
},
|
|
@@ -23723,7 +23750,7 @@ function __wbg_get_imports(memory) {
|
|
|
23723
23750
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
23724
23751
|
return ret;
|
|
23725
23752
|
},
|
|
23726
|
-
|
|
23753
|
+
__wbg_insertAccountAddress_a1db7c9de90e3e7a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23727
23754
|
let deferred0_0;
|
|
23728
23755
|
let deferred0_1;
|
|
23729
23756
|
try {
|
|
@@ -23737,7 +23764,7 @@ function __wbg_get_imports(memory) {
|
|
|
23737
23764
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23738
23765
|
}
|
|
23739
23766
|
},
|
|
23740
|
-
|
|
23767
|
+
__wbg_insertAccountAuth_250029f870314277: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23741
23768
|
let deferred0_0;
|
|
23742
23769
|
let deferred0_1;
|
|
23743
23770
|
let deferred1_0;
|
|
@@ -23754,7 +23781,7 @@ function __wbg_get_imports(memory) {
|
|
|
23754
23781
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23755
23782
|
}
|
|
23756
23783
|
},
|
|
23757
|
-
|
|
23784
|
+
__wbg_insertAccountKeyMapping_a6eab7be3603f947: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23758
23785
|
let deferred0_0;
|
|
23759
23786
|
let deferred0_1;
|
|
23760
23787
|
let deferred1_0;
|
|
@@ -23771,7 +23798,7 @@ function __wbg_get_imports(memory) {
|
|
|
23771
23798
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23772
23799
|
}
|
|
23773
23800
|
},
|
|
23774
|
-
|
|
23801
|
+
__wbg_insertBlockHeader_104ff4e8160e213e: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23775
23802
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
23776
23803
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
23777
23804
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -23779,7 +23806,7 @@ function __wbg_get_imports(memory) {
|
|
|
23779
23806
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
23780
23807
|
return ret;
|
|
23781
23808
|
},
|
|
23782
|
-
|
|
23809
|
+
__wbg_insertPartialBlockchainNodes_7351ad9920434a23: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23783
23810
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23784
23811
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23785
23812
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -23787,7 +23814,7 @@ function __wbg_get_imports(memory) {
|
|
|
23787
23814
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
23788
23815
|
return ret;
|
|
23789
23816
|
},
|
|
23790
|
-
|
|
23817
|
+
__wbg_insertSetting_e68be1bd29eea611: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23791
23818
|
let deferred0_0;
|
|
23792
23819
|
let deferred0_1;
|
|
23793
23820
|
try {
|
|
@@ -23801,7 +23828,7 @@ function __wbg_get_imports(memory) {
|
|
|
23801
23828
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23802
23829
|
}
|
|
23803
23830
|
},
|
|
23804
|
-
|
|
23831
|
+
__wbg_insertTransactionScript_eab40f602f32fb36: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23805
23832
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23806
23833
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23807
23834
|
let v1;
|
|
@@ -23904,11 +23931,11 @@ function __wbg_get_imports(memory) {
|
|
|
23904
23931
|
const ret = arg0.length;
|
|
23905
23932
|
return ret;
|
|
23906
23933
|
},
|
|
23907
|
-
|
|
23934
|
+
__wbg_listSettingKeys_68c9946ef15801dd: function(arg0, arg1) {
|
|
23908
23935
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
23909
23936
|
return ret;
|
|
23910
23937
|
},
|
|
23911
|
-
|
|
23938
|
+
__wbg_lockAccount_86ef72a6e87a1e60: function(arg0, arg1, arg2, arg3) {
|
|
23912
23939
|
let deferred0_0;
|
|
23913
23940
|
let deferred0_1;
|
|
23914
23941
|
try {
|
|
@@ -24115,7 +24142,7 @@ function __wbg_get_imports(memory) {
|
|
|
24115
24142
|
const ret = Array.of(arg0, arg1, arg2);
|
|
24116
24143
|
return ret;
|
|
24117
24144
|
},
|
|
24118
|
-
|
|
24145
|
+
__wbg_openDatabase_4737550e14db0e61: function(arg0, arg1, arg2, arg3) {
|
|
24119
24146
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
24120
24147
|
return ret;
|
|
24121
24148
|
},
|
|
@@ -24149,7 +24176,7 @@ function __wbg_get_imports(memory) {
|
|
|
24149
24176
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
24150
24177
|
return ret;
|
|
24151
24178
|
},
|
|
24152
|
-
|
|
24179
|
+
__wbg_pruneAccountHistory_c2cb15066230e30b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24153
24180
|
let deferred0_0;
|
|
24154
24181
|
let deferred0_1;
|
|
24155
24182
|
let deferred1_0;
|
|
@@ -24166,7 +24193,7 @@ function __wbg_get_imports(memory) {
|
|
|
24166
24193
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24167
24194
|
}
|
|
24168
24195
|
},
|
|
24169
|
-
|
|
24196
|
+
__wbg_pruneIrrelevantBlocks_045a9991f0a4a88a: function(arg0, arg1) {
|
|
24170
24197
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
24171
24198
|
return ret;
|
|
24172
24199
|
},
|
|
@@ -24184,13 +24211,13 @@ function __wbg_get_imports(memory) {
|
|
|
24184
24211
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
24185
24212
|
arg0.releaseLock();
|
|
24186
24213
|
},
|
|
24187
|
-
|
|
24214
|
+
__wbg_removeAccountAddress_ca84443423d1f9d6: function(arg0, arg1, arg2, arg3) {
|
|
24188
24215
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24189
24216
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24190
24217
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
24191
24218
|
return ret;
|
|
24192
24219
|
},
|
|
24193
|
-
|
|
24220
|
+
__wbg_removeAccountAuth_2857e6691c315895: function(arg0, arg1, arg2, arg3) {
|
|
24194
24221
|
let deferred0_0;
|
|
24195
24222
|
let deferred0_1;
|
|
24196
24223
|
try {
|
|
@@ -24202,7 +24229,7 @@ function __wbg_get_imports(memory) {
|
|
|
24202
24229
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24203
24230
|
}
|
|
24204
24231
|
},
|
|
24205
|
-
|
|
24232
|
+
__wbg_removeAllMappingsForKey_b2f6e74efebe3925: function(arg0, arg1, arg2, arg3) {
|
|
24206
24233
|
let deferred0_0;
|
|
24207
24234
|
let deferred0_1;
|
|
24208
24235
|
try {
|
|
@@ -24214,7 +24241,7 @@ function __wbg_get_imports(memory) {
|
|
|
24214
24241
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24215
24242
|
}
|
|
24216
24243
|
},
|
|
24217
|
-
|
|
24244
|
+
__wbg_removeNoteTag_dedaba58eab174bc: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24218
24245
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24219
24246
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24220
24247
|
let v1;
|
|
@@ -24230,7 +24257,7 @@ function __wbg_get_imports(memory) {
|
|
|
24230
24257
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
24231
24258
|
return ret;
|
|
24232
24259
|
},
|
|
24233
|
-
|
|
24260
|
+
__wbg_removeSetting_f2c73332d3f21354: function(arg0, arg1, arg2, arg3) {
|
|
24234
24261
|
let deferred0_0;
|
|
24235
24262
|
let deferred0_1;
|
|
24236
24263
|
try {
|
|
@@ -24429,13 +24456,13 @@ function __wbg_get_imports(memory) {
|
|
|
24429
24456
|
const ret = TransactionSummary.__wrap(arg0);
|
|
24430
24457
|
return ret;
|
|
24431
24458
|
},
|
|
24432
|
-
|
|
24459
|
+
__wbg_undoAccountStates_37da53781a8c42bb: function(arg0, arg1, arg2, arg3) {
|
|
24433
24460
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24434
24461
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24435
24462
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
24436
24463
|
return ret;
|
|
24437
24464
|
},
|
|
24438
|
-
|
|
24465
|
+
__wbg_upsertAccountCode_b80c86ab8739505f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24439
24466
|
let deferred0_0;
|
|
24440
24467
|
let deferred0_1;
|
|
24441
24468
|
try {
|
|
@@ -24449,7 +24476,7 @@ function __wbg_get_imports(memory) {
|
|
|
24449
24476
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24450
24477
|
}
|
|
24451
24478
|
},
|
|
24452
|
-
|
|
24479
|
+
__wbg_upsertAccountRecord_29ce09da09c9cebc: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
24453
24480
|
let deferred0_0;
|
|
24454
24481
|
let deferred0_1;
|
|
24455
24482
|
let deferred1_0;
|
|
@@ -24491,7 +24518,7 @@ function __wbg_get_imports(memory) {
|
|
|
24491
24518
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
24492
24519
|
}
|
|
24493
24520
|
},
|
|
24494
|
-
|
|
24521
|
+
__wbg_upsertAccountStorage_42f9a2bbf1babc30: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24495
24522
|
let deferred0_0;
|
|
24496
24523
|
let deferred0_1;
|
|
24497
24524
|
try {
|
|
@@ -24505,7 +24532,7 @@ function __wbg_get_imports(memory) {
|
|
|
24505
24532
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24506
24533
|
}
|
|
24507
24534
|
},
|
|
24508
|
-
|
|
24535
|
+
__wbg_upsertForeignAccountCode_f813bf56e38c8036: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24509
24536
|
let deferred0_0;
|
|
24510
24537
|
let deferred0_1;
|
|
24511
24538
|
let deferred2_0;
|
|
@@ -24524,7 +24551,7 @@ function __wbg_get_imports(memory) {
|
|
|
24524
24551
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24525
24552
|
}
|
|
24526
24553
|
},
|
|
24527
|
-
|
|
24554
|
+
__wbg_upsertInputNote_06998d0c112e2ea0: 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) {
|
|
24528
24555
|
let deferred0_0;
|
|
24529
24556
|
let deferred0_1;
|
|
24530
24557
|
let deferred4_0;
|
|
@@ -24566,7 +24593,7 @@ function __wbg_get_imports(memory) {
|
|
|
24566
24593
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
24567
24594
|
}
|
|
24568
24595
|
},
|
|
24569
|
-
|
|
24596
|
+
__wbg_upsertNoteScript_53cc426844e6f192: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24570
24597
|
let deferred0_0;
|
|
24571
24598
|
let deferred0_1;
|
|
24572
24599
|
try {
|
|
@@ -24580,7 +24607,7 @@ function __wbg_get_imports(memory) {
|
|
|
24580
24607
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24581
24608
|
}
|
|
24582
24609
|
},
|
|
24583
|
-
|
|
24610
|
+
__wbg_upsertOutputNote_eb7c19063f25fa7b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
24584
24611
|
let deferred0_0;
|
|
24585
24612
|
let deferred0_1;
|
|
24586
24613
|
let deferred2_0;
|
|
@@ -24608,7 +24635,7 @@ function __wbg_get_imports(memory) {
|
|
|
24608
24635
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24609
24636
|
}
|
|
24610
24637
|
},
|
|
24611
|
-
|
|
24638
|
+
__wbg_upsertStorageMapEntries_82f85c794815692a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24612
24639
|
let deferred0_0;
|
|
24613
24640
|
let deferred0_1;
|
|
24614
24641
|
try {
|
|
@@ -24622,7 +24649,7 @@ function __wbg_get_imports(memory) {
|
|
|
24622
24649
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24623
24650
|
}
|
|
24624
24651
|
},
|
|
24625
|
-
|
|
24652
|
+
__wbg_upsertTransactionRecord_159b0aa291a33f0f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
24626
24653
|
let deferred0_0;
|
|
24627
24654
|
let deferred0_1;
|
|
24628
24655
|
try {
|
|
@@ -24643,7 +24670,7 @@ function __wbg_get_imports(memory) {
|
|
|
24643
24670
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24644
24671
|
}
|
|
24645
24672
|
},
|
|
24646
|
-
|
|
24673
|
+
__wbg_upsertVaultAssets_cc6b204ac9216bab: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24647
24674
|
let deferred0_0;
|
|
24648
24675
|
let deferred0_1;
|
|
24649
24676
|
try {
|
|
@@ -24696,7 +24723,7 @@ function __wbg_get_imports(memory) {
|
|
|
24696
24723
|
return ret;
|
|
24697
24724
|
},
|
|
24698
24725
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
24699
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx: 110, function: Function { arguments: [], shim_idx:
|
|
24726
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 110, function: Function { arguments: [], shim_idx: 371, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
24700
24727
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_cb32f6f48015412b___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_cb32f6f48015412b___JsValue____Output_______, wasm_bindgen_cb32f6f48015412b___convert__closures_____invoke______);
|
|
24701
24728
|
return ret;
|
|
24702
24729
|
},
|
|
@@ -25797,4 +25824,4 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
25797
25824
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
25798
25825
|
|
|
25799
25826
|
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, initThreadPool, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker };
|
|
25800
|
-
//# sourceMappingURL=Cargo-
|
|
25827
|
+
//# sourceMappingURL=Cargo-DcB9UMnw-w3wXmKCr.js.map
|