@miden-sdk/miden-sdk 0.14.9 → 0.14.11
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-DKB2aRX-.js → Cargo-CZopJ--X.js} +92 -115
- package/dist/mt/Cargo-CZopJ--X.js.map +1 -0
- package/dist/mt/assets/miden_client_web.wasm +0 -0
- package/dist/mt/crates/miden_client_web.d.ts +24 -32
- package/dist/mt/eager.js +1 -1
- package/dist/mt/index.js +53 -3
- 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-DKB2aRX--C6T4l3AF.js → Cargo-CZopJ--X-SsyOTzpb.js} +92 -115
- package/dist/mt/workers/Cargo-CZopJ--X-SsyOTzpb.js.map +1 -0
- package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
- package/dist/mt/workers/web-client-methods-worker.js +93 -116
- 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-jOTNoFyS.js → Cargo-DC6jSekr.js} +103 -126
- package/dist/st/Cargo-DC6jSekr.js.map +1 -0
- package/dist/st/assets/miden_client_web.wasm +0 -0
- package/dist/st/crates/miden_client_web.d.ts +24 -32
- package/dist/st/eager.js +1 -1
- package/dist/st/index.js +53 -3
- package/dist/st/index.js.map +1 -1
- package/dist/st/wasm.js +1 -1
- package/dist/st/workers/{Cargo-jOTNoFyS-DRTcF6wf.js → Cargo-DC6jSekr-BG7C7m56.js} +103 -126
- package/dist/st/workers/Cargo-DC6jSekr-BG7C7m56.js.map +1 -0
- package/dist/st/workers/assets/miden_client_web.wasm +0 -0
- package/dist/st/workers/web-client-methods-worker.js +104 -127
- 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/Cargo-DKB2aRX-.js.map +0 -1
- package/dist/mt/workers/Cargo-DKB2aRX--C6T4l3AF.js.map +0 -1
- package/dist/st/Cargo-jOTNoFyS.js.map +0 -1
- package/dist/st/workers/Cargo-jOTNoFyS-DRTcF6wf.js.map +0 -1
|
Binary file
|
|
@@ -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 CargoCZopJ_X; });
|
|
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
|
|
@@ -15464,6 +15464,21 @@ if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderly
|
|
|
15464
15464
|
|
|
15465
15465
|
/**
|
|
15466
15466
|
* Represents an update to a single account's state.
|
|
15467
|
+
*
|
|
15468
|
+
* `inspectable` is intentionally omitted (see #2183). When `inspectable` is
|
|
15469
|
+
* set on a struct with public fields, wasm-bindgen auto-generates a
|
|
15470
|
+
* `toJSON()` method that reads every field-getter — each of which calls
|
|
15471
|
+
* back into WASM via `__wbg_get_<class>_<field>(this.__wbg_ptr)`. Under
|
|
15472
|
+
* Next.js 16.2 dev-mode the patched `console.*` runs every non-primitive
|
|
15473
|
+
* argument through `safe-stable-stringify`, which invokes `toJSON()`
|
|
15474
|
+
* automatically. If the underlying pointer has been freed (or another
|
|
15475
|
+
* WASM call is in flight) the resulting `"null pointer passed to rust"`
|
|
15476
|
+
* trap propagates out of the user's `console.log` and crashes the
|
|
15477
|
+
* caller. Without `inspectable`, no `toJSON()` is emitted; JSON.stringify
|
|
15478
|
+
* falls back to `{}` (the wasm-bindgen wrapper has no own enumerable
|
|
15479
|
+
* data — it's all behind the `__wbg_ptr`), and the re-entry never
|
|
15480
|
+
* happens. Field access via the named getters still works exactly as
|
|
15481
|
+
* before; only the auto-stringification path is muted.
|
|
15467
15482
|
*/
|
|
15468
15483
|
class JsAccountUpdate {
|
|
15469
15484
|
static __wrap(ptr) {
|
|
@@ -15479,24 +15494,6 @@ class JsAccountUpdate {
|
|
|
15479
15494
|
}
|
|
15480
15495
|
return jsValue.__destroy_into_raw();
|
|
15481
15496
|
}
|
|
15482
|
-
toJSON() {
|
|
15483
|
-
return {
|
|
15484
|
-
accountCommitment: this.accountCommitment,
|
|
15485
|
-
accountId: this.accountId,
|
|
15486
|
-
accountSeed: this.accountSeed,
|
|
15487
|
-
assets: this.assets,
|
|
15488
|
-
codeRoot: this.codeRoot,
|
|
15489
|
-
committed: this.committed,
|
|
15490
|
-
nonce: this.nonce,
|
|
15491
|
-
storageMapEntries: this.storageMapEntries,
|
|
15492
|
-
storageRoot: this.storageRoot,
|
|
15493
|
-
storageSlots: this.storageSlots,
|
|
15494
|
-
vaultRoot: this.vaultRoot,
|
|
15495
|
-
};
|
|
15496
|
-
}
|
|
15497
|
-
toString() {
|
|
15498
|
-
return JSON.stringify(this);
|
|
15499
|
-
}
|
|
15500
15497
|
__destroy_into_raw() {
|
|
15501
15498
|
const ptr = this.__wbg_ptr;
|
|
15502
15499
|
this.__wbg_ptr = 0;
|
|
@@ -16012,6 +16009,9 @@ if (Symbol.dispose) JsStateSyncUpdate.prototype[Symbol.dispose] = JsStateSyncUpd
|
|
|
16012
16009
|
|
|
16013
16010
|
/**
|
|
16014
16011
|
* A JavaScript representation of a storage map entry in an account.
|
|
16012
|
+
*
|
|
16013
|
+
* `inspectable` is intentionally omitted — see the note on
|
|
16014
|
+
* `JsAccountUpdate` for the full rationale (#2183).
|
|
16015
16015
|
*/
|
|
16016
16016
|
class JsStorageMapEntry {
|
|
16017
16017
|
static __wrap(ptr) {
|
|
@@ -16027,16 +16027,6 @@ class JsStorageMapEntry {
|
|
|
16027
16027
|
}
|
|
16028
16028
|
return jsValue.__destroy_into_raw();
|
|
16029
16029
|
}
|
|
16030
|
-
toJSON() {
|
|
16031
|
-
return {
|
|
16032
|
-
key: this.key,
|
|
16033
|
-
slotName: this.slotName,
|
|
16034
|
-
value: this.value,
|
|
16035
|
-
};
|
|
16036
|
-
}
|
|
16037
|
-
toString() {
|
|
16038
|
-
return JSON.stringify(this);
|
|
16039
|
-
}
|
|
16040
16030
|
__destroy_into_raw() {
|
|
16041
16031
|
const ptr = this.__wbg_ptr;
|
|
16042
16032
|
this.__wbg_ptr = 0;
|
|
@@ -16127,6 +16117,9 @@ if (Symbol.dispose) JsStorageMapEntry.prototype[Symbol.dispose] = JsStorageMapEn
|
|
|
16127
16117
|
|
|
16128
16118
|
/**
|
|
16129
16119
|
* A JavaScript representation of a storage slot in an account.
|
|
16120
|
+
*
|
|
16121
|
+
* `inspectable` is intentionally omitted — see the note on
|
|
16122
|
+
* `JsAccountUpdate` for the full rationale (#2183).
|
|
16130
16123
|
*/
|
|
16131
16124
|
class JsStorageSlot {
|
|
16132
16125
|
static __wrap(ptr) {
|
|
@@ -16142,16 +16135,6 @@ class JsStorageSlot {
|
|
|
16142
16135
|
}
|
|
16143
16136
|
return jsValue.__destroy_into_raw();
|
|
16144
16137
|
}
|
|
16145
|
-
toJSON() {
|
|
16146
|
-
return {
|
|
16147
|
-
slotName: this.slotName,
|
|
16148
|
-
slotType: this.slotType,
|
|
16149
|
-
slotValue: this.slotValue,
|
|
16150
|
-
};
|
|
16151
|
-
}
|
|
16152
|
-
toString() {
|
|
16153
|
-
return JSON.stringify(this);
|
|
16154
|
-
}
|
|
16155
16138
|
__destroy_into_raw() {
|
|
16156
16139
|
const ptr = this.__wbg_ptr;
|
|
16157
16140
|
this.__wbg_ptr = 0;
|
|
@@ -16232,6 +16215,9 @@ if (Symbol.dispose) JsStorageSlot.prototype[Symbol.dispose] = JsStorageSlot.prot
|
|
|
16232
16215
|
|
|
16233
16216
|
/**
|
|
16234
16217
|
* An object that contains a serialized vault asset.
|
|
16218
|
+
*
|
|
16219
|
+
* `inspectable` is intentionally omitted — see the note on
|
|
16220
|
+
* `JsAccountUpdate` for the full rationale (#2183).
|
|
16235
16221
|
*/
|
|
16236
16222
|
class JsVaultAsset {
|
|
16237
16223
|
static __wrap(ptr) {
|
|
@@ -16247,15 +16233,6 @@ class JsVaultAsset {
|
|
|
16247
16233
|
}
|
|
16248
16234
|
return jsValue.__destroy_into_raw();
|
|
16249
16235
|
}
|
|
16250
|
-
toJSON() {
|
|
16251
|
-
return {
|
|
16252
|
-
asset: this.asset,
|
|
16253
|
-
vaultKey: this.vaultKey,
|
|
16254
|
-
};
|
|
16255
|
-
}
|
|
16256
|
-
toString() {
|
|
16257
|
-
return JSON.stringify(this);
|
|
16258
|
-
}
|
|
16259
16236
|
__destroy_into_raw() {
|
|
16260
16237
|
const ptr = this.__wbg_ptr;
|
|
16261
16238
|
this.__wbg_ptr = 0;
|
|
@@ -23765,7 +23742,7 @@ function __wbg_get_imports(memory) {
|
|
|
23765
23742
|
const ret = AccountStorage.__wrap(arg0);
|
|
23766
23743
|
return ret;
|
|
23767
23744
|
},
|
|
23768
|
-
|
|
23745
|
+
__wbg_addNoteTag_71f455acb2c33097: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23769
23746
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23770
23747
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23771
23748
|
let v1;
|
|
@@ -23788,15 +23765,15 @@ function __wbg_get_imports(memory) {
|
|
|
23788
23765
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
23789
23766
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
23790
23767
|
}, arguments); },
|
|
23791
|
-
|
|
23768
|
+
__wbg_applyFullAccountState_c2b7ca372af269ca: function(arg0, arg1, arg2) {
|
|
23792
23769
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
23793
23770
|
return ret;
|
|
23794
23771
|
},
|
|
23795
|
-
|
|
23772
|
+
__wbg_applyStateSync_91fddc562c8bef62: function(arg0, arg1, arg2) {
|
|
23796
23773
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
23797
23774
|
return ret;
|
|
23798
23775
|
},
|
|
23799
|
-
|
|
23776
|
+
__wbg_applyTransactionDelta_4dddecb0b77b7669: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
23800
23777
|
let deferred0_0;
|
|
23801
23778
|
let deferred0_1;
|
|
23802
23779
|
let deferred1_0;
|
|
@@ -23943,7 +23920,7 @@ function __wbg_get_imports(memory) {
|
|
|
23943
23920
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23944
23921
|
}
|
|
23945
23922
|
},
|
|
23946
|
-
|
|
23923
|
+
__wbg_exportStore_7414a54978b6564b: function(arg0, arg1) {
|
|
23947
23924
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
23948
23925
|
return ret;
|
|
23949
23926
|
},
|
|
@@ -23975,7 +23952,7 @@ function __wbg_get_imports(memory) {
|
|
|
23975
23952
|
const ret = FetchedNote.__wrap(arg0);
|
|
23976
23953
|
return ret;
|
|
23977
23954
|
},
|
|
23978
|
-
|
|
23955
|
+
__wbg_forceImportStore_ec328e296b0a4bff: function(arg0, arg1, arg2) {
|
|
23979
23956
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
23980
23957
|
return ret;
|
|
23981
23958
|
},
|
|
@@ -23995,7 +23972,7 @@ function __wbg_get_imports(memory) {
|
|
|
23995
23972
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
23996
23973
|
return ret;
|
|
23997
23974
|
},
|
|
23998
|
-
|
|
23975
|
+
__wbg_getAccountAddresses_e92f560e33b96c28: function(arg0, arg1, arg2, arg3) {
|
|
23999
23976
|
let deferred0_0;
|
|
24000
23977
|
let deferred0_1;
|
|
24001
23978
|
try {
|
|
@@ -24007,7 +23984,7 @@ function __wbg_get_imports(memory) {
|
|
|
24007
23984
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24008
23985
|
}
|
|
24009
23986
|
},
|
|
24010
|
-
|
|
23987
|
+
__wbg_getAccountAuthByPubKeyCommitment_28efb17c33476b84: function(arg0, arg1, arg2, arg3) {
|
|
24011
23988
|
let deferred0_0;
|
|
24012
23989
|
let deferred0_1;
|
|
24013
23990
|
try {
|
|
@@ -24019,7 +23996,7 @@ function __wbg_get_imports(memory) {
|
|
|
24019
23996
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24020
23997
|
}
|
|
24021
23998
|
},
|
|
24022
|
-
|
|
23999
|
+
__wbg_getAccountCode_188958db8c438bab: function(arg0, arg1, arg2, arg3) {
|
|
24023
24000
|
let deferred0_0;
|
|
24024
24001
|
let deferred0_1;
|
|
24025
24002
|
try {
|
|
@@ -24031,7 +24008,7 @@ function __wbg_get_imports(memory) {
|
|
|
24031
24008
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24032
24009
|
}
|
|
24033
24010
|
},
|
|
24034
|
-
|
|
24011
|
+
__wbg_getAccountHeaderByCommitment_4e6fa83d25c41363: function(arg0, arg1, arg2, arg3) {
|
|
24035
24012
|
let deferred0_0;
|
|
24036
24013
|
let deferred0_1;
|
|
24037
24014
|
try {
|
|
@@ -24043,7 +24020,7 @@ function __wbg_get_imports(memory) {
|
|
|
24043
24020
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24044
24021
|
}
|
|
24045
24022
|
},
|
|
24046
|
-
|
|
24023
|
+
__wbg_getAccountHeader_aabe60772170d684: function(arg0, arg1, arg2, arg3) {
|
|
24047
24024
|
let deferred0_0;
|
|
24048
24025
|
let deferred0_1;
|
|
24049
24026
|
try {
|
|
@@ -24055,7 +24032,7 @@ function __wbg_get_imports(memory) {
|
|
|
24055
24032
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24056
24033
|
}
|
|
24057
24034
|
},
|
|
24058
|
-
|
|
24035
|
+
__wbg_getAccountIdByKeyCommitment_3802e17bf8d3c9b9: function(arg0, arg1, arg2, arg3) {
|
|
24059
24036
|
let deferred0_0;
|
|
24060
24037
|
let deferred0_1;
|
|
24061
24038
|
try {
|
|
@@ -24067,11 +24044,11 @@ function __wbg_get_imports(memory) {
|
|
|
24067
24044
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24068
24045
|
}
|
|
24069
24046
|
},
|
|
24070
|
-
|
|
24047
|
+
__wbg_getAccountIds_8d429d26691ebece: function(arg0, arg1) {
|
|
24071
24048
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
24072
24049
|
return ret;
|
|
24073
24050
|
},
|
|
24074
|
-
|
|
24051
|
+
__wbg_getAccountStorageMaps_60eba620d7ef3115: function(arg0, arg1, arg2, arg3) {
|
|
24075
24052
|
let deferred0_0;
|
|
24076
24053
|
let deferred0_1;
|
|
24077
24054
|
try {
|
|
@@ -24083,7 +24060,7 @@ function __wbg_get_imports(memory) {
|
|
|
24083
24060
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24084
24061
|
}
|
|
24085
24062
|
},
|
|
24086
|
-
|
|
24063
|
+
__wbg_getAccountStorage_2e39fb9ee52b36ab: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24087
24064
|
let deferred0_0;
|
|
24088
24065
|
let deferred0_1;
|
|
24089
24066
|
try {
|
|
@@ -24097,7 +24074,7 @@ function __wbg_get_imports(memory) {
|
|
|
24097
24074
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24098
24075
|
}
|
|
24099
24076
|
},
|
|
24100
|
-
|
|
24077
|
+
__wbg_getAccountVaultAssets_f4af786007a4cd8a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24101
24078
|
let deferred0_0;
|
|
24102
24079
|
let deferred0_1;
|
|
24103
24080
|
try {
|
|
@@ -24111,23 +24088,23 @@ function __wbg_get_imports(memory) {
|
|
|
24111
24088
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24112
24089
|
}
|
|
24113
24090
|
},
|
|
24114
|
-
|
|
24091
|
+
__wbg_getAllAccountHeaders_41bc150e0b8348ab: function(arg0, arg1) {
|
|
24115
24092
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
24116
24093
|
return ret;
|
|
24117
24094
|
},
|
|
24118
|
-
|
|
24095
|
+
__wbg_getBlockHeaders_d37fd9c6e0f0fc3c: function(arg0, arg1, arg2, arg3) {
|
|
24119
24096
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
24120
24097
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24121
24098
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
24122
24099
|
return ret;
|
|
24123
24100
|
},
|
|
24124
|
-
|
|
24101
|
+
__wbg_getForeignAccountCode_07c810d364cd77ae: function(arg0, arg1, arg2, arg3) {
|
|
24125
24102
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24126
24103
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24127
24104
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
24128
24105
|
return ret;
|
|
24129
24106
|
},
|
|
24130
|
-
|
|
24107
|
+
__wbg_getInputNoteByOffset_677e9a33e6340b5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
24131
24108
|
let deferred1_0;
|
|
24132
24109
|
let deferred1_1;
|
|
24133
24110
|
try {
|
|
@@ -24141,25 +24118,25 @@ function __wbg_get_imports(memory) {
|
|
|
24141
24118
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24142
24119
|
}
|
|
24143
24120
|
},
|
|
24144
|
-
|
|
24121
|
+
__wbg_getInputNotesFromIds_44862afd379bbbb6: function(arg0, arg1, arg2, arg3) {
|
|
24145
24122
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24146
24123
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24147
24124
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24148
24125
|
return ret;
|
|
24149
24126
|
},
|
|
24150
|
-
|
|
24127
|
+
__wbg_getInputNotesFromNullifiers_2ec2c4e148b8f834: function(arg0, arg1, arg2, arg3) {
|
|
24151
24128
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24152
24129
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24153
24130
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24154
24131
|
return ret;
|
|
24155
24132
|
},
|
|
24156
|
-
|
|
24133
|
+
__wbg_getInputNotes_8e59018ef0fd9758: function(arg0, arg1, arg2, arg3) {
|
|
24157
24134
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24158
24135
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24159
24136
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24160
24137
|
return ret;
|
|
24161
24138
|
},
|
|
24162
|
-
|
|
24139
|
+
__wbg_getKeyCommitmentsByAccountId_8d83fa814d1cc718: function(arg0, arg1, arg2, arg3) {
|
|
24163
24140
|
let deferred0_0;
|
|
24164
24141
|
let deferred0_1;
|
|
24165
24142
|
try {
|
|
@@ -24171,7 +24148,7 @@ function __wbg_get_imports(memory) {
|
|
|
24171
24148
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24172
24149
|
}
|
|
24173
24150
|
},
|
|
24174
|
-
|
|
24151
|
+
__wbg_getNoteScript_fe7c88df1db18389: function(arg0, arg1, arg2, arg3) {
|
|
24175
24152
|
let deferred0_0;
|
|
24176
24153
|
let deferred0_1;
|
|
24177
24154
|
try {
|
|
@@ -24183,33 +24160,33 @@ function __wbg_get_imports(memory) {
|
|
|
24183
24160
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24184
24161
|
}
|
|
24185
24162
|
},
|
|
24186
|
-
|
|
24163
|
+
__wbg_getNoteTags_75edb9d48492a785: function(arg0, arg1) {
|
|
24187
24164
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
24188
24165
|
return ret;
|
|
24189
24166
|
},
|
|
24190
|
-
|
|
24167
|
+
__wbg_getOutputNotesFromIds_6db6231c439f3c87: function(arg0, arg1, arg2, arg3) {
|
|
24191
24168
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24192
24169
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24193
24170
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24194
24171
|
return ret;
|
|
24195
24172
|
},
|
|
24196
|
-
|
|
24173
|
+
__wbg_getOutputNotesFromNullifiers_30c2ca006c9640f8: function(arg0, arg1, arg2, arg3) {
|
|
24197
24174
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24198
24175
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24199
24176
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24200
24177
|
return ret;
|
|
24201
24178
|
},
|
|
24202
|
-
|
|
24179
|
+
__wbg_getOutputNotes_7a0d64dede8d64be: function(arg0, arg1, arg2, arg3) {
|
|
24203
24180
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24204
24181
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24205
24182
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24206
24183
|
return ret;
|
|
24207
24184
|
},
|
|
24208
|
-
|
|
24185
|
+
__wbg_getPartialBlockchainNodesAll_15a5f0a63644f546: function(arg0, arg1) {
|
|
24209
24186
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
24210
24187
|
return ret;
|
|
24211
24188
|
},
|
|
24212
|
-
|
|
24189
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_6742a36d7d26c921: function(arg0, arg1, arg2, arg3) {
|
|
24213
24190
|
let deferred0_0;
|
|
24214
24191
|
let deferred0_1;
|
|
24215
24192
|
try {
|
|
@@ -24221,13 +24198,13 @@ function __wbg_get_imports(memory) {
|
|
|
24221
24198
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24222
24199
|
}
|
|
24223
24200
|
},
|
|
24224
|
-
|
|
24201
|
+
__wbg_getPartialBlockchainNodes_35c67e8f4bfd8da6: function(arg0, arg1, arg2, arg3) {
|
|
24225
24202
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24226
24203
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24227
24204
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
24228
24205
|
return ret;
|
|
24229
24206
|
},
|
|
24230
|
-
|
|
24207
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_5a9240ed1087ee15: function(arg0, arg1, arg2) {
|
|
24231
24208
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
24232
24209
|
return ret;
|
|
24233
24210
|
},
|
|
@@ -24238,7 +24215,7 @@ function __wbg_get_imports(memory) {
|
|
|
24238
24215
|
const ret = arg0.getReader();
|
|
24239
24216
|
return ret;
|
|
24240
24217
|
}, arguments); },
|
|
24241
|
-
|
|
24218
|
+
__wbg_getSetting_25ab76d54f719ecd: function(arg0, arg1, arg2, arg3) {
|
|
24242
24219
|
let deferred0_0;
|
|
24243
24220
|
let deferred0_1;
|
|
24244
24221
|
try {
|
|
@@ -24250,7 +24227,7 @@ function __wbg_get_imports(memory) {
|
|
|
24250
24227
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24251
24228
|
}
|
|
24252
24229
|
},
|
|
24253
|
-
|
|
24230
|
+
__wbg_getSyncHeight_d852979e2c8c1c32: function(arg0, arg1) {
|
|
24254
24231
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
24255
24232
|
return ret;
|
|
24256
24233
|
},
|
|
@@ -24258,15 +24235,15 @@ function __wbg_get_imports(memory) {
|
|
|
24258
24235
|
const ret = arg0.getTime();
|
|
24259
24236
|
return ret;
|
|
24260
24237
|
},
|
|
24261
|
-
|
|
24238
|
+
__wbg_getTrackedBlockHeaderNumbers_7a6dd9bd482b7c1f: function(arg0, arg1) {
|
|
24262
24239
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
24263
24240
|
return ret;
|
|
24264
24241
|
},
|
|
24265
|
-
|
|
24242
|
+
__wbg_getTrackedBlockHeaders_921ecf4c4bdc8c6f: function(arg0, arg1) {
|
|
24266
24243
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
24267
24244
|
return ret;
|
|
24268
24245
|
},
|
|
24269
|
-
|
|
24246
|
+
__wbg_getTransactions_cb4af339938ce981: function(arg0, arg1, arg2, arg3) {
|
|
24270
24247
|
let deferred0_0;
|
|
24271
24248
|
let deferred0_1;
|
|
24272
24249
|
try {
|
|
@@ -24278,7 +24255,7 @@ function __wbg_get_imports(memory) {
|
|
|
24278
24255
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24279
24256
|
}
|
|
24280
24257
|
},
|
|
24281
|
-
|
|
24258
|
+
__wbg_getUnspentInputNoteNullifiers_1d2344145aa0e85d: function(arg0, arg1) {
|
|
24282
24259
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
24283
24260
|
return ret;
|
|
24284
24261
|
},
|
|
@@ -24322,7 +24299,7 @@ function __wbg_get_imports(memory) {
|
|
|
24322
24299
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
24323
24300
|
return ret;
|
|
24324
24301
|
},
|
|
24325
|
-
|
|
24302
|
+
__wbg_insertAccountAddress_e0c46f8e053193e9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24326
24303
|
let deferred0_0;
|
|
24327
24304
|
let deferred0_1;
|
|
24328
24305
|
try {
|
|
@@ -24336,7 +24313,7 @@ function __wbg_get_imports(memory) {
|
|
|
24336
24313
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24337
24314
|
}
|
|
24338
24315
|
},
|
|
24339
|
-
|
|
24316
|
+
__wbg_insertAccountAuth_07cdbb9f21acbbe0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24340
24317
|
let deferred0_0;
|
|
24341
24318
|
let deferred0_1;
|
|
24342
24319
|
let deferred1_0;
|
|
@@ -24353,7 +24330,7 @@ function __wbg_get_imports(memory) {
|
|
|
24353
24330
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24354
24331
|
}
|
|
24355
24332
|
},
|
|
24356
|
-
|
|
24333
|
+
__wbg_insertAccountKeyMapping_73ff296a94f45b01: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24357
24334
|
let deferred0_0;
|
|
24358
24335
|
let deferred0_1;
|
|
24359
24336
|
let deferred1_0;
|
|
@@ -24370,7 +24347,7 @@ function __wbg_get_imports(memory) {
|
|
|
24370
24347
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24371
24348
|
}
|
|
24372
24349
|
},
|
|
24373
|
-
|
|
24350
|
+
__wbg_insertBlockHeader_cd3837e26c067658: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24374
24351
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
24375
24352
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
24376
24353
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -24378,7 +24355,7 @@ function __wbg_get_imports(memory) {
|
|
|
24378
24355
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
24379
24356
|
return ret;
|
|
24380
24357
|
},
|
|
24381
|
-
|
|
24358
|
+
__wbg_insertPartialBlockchainNodes_dc6809b37ef4b562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24382
24359
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24383
24360
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24384
24361
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -24386,7 +24363,7 @@ function __wbg_get_imports(memory) {
|
|
|
24386
24363
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
24387
24364
|
return ret;
|
|
24388
24365
|
},
|
|
24389
|
-
|
|
24366
|
+
__wbg_insertSetting_11f6d3c419315d2a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24390
24367
|
let deferred0_0;
|
|
24391
24368
|
let deferred0_1;
|
|
24392
24369
|
try {
|
|
@@ -24400,7 +24377,7 @@ function __wbg_get_imports(memory) {
|
|
|
24400
24377
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24401
24378
|
}
|
|
24402
24379
|
},
|
|
24403
|
-
|
|
24380
|
+
__wbg_insertTransactionScript_54c2f4f1423a8889: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24404
24381
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24405
24382
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24406
24383
|
let v1;
|
|
@@ -24503,11 +24480,11 @@ function __wbg_get_imports(memory) {
|
|
|
24503
24480
|
const ret = arg0.length;
|
|
24504
24481
|
return ret;
|
|
24505
24482
|
},
|
|
24506
|
-
|
|
24483
|
+
__wbg_listSettingKeys_7a01958cfea9e4ce: function(arg0, arg1) {
|
|
24507
24484
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
24508
24485
|
return ret;
|
|
24509
24486
|
},
|
|
24510
|
-
|
|
24487
|
+
__wbg_lockAccount_4f46ad492483b226: function(arg0, arg1, arg2, arg3) {
|
|
24511
24488
|
let deferred0_0;
|
|
24512
24489
|
let deferred0_1;
|
|
24513
24490
|
try {
|
|
@@ -24714,7 +24691,7 @@ function __wbg_get_imports(memory) {
|
|
|
24714
24691
|
const ret = Array.of(arg0, arg1, arg2);
|
|
24715
24692
|
return ret;
|
|
24716
24693
|
},
|
|
24717
|
-
|
|
24694
|
+
__wbg_openDatabase_1e6c970bd99986cc: function(arg0, arg1, arg2, arg3) {
|
|
24718
24695
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
24719
24696
|
return ret;
|
|
24720
24697
|
},
|
|
@@ -24748,7 +24725,7 @@ function __wbg_get_imports(memory) {
|
|
|
24748
24725
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
24749
24726
|
return ret;
|
|
24750
24727
|
},
|
|
24751
|
-
|
|
24728
|
+
__wbg_pruneAccountHistory_b9f8ae9cc42b0264: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24752
24729
|
let deferred0_0;
|
|
24753
24730
|
let deferred0_1;
|
|
24754
24731
|
let deferred1_0;
|
|
@@ -24765,7 +24742,7 @@ function __wbg_get_imports(memory) {
|
|
|
24765
24742
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24766
24743
|
}
|
|
24767
24744
|
},
|
|
24768
|
-
|
|
24745
|
+
__wbg_pruneIrrelevantBlocks_fd53c6ee9a1529de: function(arg0, arg1) {
|
|
24769
24746
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
24770
24747
|
return ret;
|
|
24771
24748
|
},
|
|
@@ -24783,13 +24760,13 @@ function __wbg_get_imports(memory) {
|
|
|
24783
24760
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
24784
24761
|
arg0.releaseLock();
|
|
24785
24762
|
},
|
|
24786
|
-
|
|
24763
|
+
__wbg_removeAccountAddress_d84a263da31a63b1: function(arg0, arg1, arg2, arg3) {
|
|
24787
24764
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24788
24765
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24789
24766
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
24790
24767
|
return ret;
|
|
24791
24768
|
},
|
|
24792
|
-
|
|
24769
|
+
__wbg_removeAccountAuth_15fe803d63fd684f: function(arg0, arg1, arg2, arg3) {
|
|
24793
24770
|
let deferred0_0;
|
|
24794
24771
|
let deferred0_1;
|
|
24795
24772
|
try {
|
|
@@ -24801,7 +24778,7 @@ function __wbg_get_imports(memory) {
|
|
|
24801
24778
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24802
24779
|
}
|
|
24803
24780
|
},
|
|
24804
|
-
|
|
24781
|
+
__wbg_removeAllMappingsForKey_2a75a1ee44704b87: function(arg0, arg1, arg2, arg3) {
|
|
24805
24782
|
let deferred0_0;
|
|
24806
24783
|
let deferred0_1;
|
|
24807
24784
|
try {
|
|
@@ -24813,7 +24790,7 @@ function __wbg_get_imports(memory) {
|
|
|
24813
24790
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24814
24791
|
}
|
|
24815
24792
|
},
|
|
24816
|
-
|
|
24793
|
+
__wbg_removeNoteTag_3ffdd59c60d02d5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24817
24794
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24818
24795
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24819
24796
|
let v1;
|
|
@@ -24829,7 +24806,7 @@ function __wbg_get_imports(memory) {
|
|
|
24829
24806
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
24830
24807
|
return ret;
|
|
24831
24808
|
},
|
|
24832
|
-
|
|
24809
|
+
__wbg_removeSetting_ee0741372caba813: function(arg0, arg1, arg2, arg3) {
|
|
24833
24810
|
let deferred0_0;
|
|
24834
24811
|
let deferred0_1;
|
|
24835
24812
|
try {
|
|
@@ -25028,13 +25005,13 @@ function __wbg_get_imports(memory) {
|
|
|
25028
25005
|
const ret = TransactionSummary.__wrap(arg0);
|
|
25029
25006
|
return ret;
|
|
25030
25007
|
},
|
|
25031
|
-
|
|
25008
|
+
__wbg_undoAccountStates_3bb81f0b4777af78: function(arg0, arg1, arg2, arg3) {
|
|
25032
25009
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25033
25010
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25034
25011
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
25035
25012
|
return ret;
|
|
25036
25013
|
},
|
|
25037
|
-
|
|
25014
|
+
__wbg_upsertAccountCode_f54a1c88bec60044: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25038
25015
|
let deferred0_0;
|
|
25039
25016
|
let deferred0_1;
|
|
25040
25017
|
try {
|
|
@@ -25048,7 +25025,7 @@ function __wbg_get_imports(memory) {
|
|
|
25048
25025
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25049
25026
|
}
|
|
25050
25027
|
},
|
|
25051
|
-
|
|
25028
|
+
__wbg_upsertAccountRecord_d32c88004f7a361f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
25052
25029
|
let deferred0_0;
|
|
25053
25030
|
let deferred0_1;
|
|
25054
25031
|
let deferred1_0;
|
|
@@ -25090,7 +25067,7 @@ function __wbg_get_imports(memory) {
|
|
|
25090
25067
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
25091
25068
|
}
|
|
25092
25069
|
},
|
|
25093
|
-
|
|
25070
|
+
__wbg_upsertAccountStorage_dc9b3f362de53588: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25094
25071
|
let deferred0_0;
|
|
25095
25072
|
let deferred0_1;
|
|
25096
25073
|
try {
|
|
@@ -25104,7 +25081,7 @@ function __wbg_get_imports(memory) {
|
|
|
25104
25081
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25105
25082
|
}
|
|
25106
25083
|
},
|
|
25107
|
-
|
|
25084
|
+
__wbg_upsertForeignAccountCode_bc9c9b983d44be62: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
25108
25085
|
let deferred0_0;
|
|
25109
25086
|
let deferred0_1;
|
|
25110
25087
|
let deferred2_0;
|
|
@@ -25123,7 +25100,7 @@ function __wbg_get_imports(memory) {
|
|
|
25123
25100
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
25124
25101
|
}
|
|
25125
25102
|
},
|
|
25126
|
-
|
|
25103
|
+
__wbg_upsertInputNote_e7e2d594002d33f0: 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) {
|
|
25127
25104
|
let deferred0_0;
|
|
25128
25105
|
let deferred0_1;
|
|
25129
25106
|
let deferred4_0;
|
|
@@ -25165,7 +25142,7 @@ function __wbg_get_imports(memory) {
|
|
|
25165
25142
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
25166
25143
|
}
|
|
25167
25144
|
},
|
|
25168
|
-
|
|
25145
|
+
__wbg_upsertNoteScript_e5262374e58464a5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25169
25146
|
let deferred0_0;
|
|
25170
25147
|
let deferred0_1;
|
|
25171
25148
|
try {
|
|
@@ -25179,7 +25156,7 @@ function __wbg_get_imports(memory) {
|
|
|
25179
25156
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25180
25157
|
}
|
|
25181
25158
|
},
|
|
25182
|
-
|
|
25159
|
+
__wbg_upsertOutputNote_fb601f7b4e18f75d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
25183
25160
|
let deferred0_0;
|
|
25184
25161
|
let deferred0_1;
|
|
25185
25162
|
let deferred2_0;
|
|
@@ -25207,7 +25184,7 @@ function __wbg_get_imports(memory) {
|
|
|
25207
25184
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
25208
25185
|
}
|
|
25209
25186
|
},
|
|
25210
|
-
|
|
25187
|
+
__wbg_upsertStorageMapEntries_875ece6c792aece8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25211
25188
|
let deferred0_0;
|
|
25212
25189
|
let deferred0_1;
|
|
25213
25190
|
try {
|
|
@@ -25221,7 +25198,7 @@ function __wbg_get_imports(memory) {
|
|
|
25221
25198
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25222
25199
|
}
|
|
25223
25200
|
},
|
|
25224
|
-
|
|
25201
|
+
__wbg_upsertTransactionRecord_5f9c83704ca38dc5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
25225
25202
|
let deferred0_0;
|
|
25226
25203
|
let deferred0_1;
|
|
25227
25204
|
try {
|
|
@@ -25242,7 +25219,7 @@ function __wbg_get_imports(memory) {
|
|
|
25242
25219
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25243
25220
|
}
|
|
25244
25221
|
},
|
|
25245
|
-
|
|
25222
|
+
__wbg_upsertVaultAssets_acbcc6d51cb80ac5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25246
25223
|
let deferred0_0;
|
|
25247
25224
|
let deferred0_1;
|
|
25248
25225
|
try {
|
|
@@ -26395,7 +26372,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
26395
26372
|
|
|
26396
26373
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
26397
26374
|
|
|
26398
|
-
var
|
|
26375
|
+
var CargoCZopJ_X = /*#__PURE__*/Object.freeze({
|
|
26399
26376
|
__proto__: null,
|
|
26400
26377
|
Account: Account,
|
|
26401
26378
|
AccountArray: AccountArray,
|