@miden-sdk/miden-sdk 0.14.1 → 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/{Cargo-BZOulF0S.js → Cargo-D44KIErf.js} +150 -114
- 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 +112 -25
- package/dist/index.js.map +1 -1
- package/dist/wasm.js +1 -1
- package/dist/workers/Cargo-D44KIErf-BV9FX7WD.js +24488 -0
- 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 +151 -115
- 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 +2 -1
- package/dist/Cargo-BZOulF0S.js.map +0 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
async function loadWasm() {
|
|
6
6
|
let wasmModule;
|
|
7
7
|
if (!undefined || (undefined && !undefined.SSR)) {
|
|
8
|
-
wasmModule = await Promise.resolve().then(function () { return
|
|
8
|
+
wasmModule = await Promise.resolve().then(function () { return CargoD44KIErf; });
|
|
9
9
|
// The Cargo glue's __wbg_init TLA is stripped by the rollup build to
|
|
10
10
|
// prevent blocking WKWebView module evaluation. Call it explicitly here
|
|
11
11
|
// with the WASM URL that the Cargo glue pre-resolves (relative to its
|
|
@@ -7196,46 +7196,54 @@ var cmp_1 = cmp;
|
|
|
7196
7196
|
|
|
7197
7197
|
const { safeRe: re, t } = reExports;
|
|
7198
7198
|
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
this.max = 1000;
|
|
7202
|
-
this.map = new Map();
|
|
7203
|
-
}
|
|
7199
|
+
var lrucache;
|
|
7200
|
+
var hasRequiredLrucache;
|
|
7204
7201
|
|
|
7205
|
-
|
|
7206
|
-
|
|
7207
|
-
|
|
7208
|
-
|
|
7209
|
-
|
|
7210
|
-
|
|
7211
|
-
|
|
7212
|
-
|
|
7213
|
-
return value
|
|
7214
|
-
}
|
|
7215
|
-
}
|
|
7202
|
+
function requireLrucache () {
|
|
7203
|
+
if (hasRequiredLrucache) return lrucache;
|
|
7204
|
+
hasRequiredLrucache = 1;
|
|
7205
|
+
class LRUCache {
|
|
7206
|
+
constructor () {
|
|
7207
|
+
this.max = 1000;
|
|
7208
|
+
this.map = new Map();
|
|
7209
|
+
}
|
|
7216
7210
|
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
7211
|
+
get (key) {
|
|
7212
|
+
const value = this.map.get(key);
|
|
7213
|
+
if (value === undefined) {
|
|
7214
|
+
return undefined
|
|
7215
|
+
} else {
|
|
7216
|
+
// Remove the key from the map and add it to the end
|
|
7217
|
+
this.map.delete(key);
|
|
7218
|
+
this.map.set(key, value);
|
|
7219
|
+
return value
|
|
7220
|
+
}
|
|
7221
|
+
}
|
|
7220
7222
|
|
|
7221
|
-
|
|
7222
|
-
|
|
7223
|
+
delete (key) {
|
|
7224
|
+
return this.map.delete(key)
|
|
7225
|
+
}
|
|
7223
7226
|
|
|
7224
|
-
|
|
7225
|
-
|
|
7226
|
-
if (this.map.size >= this.max) {
|
|
7227
|
-
const firstKey = this.map.keys().next().value;
|
|
7228
|
-
this.delete(firstKey);
|
|
7229
|
-
}
|
|
7227
|
+
set (key, value) {
|
|
7228
|
+
const deleted = this.delete(key);
|
|
7230
7229
|
|
|
7231
|
-
|
|
7232
|
-
|
|
7230
|
+
if (!deleted && value !== undefined) {
|
|
7231
|
+
// If cache is full, delete the least recently used item
|
|
7232
|
+
if (this.map.size >= this.max) {
|
|
7233
|
+
const firstKey = this.map.keys().next().value;
|
|
7234
|
+
this.delete(firstKey);
|
|
7235
|
+
}
|
|
7233
7236
|
|
|
7234
|
-
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
+
this.map.set(key, value);
|
|
7238
|
+
}
|
|
7239
|
+
|
|
7240
|
+
return this
|
|
7241
|
+
}
|
|
7242
|
+
}
|
|
7237
7243
|
|
|
7238
|
-
|
|
7244
|
+
lrucache = LRUCache;
|
|
7245
|
+
return lrucache;
|
|
7246
|
+
}
|
|
7239
7247
|
|
|
7240
7248
|
var range;
|
|
7241
7249
|
var hasRequiredRange;
|
|
@@ -7457,7 +7465,7 @@ function requireRange () {
|
|
|
7457
7465
|
|
|
7458
7466
|
range = Range;
|
|
7459
7467
|
|
|
7460
|
-
const LRU =
|
|
7468
|
+
const LRU = requireLrucache();
|
|
7461
7469
|
const cache = new LRU();
|
|
7462
7470
|
|
|
7463
7471
|
const parseOptions = parseOptions_1;
|
|
@@ -9310,12 +9318,40 @@ async function insertBlockHeader(dbId, blockNum, header, partialBlockchainPeaks,
|
|
|
9310
9318
|
partialBlockchainPeaks,
|
|
9311
9319
|
hasClientNotes: hasClientNotes.toString(),
|
|
9312
9320
|
};
|
|
9313
|
-
|
|
9321
|
+
// Mirror SQLite's `insert_block_header_tx`: do an INSERT OR IGNORE on the
|
|
9322
|
+
// row, then explicitly upgrade `has_client_notes` to true if the caller
|
|
9323
|
+
// says so. Two callers hit this:
|
|
9324
|
+
// - Genesis flow — no existing row; the add succeeds.
|
|
9325
|
+
// - `get_and_store_authenticated_block` for a past block — a row
|
|
9326
|
+
// written by `applyStateSync` typically already exists. Overwriting
|
|
9327
|
+
// it would clobber the correct historical peaks (popcount ==
|
|
9328
|
+
// block_num) with peaks from the caller's current `PartialMmr`
|
|
9329
|
+
// forest (popcount == current sync height). Later reads of those
|
|
9330
|
+
// peaks trip `MmrPeaks::new`'s InvalidPeaks validation and wedge
|
|
9331
|
+
// sync for the rest of the session.
|
|
9332
|
+
//
|
|
9333
|
+
// The `has_client_notes` upgrade is load-bearing: `get_tracked_block_
|
|
9334
|
+
// header_numbers` filters by this flag to seed `tracked_leaves`, which
|
|
9335
|
+
// `get_partial_blockchain_nodes(Forest)` relies on. A private-note
|
|
9336
|
+
// import at a block previously synced as irrelevant must flip the flag
|
|
9337
|
+
// to true or the auth paths won't be tracked.
|
|
9338
|
+
await db.blockHeaders.add(data).catch(async (err) => {
|
|
9339
|
+
if (!isConstraintError(err))
|
|
9340
|
+
throw err;
|
|
9341
|
+
if (hasClientNotes) {
|
|
9342
|
+
await db.blockHeaders.update(blockNum, { hasClientNotes: "true" });
|
|
9343
|
+
}
|
|
9344
|
+
});
|
|
9314
9345
|
}
|
|
9315
9346
|
catch (err) {
|
|
9316
9347
|
logWebStoreError(err);
|
|
9317
9348
|
}
|
|
9318
9349
|
}
|
|
9350
|
+
/** Detect Dexie's primary-key collision error across sync + bulk wrappings. */
|
|
9351
|
+
function isConstraintError(err) {
|
|
9352
|
+
const e = err;
|
|
9353
|
+
return e?.name === "ConstraintError" || e?.inner?.name === "ConstraintError";
|
|
9354
|
+
}
|
|
9319
9355
|
async function insertPartialBlockchainNodes(dbId, ids, nodes) {
|
|
9320
9356
|
try {
|
|
9321
9357
|
const db = getDatabase(dbId);
|
|
@@ -22618,7 +22654,7 @@ function __wbg_get_imports() {
|
|
|
22618
22654
|
const ret = AccountStorage.__wrap(arg0);
|
|
22619
22655
|
return ret;
|
|
22620
22656
|
},
|
|
22621
|
-
|
|
22657
|
+
__wbg_addNoteTag_fa87368c2b7b49e0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22622
22658
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22623
22659
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22624
22660
|
let v1;
|
|
@@ -22641,15 +22677,15 @@ function __wbg_get_imports() {
|
|
|
22641
22677
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
22642
22678
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
22643
22679
|
}, arguments); },
|
|
22644
|
-
|
|
22680
|
+
__wbg_applyFullAccountState_a1dff98a8491308f: function(arg0, arg1, arg2) {
|
|
22645
22681
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
22646
22682
|
return ret;
|
|
22647
22683
|
},
|
|
22648
|
-
|
|
22684
|
+
__wbg_applyStateSync_fe1497caf76fc042: function(arg0, arg1, arg2) {
|
|
22649
22685
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
22650
22686
|
return ret;
|
|
22651
22687
|
},
|
|
22652
|
-
|
|
22688
|
+
__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) {
|
|
22653
22689
|
let deferred0_0;
|
|
22654
22690
|
let deferred0_1;
|
|
22655
22691
|
let deferred1_0;
|
|
@@ -22784,7 +22820,7 @@ function __wbg_get_imports() {
|
|
|
22784
22820
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22785
22821
|
}
|
|
22786
22822
|
},
|
|
22787
|
-
|
|
22823
|
+
__wbg_exportStore_fe0da1ec1fecca92: function(arg0, arg1) {
|
|
22788
22824
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
22789
22825
|
return ret;
|
|
22790
22826
|
},
|
|
@@ -22816,7 +22852,7 @@ function __wbg_get_imports() {
|
|
|
22816
22852
|
const ret = FetchedNote.__wrap(arg0);
|
|
22817
22853
|
return ret;
|
|
22818
22854
|
},
|
|
22819
|
-
|
|
22855
|
+
__wbg_forceImportStore_718c17745304e8dd: function(arg0, arg1, arg2) {
|
|
22820
22856
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
22821
22857
|
return ret;
|
|
22822
22858
|
},
|
|
@@ -22836,7 +22872,7 @@ function __wbg_get_imports() {
|
|
|
22836
22872
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
22837
22873
|
return ret;
|
|
22838
22874
|
},
|
|
22839
|
-
|
|
22875
|
+
__wbg_getAccountAddresses_9aa0a7707bc6f600: function(arg0, arg1, arg2, arg3) {
|
|
22840
22876
|
let deferred0_0;
|
|
22841
22877
|
let deferred0_1;
|
|
22842
22878
|
try {
|
|
@@ -22848,7 +22884,7 @@ function __wbg_get_imports() {
|
|
|
22848
22884
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22849
22885
|
}
|
|
22850
22886
|
},
|
|
22851
|
-
|
|
22887
|
+
__wbg_getAccountAuthByPubKeyCommitment_f35bdd747fb96ad1: function(arg0, arg1, arg2, arg3) {
|
|
22852
22888
|
let deferred0_0;
|
|
22853
22889
|
let deferred0_1;
|
|
22854
22890
|
try {
|
|
@@ -22860,7 +22896,7 @@ function __wbg_get_imports() {
|
|
|
22860
22896
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22861
22897
|
}
|
|
22862
22898
|
},
|
|
22863
|
-
|
|
22899
|
+
__wbg_getAccountCode_8108c2eb819e8dcb: function(arg0, arg1, arg2, arg3) {
|
|
22864
22900
|
let deferred0_0;
|
|
22865
22901
|
let deferred0_1;
|
|
22866
22902
|
try {
|
|
@@ -22872,7 +22908,7 @@ function __wbg_get_imports() {
|
|
|
22872
22908
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22873
22909
|
}
|
|
22874
22910
|
},
|
|
22875
|
-
|
|
22911
|
+
__wbg_getAccountHeaderByCommitment_e5e1f7ed01a8a99f: function(arg0, arg1, arg2, arg3) {
|
|
22876
22912
|
let deferred0_0;
|
|
22877
22913
|
let deferred0_1;
|
|
22878
22914
|
try {
|
|
@@ -22884,7 +22920,7 @@ function __wbg_get_imports() {
|
|
|
22884
22920
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22885
22921
|
}
|
|
22886
22922
|
},
|
|
22887
|
-
|
|
22923
|
+
__wbg_getAccountHeader_857048417ad1f6dc: function(arg0, arg1, arg2, arg3) {
|
|
22888
22924
|
let deferred0_0;
|
|
22889
22925
|
let deferred0_1;
|
|
22890
22926
|
try {
|
|
@@ -22896,7 +22932,7 @@ function __wbg_get_imports() {
|
|
|
22896
22932
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22897
22933
|
}
|
|
22898
22934
|
},
|
|
22899
|
-
|
|
22935
|
+
__wbg_getAccountIdByKeyCommitment_0e1f9cd391408d5b: function(arg0, arg1, arg2, arg3) {
|
|
22900
22936
|
let deferred0_0;
|
|
22901
22937
|
let deferred0_1;
|
|
22902
22938
|
try {
|
|
@@ -22908,11 +22944,11 @@ function __wbg_get_imports() {
|
|
|
22908
22944
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22909
22945
|
}
|
|
22910
22946
|
},
|
|
22911
|
-
|
|
22947
|
+
__wbg_getAccountIds_374185f86d9b2508: function(arg0, arg1) {
|
|
22912
22948
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
22913
22949
|
return ret;
|
|
22914
22950
|
},
|
|
22915
|
-
|
|
22951
|
+
__wbg_getAccountStorageMaps_1146cad7bd60117d: function(arg0, arg1, arg2, arg3) {
|
|
22916
22952
|
let deferred0_0;
|
|
22917
22953
|
let deferred0_1;
|
|
22918
22954
|
try {
|
|
@@ -22924,7 +22960,7 @@ function __wbg_get_imports() {
|
|
|
22924
22960
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22925
22961
|
}
|
|
22926
22962
|
},
|
|
22927
|
-
|
|
22963
|
+
__wbg_getAccountStorage_78becb02283e8527: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22928
22964
|
let deferred0_0;
|
|
22929
22965
|
let deferred0_1;
|
|
22930
22966
|
try {
|
|
@@ -22938,7 +22974,7 @@ function __wbg_get_imports() {
|
|
|
22938
22974
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22939
22975
|
}
|
|
22940
22976
|
},
|
|
22941
|
-
|
|
22977
|
+
__wbg_getAccountVaultAssets_36cfbde063265d57: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22942
22978
|
let deferred0_0;
|
|
22943
22979
|
let deferred0_1;
|
|
22944
22980
|
try {
|
|
@@ -22952,23 +22988,23 @@ function __wbg_get_imports() {
|
|
|
22952
22988
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22953
22989
|
}
|
|
22954
22990
|
},
|
|
22955
|
-
|
|
22991
|
+
__wbg_getAllAccountHeaders_4d0a4adcb4b10a13: function(arg0, arg1) {
|
|
22956
22992
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
22957
22993
|
return ret;
|
|
22958
22994
|
},
|
|
22959
|
-
|
|
22995
|
+
__wbg_getBlockHeaders_76e66b6eccbebd5d: function(arg0, arg1, arg2, arg3) {
|
|
22960
22996
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
22961
22997
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22962
22998
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
22963
22999
|
return ret;
|
|
22964
23000
|
},
|
|
22965
|
-
|
|
23001
|
+
__wbg_getForeignAccountCode_ec11efbe2165328c: function(arg0, arg1, arg2, arg3) {
|
|
22966
23002
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22967
23003
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22968
23004
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
22969
23005
|
return ret;
|
|
22970
23006
|
},
|
|
22971
|
-
|
|
23007
|
+
__wbg_getInputNoteByOffset_abb533ed69954028: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
22972
23008
|
let deferred1_0;
|
|
22973
23009
|
let deferred1_1;
|
|
22974
23010
|
try {
|
|
@@ -22982,25 +23018,25 @@ function __wbg_get_imports() {
|
|
|
22982
23018
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22983
23019
|
}
|
|
22984
23020
|
},
|
|
22985
|
-
|
|
23021
|
+
__wbg_getInputNotesFromIds_e280071c131a5249: function(arg0, arg1, arg2, arg3) {
|
|
22986
23022
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22987
23023
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22988
23024
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22989
23025
|
return ret;
|
|
22990
23026
|
},
|
|
22991
|
-
|
|
23027
|
+
__wbg_getInputNotesFromNullifiers_eeec8f1e28e95156: function(arg0, arg1, arg2, arg3) {
|
|
22992
23028
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22993
23029
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22994
23030
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22995
23031
|
return ret;
|
|
22996
23032
|
},
|
|
22997
|
-
|
|
23033
|
+
__wbg_getInputNotes_aa6ff856b28a9a3b: function(arg0, arg1, arg2, arg3) {
|
|
22998
23034
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22999
23035
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23000
23036
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23001
23037
|
return ret;
|
|
23002
23038
|
},
|
|
23003
|
-
|
|
23039
|
+
__wbg_getKeyCommitmentsByAccountId_51685ac35cc43f90: function(arg0, arg1, arg2, arg3) {
|
|
23004
23040
|
let deferred0_0;
|
|
23005
23041
|
let deferred0_1;
|
|
23006
23042
|
try {
|
|
@@ -23012,7 +23048,7 @@ function __wbg_get_imports() {
|
|
|
23012
23048
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23013
23049
|
}
|
|
23014
23050
|
},
|
|
23015
|
-
|
|
23051
|
+
__wbg_getNoteScript_aae2341fde5e8aab: function(arg0, arg1, arg2, arg3) {
|
|
23016
23052
|
let deferred0_0;
|
|
23017
23053
|
let deferred0_1;
|
|
23018
23054
|
try {
|
|
@@ -23024,33 +23060,33 @@ function __wbg_get_imports() {
|
|
|
23024
23060
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23025
23061
|
}
|
|
23026
23062
|
},
|
|
23027
|
-
|
|
23063
|
+
__wbg_getNoteTags_39dfaf5125d790dc: function(arg0, arg1) {
|
|
23028
23064
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
23029
23065
|
return ret;
|
|
23030
23066
|
},
|
|
23031
|
-
|
|
23067
|
+
__wbg_getOutputNotesFromIds_e4efafbf2d047fe6: function(arg0, arg1, arg2, arg3) {
|
|
23032
23068
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23033
23069
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23034
23070
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23035
23071
|
return ret;
|
|
23036
23072
|
},
|
|
23037
|
-
|
|
23073
|
+
__wbg_getOutputNotesFromNullifiers_7d985f82ae1db2be: function(arg0, arg1, arg2, arg3) {
|
|
23038
23074
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23039
23075
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23040
23076
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23041
23077
|
return ret;
|
|
23042
23078
|
},
|
|
23043
|
-
|
|
23079
|
+
__wbg_getOutputNotes_cdb4518075c647e5: function(arg0, arg1, arg2, arg3) {
|
|
23044
23080
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23045
23081
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23046
23082
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23047
23083
|
return ret;
|
|
23048
23084
|
},
|
|
23049
|
-
|
|
23085
|
+
__wbg_getPartialBlockchainNodesAll_674394a46a9a0113: function(arg0, arg1) {
|
|
23050
23086
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
23051
23087
|
return ret;
|
|
23052
23088
|
},
|
|
23053
|
-
|
|
23089
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_4b120d8c31f15e29: function(arg0, arg1, arg2, arg3) {
|
|
23054
23090
|
let deferred0_0;
|
|
23055
23091
|
let deferred0_1;
|
|
23056
23092
|
try {
|
|
@@ -23062,13 +23098,13 @@ function __wbg_get_imports() {
|
|
|
23062
23098
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23063
23099
|
}
|
|
23064
23100
|
},
|
|
23065
|
-
|
|
23101
|
+
__wbg_getPartialBlockchainNodes_9486ef4d56f6a4d4: function(arg0, arg1, arg2, arg3) {
|
|
23066
23102
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23067
23103
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23068
23104
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
23069
23105
|
return ret;
|
|
23070
23106
|
},
|
|
23071
|
-
|
|
23107
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_3ebcf8c15fb61638: function(arg0, arg1, arg2) {
|
|
23072
23108
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
23073
23109
|
return ret;
|
|
23074
23110
|
},
|
|
@@ -23079,7 +23115,7 @@ function __wbg_get_imports() {
|
|
|
23079
23115
|
const ret = arg0.getReader();
|
|
23080
23116
|
return ret;
|
|
23081
23117
|
}, arguments); },
|
|
23082
|
-
|
|
23118
|
+
__wbg_getSetting_dd6484d1ab6ab785: function(arg0, arg1, arg2, arg3) {
|
|
23083
23119
|
let deferred0_0;
|
|
23084
23120
|
let deferred0_1;
|
|
23085
23121
|
try {
|
|
@@ -23091,7 +23127,7 @@ function __wbg_get_imports() {
|
|
|
23091
23127
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23092
23128
|
}
|
|
23093
23129
|
},
|
|
23094
|
-
|
|
23130
|
+
__wbg_getSyncHeight_bdfc465844a19b19: function(arg0, arg1) {
|
|
23095
23131
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
23096
23132
|
return ret;
|
|
23097
23133
|
},
|
|
@@ -23099,15 +23135,15 @@ function __wbg_get_imports() {
|
|
|
23099
23135
|
const ret = arg0.getTime();
|
|
23100
23136
|
return ret;
|
|
23101
23137
|
},
|
|
23102
|
-
|
|
23138
|
+
__wbg_getTrackedBlockHeaderNumbers_d356fdc789b13156: function(arg0, arg1) {
|
|
23103
23139
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
23104
23140
|
return ret;
|
|
23105
23141
|
},
|
|
23106
|
-
|
|
23142
|
+
__wbg_getTrackedBlockHeaders_b4f9af19352e20e4: function(arg0, arg1) {
|
|
23107
23143
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
23108
23144
|
return ret;
|
|
23109
23145
|
},
|
|
23110
|
-
|
|
23146
|
+
__wbg_getTransactions_ebe5e94773cc1c65: function(arg0, arg1, arg2, arg3) {
|
|
23111
23147
|
let deferred0_0;
|
|
23112
23148
|
let deferred0_1;
|
|
23113
23149
|
try {
|
|
@@ -23119,7 +23155,7 @@ function __wbg_get_imports() {
|
|
|
23119
23155
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23120
23156
|
}
|
|
23121
23157
|
},
|
|
23122
|
-
|
|
23158
|
+
__wbg_getUnspentInputNoteNullifiers_aec3bc0e3be99738: function(arg0, arg1) {
|
|
23123
23159
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
23124
23160
|
return ret;
|
|
23125
23161
|
},
|
|
@@ -23163,7 +23199,7 @@ function __wbg_get_imports() {
|
|
|
23163
23199
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
23164
23200
|
return ret;
|
|
23165
23201
|
},
|
|
23166
|
-
|
|
23202
|
+
__wbg_insertAccountAddress_0af2cb0ca4b54516: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23167
23203
|
let deferred0_0;
|
|
23168
23204
|
let deferred0_1;
|
|
23169
23205
|
try {
|
|
@@ -23177,7 +23213,7 @@ function __wbg_get_imports() {
|
|
|
23177
23213
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23178
23214
|
}
|
|
23179
23215
|
},
|
|
23180
|
-
|
|
23216
|
+
__wbg_insertAccountAuth_fb13b5e942fea58f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23181
23217
|
let deferred0_0;
|
|
23182
23218
|
let deferred0_1;
|
|
23183
23219
|
let deferred1_0;
|
|
@@ -23194,7 +23230,7 @@ function __wbg_get_imports() {
|
|
|
23194
23230
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23195
23231
|
}
|
|
23196
23232
|
},
|
|
23197
|
-
|
|
23233
|
+
__wbg_insertAccountKeyMapping_ecada5f7c399925f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23198
23234
|
let deferred0_0;
|
|
23199
23235
|
let deferred0_1;
|
|
23200
23236
|
let deferred1_0;
|
|
@@ -23211,7 +23247,7 @@ function __wbg_get_imports() {
|
|
|
23211
23247
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23212
23248
|
}
|
|
23213
23249
|
},
|
|
23214
|
-
|
|
23250
|
+
__wbg_insertBlockHeader_16059888cf59b810: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23215
23251
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
23216
23252
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
23217
23253
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -23219,7 +23255,7 @@ function __wbg_get_imports() {
|
|
|
23219
23255
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
23220
23256
|
return ret;
|
|
23221
23257
|
},
|
|
23222
|
-
|
|
23258
|
+
__wbg_insertPartialBlockchainNodes_ace6ebaad3e7d57f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23223
23259
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23224
23260
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23225
23261
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -23227,7 +23263,7 @@ function __wbg_get_imports() {
|
|
|
23227
23263
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
23228
23264
|
return ret;
|
|
23229
23265
|
},
|
|
23230
|
-
|
|
23266
|
+
__wbg_insertSetting_121573b0ab9da562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23231
23267
|
let deferred0_0;
|
|
23232
23268
|
let deferred0_1;
|
|
23233
23269
|
try {
|
|
@@ -23241,7 +23277,7 @@ function __wbg_get_imports() {
|
|
|
23241
23277
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23242
23278
|
}
|
|
23243
23279
|
},
|
|
23244
|
-
|
|
23280
|
+
__wbg_insertTransactionScript_864f994618f1a3f8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23245
23281
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23246
23282
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23247
23283
|
let v1;
|
|
@@ -23334,11 +23370,11 @@ function __wbg_get_imports() {
|
|
|
23334
23370
|
const ret = arg0.length;
|
|
23335
23371
|
return ret;
|
|
23336
23372
|
},
|
|
23337
|
-
|
|
23373
|
+
__wbg_listSettingKeys_df89abca52542f21: function(arg0, arg1) {
|
|
23338
23374
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
23339
23375
|
return ret;
|
|
23340
23376
|
},
|
|
23341
|
-
|
|
23377
|
+
__wbg_lockAccount_6c6cd48dd4f916a5: function(arg0, arg1, arg2, arg3) {
|
|
23342
23378
|
let deferred0_0;
|
|
23343
23379
|
let deferred0_1;
|
|
23344
23380
|
try {
|
|
@@ -23422,7 +23458,7 @@ function __wbg_get_imports() {
|
|
|
23422
23458
|
const a = state0.a;
|
|
23423
23459
|
state0.a = 0;
|
|
23424
23460
|
try {
|
|
23425
|
-
return
|
|
23461
|
+
return wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(a, state0.b, arg0, arg1);
|
|
23426
23462
|
} finally {
|
|
23427
23463
|
state0.a = a;
|
|
23428
23464
|
}
|
|
@@ -23529,7 +23565,7 @@ function __wbg_get_imports() {
|
|
|
23529
23565
|
const ret = NoteTag.__unwrap(arg0);
|
|
23530
23566
|
return ret;
|
|
23531
23567
|
},
|
|
23532
|
-
|
|
23568
|
+
__wbg_openDatabase_b1424a6b7362c69c: function(arg0, arg1, arg2, arg3) {
|
|
23533
23569
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
23534
23570
|
return ret;
|
|
23535
23571
|
},
|
|
@@ -23560,7 +23596,7 @@ function __wbg_get_imports() {
|
|
|
23560
23596
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
23561
23597
|
return ret;
|
|
23562
23598
|
},
|
|
23563
|
-
|
|
23599
|
+
__wbg_pruneAccountHistory_22e8506d45f44fe7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23564
23600
|
let deferred0_0;
|
|
23565
23601
|
let deferred0_1;
|
|
23566
23602
|
let deferred1_0;
|
|
@@ -23577,7 +23613,7 @@ function __wbg_get_imports() {
|
|
|
23577
23613
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23578
23614
|
}
|
|
23579
23615
|
},
|
|
23580
|
-
|
|
23616
|
+
__wbg_pruneIrrelevantBlocks_87daff49119b4c5f: function(arg0, arg1) {
|
|
23581
23617
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
23582
23618
|
return ret;
|
|
23583
23619
|
},
|
|
@@ -23595,13 +23631,13 @@ function __wbg_get_imports() {
|
|
|
23595
23631
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
23596
23632
|
arg0.releaseLock();
|
|
23597
23633
|
},
|
|
23598
|
-
|
|
23634
|
+
__wbg_removeAccountAddress_dde849df5c7706f8: function(arg0, arg1, arg2, arg3) {
|
|
23599
23635
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23600
23636
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23601
23637
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
23602
23638
|
return ret;
|
|
23603
23639
|
},
|
|
23604
|
-
|
|
23640
|
+
__wbg_removeAccountAuth_50e297f4ae902348: function(arg0, arg1, arg2, arg3) {
|
|
23605
23641
|
let deferred0_0;
|
|
23606
23642
|
let deferred0_1;
|
|
23607
23643
|
try {
|
|
@@ -23613,7 +23649,7 @@ function __wbg_get_imports() {
|
|
|
23613
23649
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23614
23650
|
}
|
|
23615
23651
|
},
|
|
23616
|
-
|
|
23652
|
+
__wbg_removeAllMappingsForKey_1e0d5e23c7f96514: function(arg0, arg1, arg2, arg3) {
|
|
23617
23653
|
let deferred0_0;
|
|
23618
23654
|
let deferred0_1;
|
|
23619
23655
|
try {
|
|
@@ -23625,7 +23661,7 @@ function __wbg_get_imports() {
|
|
|
23625
23661
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23626
23662
|
}
|
|
23627
23663
|
},
|
|
23628
|
-
|
|
23664
|
+
__wbg_removeNoteTag_92477b25e0e47794: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23629
23665
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23630
23666
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23631
23667
|
let v1;
|
|
@@ -23641,7 +23677,7 @@ function __wbg_get_imports() {
|
|
|
23641
23677
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
23642
23678
|
return ret;
|
|
23643
23679
|
},
|
|
23644
|
-
|
|
23680
|
+
__wbg_removeSetting_fc7204b0de24b573: function(arg0, arg1, arg2, arg3) {
|
|
23645
23681
|
let deferred0_0;
|
|
23646
23682
|
let deferred0_1;
|
|
23647
23683
|
try {
|
|
@@ -23833,13 +23869,13 @@ function __wbg_get_imports() {
|
|
|
23833
23869
|
const ret = TransactionSummary.__wrap(arg0);
|
|
23834
23870
|
return ret;
|
|
23835
23871
|
},
|
|
23836
|
-
|
|
23872
|
+
__wbg_undoAccountStates_1c2427746f0e5c21: function(arg0, arg1, arg2, arg3) {
|
|
23837
23873
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23838
23874
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23839
23875
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
23840
23876
|
return ret;
|
|
23841
23877
|
},
|
|
23842
|
-
|
|
23878
|
+
__wbg_upsertAccountCode_35e59053ef5055ac: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23843
23879
|
let deferred0_0;
|
|
23844
23880
|
let deferred0_1;
|
|
23845
23881
|
try {
|
|
@@ -23853,7 +23889,7 @@ function __wbg_get_imports() {
|
|
|
23853
23889
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23854
23890
|
}
|
|
23855
23891
|
},
|
|
23856
|
-
|
|
23892
|
+
__wbg_upsertAccountRecord_f56ec255945d78ab: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
23857
23893
|
let deferred0_0;
|
|
23858
23894
|
let deferred0_1;
|
|
23859
23895
|
let deferred1_0;
|
|
@@ -23895,7 +23931,7 @@ function __wbg_get_imports() {
|
|
|
23895
23931
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
23896
23932
|
}
|
|
23897
23933
|
},
|
|
23898
|
-
|
|
23934
|
+
__wbg_upsertAccountStorage_6f9f8d1619c42121: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23899
23935
|
let deferred0_0;
|
|
23900
23936
|
let deferred0_1;
|
|
23901
23937
|
try {
|
|
@@ -23909,7 +23945,7 @@ function __wbg_get_imports() {
|
|
|
23909
23945
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23910
23946
|
}
|
|
23911
23947
|
},
|
|
23912
|
-
|
|
23948
|
+
__wbg_upsertForeignAccountCode_c39efae265a26a70: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23913
23949
|
let deferred0_0;
|
|
23914
23950
|
let deferred0_1;
|
|
23915
23951
|
let deferred2_0;
|
|
@@ -23928,7 +23964,7 @@ function __wbg_get_imports() {
|
|
|
23928
23964
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23929
23965
|
}
|
|
23930
23966
|
},
|
|
23931
|
-
|
|
23967
|
+
__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) {
|
|
23932
23968
|
let deferred0_0;
|
|
23933
23969
|
let deferred0_1;
|
|
23934
23970
|
let deferred4_0;
|
|
@@ -23970,7 +24006,7 @@ function __wbg_get_imports() {
|
|
|
23970
24006
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
23971
24007
|
}
|
|
23972
24008
|
},
|
|
23973
|
-
|
|
24009
|
+
__wbg_upsertNoteScript_7ed0c29e6c2adebe: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23974
24010
|
let deferred0_0;
|
|
23975
24011
|
let deferred0_1;
|
|
23976
24012
|
try {
|
|
@@ -23984,7 +24020,7 @@ function __wbg_get_imports() {
|
|
|
23984
24020
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23985
24021
|
}
|
|
23986
24022
|
},
|
|
23987
|
-
|
|
24023
|
+
__wbg_upsertOutputNote_378e42d786a31880: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
23988
24024
|
let deferred0_0;
|
|
23989
24025
|
let deferred0_1;
|
|
23990
24026
|
let deferred2_0;
|
|
@@ -24012,7 +24048,7 @@ function __wbg_get_imports() {
|
|
|
24012
24048
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24013
24049
|
}
|
|
24014
24050
|
},
|
|
24015
|
-
|
|
24051
|
+
__wbg_upsertStorageMapEntries_18f1f110157c89fd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24016
24052
|
let deferred0_0;
|
|
24017
24053
|
let deferred0_1;
|
|
24018
24054
|
try {
|
|
@@ -24026,7 +24062,7 @@ function __wbg_get_imports() {
|
|
|
24026
24062
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24027
24063
|
}
|
|
24028
24064
|
},
|
|
24029
|
-
|
|
24065
|
+
__wbg_upsertTransactionRecord_b471cc31ac2482e5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
24030
24066
|
let deferred0_0;
|
|
24031
24067
|
let deferred0_1;
|
|
24032
24068
|
try {
|
|
@@ -24047,7 +24083,7 @@ function __wbg_get_imports() {
|
|
|
24047
24083
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24048
24084
|
}
|
|
24049
24085
|
},
|
|
24050
|
-
|
|
24086
|
+
__wbg_upsertVaultAssets_f6f1c6ab846352e0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24051
24087
|
let deferred0_0;
|
|
24052
24088
|
let deferred0_1;
|
|
24053
24089
|
try {
|
|
@@ -24078,13 +24114,13 @@ function __wbg_get_imports() {
|
|
|
24078
24114
|
return ret;
|
|
24079
24115
|
},
|
|
24080
24116
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
24081
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
24082
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
24117
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [Externref], shim_idx: 695, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
24118
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0);
|
|
24083
24119
|
return ret;
|
|
24084
24120
|
},
|
|
24085
24121
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
24086
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
24087
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
24122
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [], shim_idx: 361, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
24123
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h26b09db1ae5ec871, wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0);
|
|
24088
24124
|
return ret;
|
|
24089
24125
|
},
|
|
24090
24126
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -24188,16 +24224,16 @@ function __wbg_get_imports() {
|
|
|
24188
24224
|
};
|
|
24189
24225
|
}
|
|
24190
24226
|
|
|
24191
|
-
function
|
|
24192
|
-
wasm.
|
|
24227
|
+
function wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0(arg0, arg1) {
|
|
24228
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h1e8a9c24645c31f0(arg0, arg1);
|
|
24193
24229
|
}
|
|
24194
24230
|
|
|
24195
|
-
function
|
|
24196
|
-
wasm.
|
|
24231
|
+
function wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0(arg0, arg1, arg2) {
|
|
24232
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hd8a2ee300ada83f0(arg0, arg1, arg2);
|
|
24197
24233
|
}
|
|
24198
24234
|
|
|
24199
|
-
function
|
|
24200
|
-
wasm.
|
|
24235
|
+
function wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(arg0, arg1, arg2, arg3) {
|
|
24236
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h25a2b6130ec77f92(arg0, arg1, arg2, arg3);
|
|
24201
24237
|
}
|
|
24202
24238
|
|
|
24203
24239
|
|
|
@@ -25000,7 +25036,7 @@ async function __wbg_init(module_or_path) {
|
|
|
25000
25036
|
|
|
25001
25037
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
25002
25038
|
|
|
25003
|
-
var
|
|
25039
|
+
var CargoD44KIErf = /*#__PURE__*/Object.freeze({
|
|
25004
25040
|
__proto__: null,
|
|
25005
25041
|
Account: Account,
|
|
25006
25042
|
AccountArray: AccountArray,
|