@miden-sdk/miden-sdk 0.14.10 → 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-DcB9UMnw.js → Cargo-CZopJ--X.js} +93 -116
- 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-DcB9UMnw-w3wXmKCr.js → Cargo-CZopJ--X-SsyOTzpb.js} +93 -116
- 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 +94 -117
- 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-CgOCogcE.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-CgOCogcE-dIBKWd7c.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-DcB9UMnw.js.map +0 -1
- package/dist/mt/workers/Cargo-DcB9UMnw-w3wXmKCr.js.map +0 -1
- package/dist/st/Cargo-CgOCogcE.js.map +0 -1
- package/dist/st/workers/Cargo-CgOCogcE-dIBKWd7c.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 CargoDC6jSekr; });
|
|
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
|
|
@@ -15365,6 +15365,21 @@ if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderly
|
|
|
15365
15365
|
|
|
15366
15366
|
/**
|
|
15367
15367
|
* Represents an update to a single account's state.
|
|
15368
|
+
*
|
|
15369
|
+
* `inspectable` is intentionally omitted (see #2183). When `inspectable` is
|
|
15370
|
+
* set on a struct with public fields, wasm-bindgen auto-generates a
|
|
15371
|
+
* `toJSON()` method that reads every field-getter — each of which calls
|
|
15372
|
+
* back into WASM via `__wbg_get_<class>_<field>(this.__wbg_ptr)`. Under
|
|
15373
|
+
* Next.js 16.2 dev-mode the patched `console.*` runs every non-primitive
|
|
15374
|
+
* argument through `safe-stable-stringify`, which invokes `toJSON()`
|
|
15375
|
+
* automatically. If the underlying pointer has been freed (or another
|
|
15376
|
+
* WASM call is in flight) the resulting `"null pointer passed to rust"`
|
|
15377
|
+
* trap propagates out of the user's `console.log` and crashes the
|
|
15378
|
+
* caller. Without `inspectable`, no `toJSON()` is emitted; JSON.stringify
|
|
15379
|
+
* falls back to `{}` (the wasm-bindgen wrapper has no own enumerable
|
|
15380
|
+
* data — it's all behind the `__wbg_ptr`), and the re-entry never
|
|
15381
|
+
* happens. Field access via the named getters still works exactly as
|
|
15382
|
+
* before; only the auto-stringification path is muted.
|
|
15368
15383
|
*/
|
|
15369
15384
|
class JsAccountUpdate {
|
|
15370
15385
|
static __wrap(ptr) {
|
|
@@ -15380,24 +15395,6 @@ class JsAccountUpdate {
|
|
|
15380
15395
|
}
|
|
15381
15396
|
return jsValue.__destroy_into_raw();
|
|
15382
15397
|
}
|
|
15383
|
-
toJSON() {
|
|
15384
|
-
return {
|
|
15385
|
-
accountCommitment: this.accountCommitment,
|
|
15386
|
-
accountId: this.accountId,
|
|
15387
|
-
accountSeed: this.accountSeed,
|
|
15388
|
-
assets: this.assets,
|
|
15389
|
-
codeRoot: this.codeRoot,
|
|
15390
|
-
committed: this.committed,
|
|
15391
|
-
nonce: this.nonce,
|
|
15392
|
-
storageMapEntries: this.storageMapEntries,
|
|
15393
|
-
storageRoot: this.storageRoot,
|
|
15394
|
-
storageSlots: this.storageSlots,
|
|
15395
|
-
vaultRoot: this.vaultRoot,
|
|
15396
|
-
};
|
|
15397
|
-
}
|
|
15398
|
-
toString() {
|
|
15399
|
-
return JSON.stringify(this);
|
|
15400
|
-
}
|
|
15401
15398
|
__destroy_into_raw() {
|
|
15402
15399
|
const ptr = this.__wbg_ptr;
|
|
15403
15400
|
this.__wbg_ptr = 0;
|
|
@@ -15913,6 +15910,9 @@ if (Symbol.dispose) JsStateSyncUpdate.prototype[Symbol.dispose] = JsStateSyncUpd
|
|
|
15913
15910
|
|
|
15914
15911
|
/**
|
|
15915
15912
|
* A JavaScript representation of a storage map entry in an account.
|
|
15913
|
+
*
|
|
15914
|
+
* `inspectable` is intentionally omitted — see the note on
|
|
15915
|
+
* `JsAccountUpdate` for the full rationale (#2183).
|
|
15916
15916
|
*/
|
|
15917
15917
|
class JsStorageMapEntry {
|
|
15918
15918
|
static __wrap(ptr) {
|
|
@@ -15928,16 +15928,6 @@ class JsStorageMapEntry {
|
|
|
15928
15928
|
}
|
|
15929
15929
|
return jsValue.__destroy_into_raw();
|
|
15930
15930
|
}
|
|
15931
|
-
toJSON() {
|
|
15932
|
-
return {
|
|
15933
|
-
key: this.key,
|
|
15934
|
-
slotName: this.slotName,
|
|
15935
|
-
value: this.value,
|
|
15936
|
-
};
|
|
15937
|
-
}
|
|
15938
|
-
toString() {
|
|
15939
|
-
return JSON.stringify(this);
|
|
15940
|
-
}
|
|
15941
15931
|
__destroy_into_raw() {
|
|
15942
15932
|
const ptr = this.__wbg_ptr;
|
|
15943
15933
|
this.__wbg_ptr = 0;
|
|
@@ -16028,6 +16018,9 @@ if (Symbol.dispose) JsStorageMapEntry.prototype[Symbol.dispose] = JsStorageMapEn
|
|
|
16028
16018
|
|
|
16029
16019
|
/**
|
|
16030
16020
|
* A JavaScript representation of a storage slot in an account.
|
|
16021
|
+
*
|
|
16022
|
+
* `inspectable` is intentionally omitted — see the note on
|
|
16023
|
+
* `JsAccountUpdate` for the full rationale (#2183).
|
|
16031
16024
|
*/
|
|
16032
16025
|
class JsStorageSlot {
|
|
16033
16026
|
static __wrap(ptr) {
|
|
@@ -16043,16 +16036,6 @@ class JsStorageSlot {
|
|
|
16043
16036
|
}
|
|
16044
16037
|
return jsValue.__destroy_into_raw();
|
|
16045
16038
|
}
|
|
16046
|
-
toJSON() {
|
|
16047
|
-
return {
|
|
16048
|
-
slotName: this.slotName,
|
|
16049
|
-
slotType: this.slotType,
|
|
16050
|
-
slotValue: this.slotValue,
|
|
16051
|
-
};
|
|
16052
|
-
}
|
|
16053
|
-
toString() {
|
|
16054
|
-
return JSON.stringify(this);
|
|
16055
|
-
}
|
|
16056
16039
|
__destroy_into_raw() {
|
|
16057
16040
|
const ptr = this.__wbg_ptr;
|
|
16058
16041
|
this.__wbg_ptr = 0;
|
|
@@ -16133,6 +16116,9 @@ if (Symbol.dispose) JsStorageSlot.prototype[Symbol.dispose] = JsStorageSlot.prot
|
|
|
16133
16116
|
|
|
16134
16117
|
/**
|
|
16135
16118
|
* An object that contains a serialized vault asset.
|
|
16119
|
+
*
|
|
16120
|
+
* `inspectable` is intentionally omitted — see the note on
|
|
16121
|
+
* `JsAccountUpdate` for the full rationale (#2183).
|
|
16136
16122
|
*/
|
|
16137
16123
|
class JsVaultAsset {
|
|
16138
16124
|
static __wrap(ptr) {
|
|
@@ -16148,15 +16134,6 @@ class JsVaultAsset {
|
|
|
16148
16134
|
}
|
|
16149
16135
|
return jsValue.__destroy_into_raw();
|
|
16150
16136
|
}
|
|
16151
|
-
toJSON() {
|
|
16152
|
-
return {
|
|
16153
|
-
asset: this.asset,
|
|
16154
|
-
vaultKey: this.vaultKey,
|
|
16155
|
-
};
|
|
16156
|
-
}
|
|
16157
|
-
toString() {
|
|
16158
|
-
return JSON.stringify(this);
|
|
16159
|
-
}
|
|
16160
16137
|
__destroy_into_raw() {
|
|
16161
16138
|
const ptr = this.__wbg_ptr;
|
|
16162
16139
|
this.__wbg_ptr = 0;
|
|
@@ -23576,7 +23553,7 @@ function __wbg_get_imports() {
|
|
|
23576
23553
|
const ret = AccountStorage.__wrap(arg0);
|
|
23577
23554
|
return ret;
|
|
23578
23555
|
},
|
|
23579
|
-
|
|
23556
|
+
__wbg_addNoteTag_71f455acb2c33097: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23580
23557
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23581
23558
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23582
23559
|
let v1;
|
|
@@ -23599,15 +23576,15 @@ function __wbg_get_imports() {
|
|
|
23599
23576
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
23600
23577
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
23601
23578
|
}, arguments); },
|
|
23602
|
-
|
|
23579
|
+
__wbg_applyFullAccountState_c2b7ca372af269ca: function(arg0, arg1, arg2) {
|
|
23603
23580
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
23604
23581
|
return ret;
|
|
23605
23582
|
},
|
|
23606
|
-
|
|
23583
|
+
__wbg_applyStateSync_91fddc562c8bef62: function(arg0, arg1, arg2) {
|
|
23607
23584
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
23608
23585
|
return ret;
|
|
23609
23586
|
},
|
|
23610
|
-
|
|
23587
|
+
__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) {
|
|
23611
23588
|
let deferred0_0;
|
|
23612
23589
|
let deferred0_1;
|
|
23613
23590
|
let deferred1_0;
|
|
@@ -23742,7 +23719,7 @@ function __wbg_get_imports() {
|
|
|
23742
23719
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23743
23720
|
}
|
|
23744
23721
|
},
|
|
23745
|
-
|
|
23722
|
+
__wbg_exportStore_7414a54978b6564b: function(arg0, arg1) {
|
|
23746
23723
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
23747
23724
|
return ret;
|
|
23748
23725
|
},
|
|
@@ -23774,7 +23751,7 @@ function __wbg_get_imports() {
|
|
|
23774
23751
|
const ret = FetchedNote.__wrap(arg0);
|
|
23775
23752
|
return ret;
|
|
23776
23753
|
},
|
|
23777
|
-
|
|
23754
|
+
__wbg_forceImportStore_ec328e296b0a4bff: function(arg0, arg1, arg2) {
|
|
23778
23755
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
23779
23756
|
return ret;
|
|
23780
23757
|
},
|
|
@@ -23794,7 +23771,7 @@ function __wbg_get_imports() {
|
|
|
23794
23771
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
23795
23772
|
return ret;
|
|
23796
23773
|
},
|
|
23797
|
-
|
|
23774
|
+
__wbg_getAccountAddresses_e92f560e33b96c28: function(arg0, arg1, arg2, arg3) {
|
|
23798
23775
|
let deferred0_0;
|
|
23799
23776
|
let deferred0_1;
|
|
23800
23777
|
try {
|
|
@@ -23806,7 +23783,7 @@ function __wbg_get_imports() {
|
|
|
23806
23783
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23807
23784
|
}
|
|
23808
23785
|
},
|
|
23809
|
-
|
|
23786
|
+
__wbg_getAccountAuthByPubKeyCommitment_28efb17c33476b84: function(arg0, arg1, arg2, arg3) {
|
|
23810
23787
|
let deferred0_0;
|
|
23811
23788
|
let deferred0_1;
|
|
23812
23789
|
try {
|
|
@@ -23818,7 +23795,7 @@ function __wbg_get_imports() {
|
|
|
23818
23795
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23819
23796
|
}
|
|
23820
23797
|
},
|
|
23821
|
-
|
|
23798
|
+
__wbg_getAccountCode_188958db8c438bab: function(arg0, arg1, arg2, arg3) {
|
|
23822
23799
|
let deferred0_0;
|
|
23823
23800
|
let deferred0_1;
|
|
23824
23801
|
try {
|
|
@@ -23830,7 +23807,7 @@ function __wbg_get_imports() {
|
|
|
23830
23807
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23831
23808
|
}
|
|
23832
23809
|
},
|
|
23833
|
-
|
|
23810
|
+
__wbg_getAccountHeaderByCommitment_4e6fa83d25c41363: function(arg0, arg1, arg2, arg3) {
|
|
23834
23811
|
let deferred0_0;
|
|
23835
23812
|
let deferred0_1;
|
|
23836
23813
|
try {
|
|
@@ -23842,7 +23819,7 @@ function __wbg_get_imports() {
|
|
|
23842
23819
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23843
23820
|
}
|
|
23844
23821
|
},
|
|
23845
|
-
|
|
23822
|
+
__wbg_getAccountHeader_aabe60772170d684: function(arg0, arg1, arg2, arg3) {
|
|
23846
23823
|
let deferred0_0;
|
|
23847
23824
|
let deferred0_1;
|
|
23848
23825
|
try {
|
|
@@ -23854,7 +23831,7 @@ function __wbg_get_imports() {
|
|
|
23854
23831
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23855
23832
|
}
|
|
23856
23833
|
},
|
|
23857
|
-
|
|
23834
|
+
__wbg_getAccountIdByKeyCommitment_3802e17bf8d3c9b9: function(arg0, arg1, arg2, arg3) {
|
|
23858
23835
|
let deferred0_0;
|
|
23859
23836
|
let deferred0_1;
|
|
23860
23837
|
try {
|
|
@@ -23866,11 +23843,11 @@ function __wbg_get_imports() {
|
|
|
23866
23843
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23867
23844
|
}
|
|
23868
23845
|
},
|
|
23869
|
-
|
|
23846
|
+
__wbg_getAccountIds_8d429d26691ebece: function(arg0, arg1) {
|
|
23870
23847
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
23871
23848
|
return ret;
|
|
23872
23849
|
},
|
|
23873
|
-
|
|
23850
|
+
__wbg_getAccountStorageMaps_60eba620d7ef3115: function(arg0, arg1, arg2, arg3) {
|
|
23874
23851
|
let deferred0_0;
|
|
23875
23852
|
let deferred0_1;
|
|
23876
23853
|
try {
|
|
@@ -23882,7 +23859,7 @@ function __wbg_get_imports() {
|
|
|
23882
23859
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23883
23860
|
}
|
|
23884
23861
|
},
|
|
23885
|
-
|
|
23862
|
+
__wbg_getAccountStorage_2e39fb9ee52b36ab: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23886
23863
|
let deferred0_0;
|
|
23887
23864
|
let deferred0_1;
|
|
23888
23865
|
try {
|
|
@@ -23896,7 +23873,7 @@ function __wbg_get_imports() {
|
|
|
23896
23873
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23897
23874
|
}
|
|
23898
23875
|
},
|
|
23899
|
-
|
|
23876
|
+
__wbg_getAccountVaultAssets_f4af786007a4cd8a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23900
23877
|
let deferred0_0;
|
|
23901
23878
|
let deferred0_1;
|
|
23902
23879
|
try {
|
|
@@ -23910,23 +23887,23 @@ function __wbg_get_imports() {
|
|
|
23910
23887
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23911
23888
|
}
|
|
23912
23889
|
},
|
|
23913
|
-
|
|
23890
|
+
__wbg_getAllAccountHeaders_41bc150e0b8348ab: function(arg0, arg1) {
|
|
23914
23891
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
23915
23892
|
return ret;
|
|
23916
23893
|
},
|
|
23917
|
-
|
|
23894
|
+
__wbg_getBlockHeaders_d37fd9c6e0f0fc3c: function(arg0, arg1, arg2, arg3) {
|
|
23918
23895
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
23919
23896
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23920
23897
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
23921
23898
|
return ret;
|
|
23922
23899
|
},
|
|
23923
|
-
|
|
23900
|
+
__wbg_getForeignAccountCode_07c810d364cd77ae: function(arg0, arg1, arg2, arg3) {
|
|
23924
23901
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23925
23902
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23926
23903
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
23927
23904
|
return ret;
|
|
23928
23905
|
},
|
|
23929
|
-
|
|
23906
|
+
__wbg_getInputNoteByOffset_677e9a33e6340b5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
23930
23907
|
let deferred1_0;
|
|
23931
23908
|
let deferred1_1;
|
|
23932
23909
|
try {
|
|
@@ -23940,25 +23917,25 @@ function __wbg_get_imports() {
|
|
|
23940
23917
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23941
23918
|
}
|
|
23942
23919
|
},
|
|
23943
|
-
|
|
23920
|
+
__wbg_getInputNotesFromIds_44862afd379bbbb6: function(arg0, arg1, arg2, arg3) {
|
|
23944
23921
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23945
23922
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23946
23923
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23947
23924
|
return ret;
|
|
23948
23925
|
},
|
|
23949
|
-
|
|
23926
|
+
__wbg_getInputNotesFromNullifiers_2ec2c4e148b8f834: function(arg0, arg1, arg2, arg3) {
|
|
23950
23927
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23951
23928
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23952
23929
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23953
23930
|
return ret;
|
|
23954
23931
|
},
|
|
23955
|
-
|
|
23932
|
+
__wbg_getInputNotes_8e59018ef0fd9758: function(arg0, arg1, arg2, arg3) {
|
|
23956
23933
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23957
23934
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23958
23935
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23959
23936
|
return ret;
|
|
23960
23937
|
},
|
|
23961
|
-
|
|
23938
|
+
__wbg_getKeyCommitmentsByAccountId_8d83fa814d1cc718: function(arg0, arg1, arg2, arg3) {
|
|
23962
23939
|
let deferred0_0;
|
|
23963
23940
|
let deferred0_1;
|
|
23964
23941
|
try {
|
|
@@ -23970,7 +23947,7 @@ function __wbg_get_imports() {
|
|
|
23970
23947
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23971
23948
|
}
|
|
23972
23949
|
},
|
|
23973
|
-
|
|
23950
|
+
__wbg_getNoteScript_fe7c88df1db18389: function(arg0, arg1, arg2, arg3) {
|
|
23974
23951
|
let deferred0_0;
|
|
23975
23952
|
let deferred0_1;
|
|
23976
23953
|
try {
|
|
@@ -23982,33 +23959,33 @@ function __wbg_get_imports() {
|
|
|
23982
23959
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23983
23960
|
}
|
|
23984
23961
|
},
|
|
23985
|
-
|
|
23962
|
+
__wbg_getNoteTags_75edb9d48492a785: function(arg0, arg1) {
|
|
23986
23963
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
23987
23964
|
return ret;
|
|
23988
23965
|
},
|
|
23989
|
-
|
|
23966
|
+
__wbg_getOutputNotesFromIds_6db6231c439f3c87: function(arg0, arg1, arg2, arg3) {
|
|
23990
23967
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23991
23968
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23992
23969
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23993
23970
|
return ret;
|
|
23994
23971
|
},
|
|
23995
|
-
|
|
23972
|
+
__wbg_getOutputNotesFromNullifiers_30c2ca006c9640f8: function(arg0, arg1, arg2, arg3) {
|
|
23996
23973
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23997
23974
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23998
23975
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23999
23976
|
return ret;
|
|
24000
23977
|
},
|
|
24001
|
-
|
|
23978
|
+
__wbg_getOutputNotes_7a0d64dede8d64be: function(arg0, arg1, arg2, arg3) {
|
|
24002
23979
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24003
23980
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24004
23981
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24005
23982
|
return ret;
|
|
24006
23983
|
},
|
|
24007
|
-
|
|
23984
|
+
__wbg_getPartialBlockchainNodesAll_15a5f0a63644f546: function(arg0, arg1) {
|
|
24008
23985
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
24009
23986
|
return ret;
|
|
24010
23987
|
},
|
|
24011
|
-
|
|
23988
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_6742a36d7d26c921: function(arg0, arg1, arg2, arg3) {
|
|
24012
23989
|
let deferred0_0;
|
|
24013
23990
|
let deferred0_1;
|
|
24014
23991
|
try {
|
|
@@ -24020,13 +23997,13 @@ function __wbg_get_imports() {
|
|
|
24020
23997
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24021
23998
|
}
|
|
24022
23999
|
},
|
|
24023
|
-
|
|
24000
|
+
__wbg_getPartialBlockchainNodes_35c67e8f4bfd8da6: function(arg0, arg1, arg2, arg3) {
|
|
24024
24001
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24025
24002
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24026
24003
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
24027
24004
|
return ret;
|
|
24028
24005
|
},
|
|
24029
|
-
|
|
24006
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_5a9240ed1087ee15: function(arg0, arg1, arg2) {
|
|
24030
24007
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
24031
24008
|
return ret;
|
|
24032
24009
|
},
|
|
@@ -24037,7 +24014,7 @@ function __wbg_get_imports() {
|
|
|
24037
24014
|
const ret = arg0.getReader();
|
|
24038
24015
|
return ret;
|
|
24039
24016
|
}, arguments); },
|
|
24040
|
-
|
|
24017
|
+
__wbg_getSetting_25ab76d54f719ecd: function(arg0, arg1, arg2, arg3) {
|
|
24041
24018
|
let deferred0_0;
|
|
24042
24019
|
let deferred0_1;
|
|
24043
24020
|
try {
|
|
@@ -24049,7 +24026,7 @@ function __wbg_get_imports() {
|
|
|
24049
24026
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24050
24027
|
}
|
|
24051
24028
|
},
|
|
24052
|
-
|
|
24029
|
+
__wbg_getSyncHeight_d852979e2c8c1c32: function(arg0, arg1) {
|
|
24053
24030
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
24054
24031
|
return ret;
|
|
24055
24032
|
},
|
|
@@ -24057,15 +24034,15 @@ function __wbg_get_imports() {
|
|
|
24057
24034
|
const ret = arg0.getTime();
|
|
24058
24035
|
return ret;
|
|
24059
24036
|
},
|
|
24060
|
-
|
|
24037
|
+
__wbg_getTrackedBlockHeaderNumbers_7a6dd9bd482b7c1f: function(arg0, arg1) {
|
|
24061
24038
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
24062
24039
|
return ret;
|
|
24063
24040
|
},
|
|
24064
|
-
|
|
24041
|
+
__wbg_getTrackedBlockHeaders_921ecf4c4bdc8c6f: function(arg0, arg1) {
|
|
24065
24042
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
24066
24043
|
return ret;
|
|
24067
24044
|
},
|
|
24068
|
-
|
|
24045
|
+
__wbg_getTransactions_cb4af339938ce981: function(arg0, arg1, arg2, arg3) {
|
|
24069
24046
|
let deferred0_0;
|
|
24070
24047
|
let deferred0_1;
|
|
24071
24048
|
try {
|
|
@@ -24077,7 +24054,7 @@ function __wbg_get_imports() {
|
|
|
24077
24054
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24078
24055
|
}
|
|
24079
24056
|
},
|
|
24080
|
-
|
|
24057
|
+
__wbg_getUnspentInputNoteNullifiers_1d2344145aa0e85d: function(arg0, arg1) {
|
|
24081
24058
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
24082
24059
|
return ret;
|
|
24083
24060
|
},
|
|
@@ -24121,7 +24098,7 @@ function __wbg_get_imports() {
|
|
|
24121
24098
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
24122
24099
|
return ret;
|
|
24123
24100
|
},
|
|
24124
|
-
|
|
24101
|
+
__wbg_insertAccountAddress_e0c46f8e053193e9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24125
24102
|
let deferred0_0;
|
|
24126
24103
|
let deferred0_1;
|
|
24127
24104
|
try {
|
|
@@ -24135,7 +24112,7 @@ function __wbg_get_imports() {
|
|
|
24135
24112
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24136
24113
|
}
|
|
24137
24114
|
},
|
|
24138
|
-
|
|
24115
|
+
__wbg_insertAccountAuth_07cdbb9f21acbbe0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24139
24116
|
let deferred0_0;
|
|
24140
24117
|
let deferred0_1;
|
|
24141
24118
|
let deferred1_0;
|
|
@@ -24152,7 +24129,7 @@ function __wbg_get_imports() {
|
|
|
24152
24129
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24153
24130
|
}
|
|
24154
24131
|
},
|
|
24155
|
-
|
|
24132
|
+
__wbg_insertAccountKeyMapping_73ff296a94f45b01: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24156
24133
|
let deferred0_0;
|
|
24157
24134
|
let deferred0_1;
|
|
24158
24135
|
let deferred1_0;
|
|
@@ -24169,7 +24146,7 @@ function __wbg_get_imports() {
|
|
|
24169
24146
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24170
24147
|
}
|
|
24171
24148
|
},
|
|
24172
|
-
|
|
24149
|
+
__wbg_insertBlockHeader_cd3837e26c067658: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24173
24150
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
24174
24151
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
24175
24152
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -24177,7 +24154,7 @@ function __wbg_get_imports() {
|
|
|
24177
24154
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
24178
24155
|
return ret;
|
|
24179
24156
|
},
|
|
24180
|
-
|
|
24157
|
+
__wbg_insertPartialBlockchainNodes_dc6809b37ef4b562: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24181
24158
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24182
24159
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24183
24160
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -24185,7 +24162,7 @@ function __wbg_get_imports() {
|
|
|
24185
24162
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
24186
24163
|
return ret;
|
|
24187
24164
|
},
|
|
24188
|
-
|
|
24165
|
+
__wbg_insertSetting_11f6d3c419315d2a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24189
24166
|
let deferred0_0;
|
|
24190
24167
|
let deferred0_1;
|
|
24191
24168
|
try {
|
|
@@ -24199,7 +24176,7 @@ function __wbg_get_imports() {
|
|
|
24199
24176
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24200
24177
|
}
|
|
24201
24178
|
},
|
|
24202
|
-
|
|
24179
|
+
__wbg_insertTransactionScript_54c2f4f1423a8889: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24203
24180
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24204
24181
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24205
24182
|
let v1;
|
|
@@ -24292,11 +24269,11 @@ function __wbg_get_imports() {
|
|
|
24292
24269
|
const ret = arg0.length;
|
|
24293
24270
|
return ret;
|
|
24294
24271
|
},
|
|
24295
|
-
|
|
24272
|
+
__wbg_listSettingKeys_7a01958cfea9e4ce: function(arg0, arg1) {
|
|
24296
24273
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
24297
24274
|
return ret;
|
|
24298
24275
|
},
|
|
24299
|
-
|
|
24276
|
+
__wbg_lockAccount_4f46ad492483b226: function(arg0, arg1, arg2, arg3) {
|
|
24300
24277
|
let deferred0_0;
|
|
24301
24278
|
let deferred0_1;
|
|
24302
24279
|
try {
|
|
@@ -24380,7 +24357,7 @@ function __wbg_get_imports() {
|
|
|
24380
24357
|
const a = state0.a;
|
|
24381
24358
|
state0.a = 0;
|
|
24382
24359
|
try {
|
|
24383
|
-
return
|
|
24360
|
+
return wasm_bindgen__convert__closures_____invoke__h22101db9f01e45e1(a, state0.b, arg0, arg1);
|
|
24384
24361
|
} finally {
|
|
24385
24362
|
state0.a = a;
|
|
24386
24363
|
}
|
|
@@ -24487,7 +24464,7 @@ function __wbg_get_imports() {
|
|
|
24487
24464
|
const ret = NoteTag.__unwrap(arg0);
|
|
24488
24465
|
return ret;
|
|
24489
24466
|
},
|
|
24490
|
-
|
|
24467
|
+
__wbg_openDatabase_1e6c970bd99986cc: function(arg0, arg1, arg2, arg3) {
|
|
24491
24468
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
24492
24469
|
return ret;
|
|
24493
24470
|
},
|
|
@@ -24518,7 +24495,7 @@ function __wbg_get_imports() {
|
|
|
24518
24495
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
24519
24496
|
return ret;
|
|
24520
24497
|
},
|
|
24521
|
-
|
|
24498
|
+
__wbg_pruneAccountHistory_b9f8ae9cc42b0264: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24522
24499
|
let deferred0_0;
|
|
24523
24500
|
let deferred0_1;
|
|
24524
24501
|
let deferred1_0;
|
|
@@ -24535,7 +24512,7 @@ function __wbg_get_imports() {
|
|
|
24535
24512
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24536
24513
|
}
|
|
24537
24514
|
},
|
|
24538
|
-
|
|
24515
|
+
__wbg_pruneIrrelevantBlocks_fd53c6ee9a1529de: function(arg0, arg1) {
|
|
24539
24516
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
24540
24517
|
return ret;
|
|
24541
24518
|
},
|
|
@@ -24553,13 +24530,13 @@ function __wbg_get_imports() {
|
|
|
24553
24530
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
24554
24531
|
arg0.releaseLock();
|
|
24555
24532
|
},
|
|
24556
|
-
|
|
24533
|
+
__wbg_removeAccountAddress_d84a263da31a63b1: function(arg0, arg1, arg2, arg3) {
|
|
24557
24534
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24558
24535
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24559
24536
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
24560
24537
|
return ret;
|
|
24561
24538
|
},
|
|
24562
|
-
|
|
24539
|
+
__wbg_removeAccountAuth_15fe803d63fd684f: function(arg0, arg1, arg2, arg3) {
|
|
24563
24540
|
let deferred0_0;
|
|
24564
24541
|
let deferred0_1;
|
|
24565
24542
|
try {
|
|
@@ -24571,7 +24548,7 @@ function __wbg_get_imports() {
|
|
|
24571
24548
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24572
24549
|
}
|
|
24573
24550
|
},
|
|
24574
|
-
|
|
24551
|
+
__wbg_removeAllMappingsForKey_2a75a1ee44704b87: function(arg0, arg1, arg2, arg3) {
|
|
24575
24552
|
let deferred0_0;
|
|
24576
24553
|
let deferred0_1;
|
|
24577
24554
|
try {
|
|
@@ -24583,7 +24560,7 @@ function __wbg_get_imports() {
|
|
|
24583
24560
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24584
24561
|
}
|
|
24585
24562
|
},
|
|
24586
|
-
|
|
24563
|
+
__wbg_removeNoteTag_3ffdd59c60d02d5d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24587
24564
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24588
24565
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24589
24566
|
let v1;
|
|
@@ -24599,7 +24576,7 @@ function __wbg_get_imports() {
|
|
|
24599
24576
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
24600
24577
|
return ret;
|
|
24601
24578
|
},
|
|
24602
|
-
|
|
24579
|
+
__wbg_removeSetting_ee0741372caba813: function(arg0, arg1, arg2, arg3) {
|
|
24603
24580
|
let deferred0_0;
|
|
24604
24581
|
let deferred0_1;
|
|
24605
24582
|
try {
|
|
@@ -24791,13 +24768,13 @@ function __wbg_get_imports() {
|
|
|
24791
24768
|
const ret = TransactionSummary.__wrap(arg0);
|
|
24792
24769
|
return ret;
|
|
24793
24770
|
},
|
|
24794
|
-
|
|
24771
|
+
__wbg_undoAccountStates_3bb81f0b4777af78: function(arg0, arg1, arg2, arg3) {
|
|
24795
24772
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24796
24773
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24797
24774
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
24798
24775
|
return ret;
|
|
24799
24776
|
},
|
|
24800
|
-
|
|
24777
|
+
__wbg_upsertAccountCode_f54a1c88bec60044: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24801
24778
|
let deferred0_0;
|
|
24802
24779
|
let deferred0_1;
|
|
24803
24780
|
try {
|
|
@@ -24811,7 +24788,7 @@ function __wbg_get_imports() {
|
|
|
24811
24788
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24812
24789
|
}
|
|
24813
24790
|
},
|
|
24814
|
-
|
|
24791
|
+
__wbg_upsertAccountRecord_d32c88004f7a361f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
24815
24792
|
let deferred0_0;
|
|
24816
24793
|
let deferred0_1;
|
|
24817
24794
|
let deferred1_0;
|
|
@@ -24853,7 +24830,7 @@ function __wbg_get_imports() {
|
|
|
24853
24830
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
24854
24831
|
}
|
|
24855
24832
|
},
|
|
24856
|
-
|
|
24833
|
+
__wbg_upsertAccountStorage_dc9b3f362de53588: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24857
24834
|
let deferred0_0;
|
|
24858
24835
|
let deferred0_1;
|
|
24859
24836
|
try {
|
|
@@ -24867,7 +24844,7 @@ function __wbg_get_imports() {
|
|
|
24867
24844
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24868
24845
|
}
|
|
24869
24846
|
},
|
|
24870
|
-
|
|
24847
|
+
__wbg_upsertForeignAccountCode_bc9c9b983d44be62: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24871
24848
|
let deferred0_0;
|
|
24872
24849
|
let deferred0_1;
|
|
24873
24850
|
let deferred2_0;
|
|
@@ -24886,7 +24863,7 @@ function __wbg_get_imports() {
|
|
|
24886
24863
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24887
24864
|
}
|
|
24888
24865
|
},
|
|
24889
|
-
|
|
24866
|
+
__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) {
|
|
24890
24867
|
let deferred0_0;
|
|
24891
24868
|
let deferred0_1;
|
|
24892
24869
|
let deferred4_0;
|
|
@@ -24928,7 +24905,7 @@ function __wbg_get_imports() {
|
|
|
24928
24905
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
24929
24906
|
}
|
|
24930
24907
|
},
|
|
24931
|
-
|
|
24908
|
+
__wbg_upsertNoteScript_e5262374e58464a5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24932
24909
|
let deferred0_0;
|
|
24933
24910
|
let deferred0_1;
|
|
24934
24911
|
try {
|
|
@@ -24942,7 +24919,7 @@ function __wbg_get_imports() {
|
|
|
24942
24919
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24943
24920
|
}
|
|
24944
24921
|
},
|
|
24945
|
-
|
|
24922
|
+
__wbg_upsertOutputNote_fb601f7b4e18f75d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
24946
24923
|
let deferred0_0;
|
|
24947
24924
|
let deferred0_1;
|
|
24948
24925
|
let deferred2_0;
|
|
@@ -24970,7 +24947,7 @@ function __wbg_get_imports() {
|
|
|
24970
24947
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24971
24948
|
}
|
|
24972
24949
|
},
|
|
24973
|
-
|
|
24950
|
+
__wbg_upsertStorageMapEntries_875ece6c792aece8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24974
24951
|
let deferred0_0;
|
|
24975
24952
|
let deferred0_1;
|
|
24976
24953
|
try {
|
|
@@ -24984,7 +24961,7 @@ function __wbg_get_imports() {
|
|
|
24984
24961
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24985
24962
|
}
|
|
24986
24963
|
},
|
|
24987
|
-
|
|
24964
|
+
__wbg_upsertTransactionRecord_5f9c83704ca38dc5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
24988
24965
|
let deferred0_0;
|
|
24989
24966
|
let deferred0_1;
|
|
24990
24967
|
try {
|
|
@@ -25005,7 +24982,7 @@ function __wbg_get_imports() {
|
|
|
25005
24982
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25006
24983
|
}
|
|
25007
24984
|
},
|
|
25008
|
-
|
|
24985
|
+
__wbg_upsertVaultAssets_acbcc6d51cb80ac5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25009
24986
|
let deferred0_0;
|
|
25010
24987
|
let deferred0_1;
|
|
25011
24988
|
try {
|
|
@@ -25036,13 +25013,13 @@ function __wbg_get_imports() {
|
|
|
25036
25013
|
return ret;
|
|
25037
25014
|
},
|
|
25038
25015
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
25039
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
25040
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
25016
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [Externref], shim_idx: 698, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
25017
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h10c3fe8f433ba3dd, wasm_bindgen__convert__closures_____invoke__h69bc00ec8b9a6549);
|
|
25041
25018
|
return ret;
|
|
25042
25019
|
},
|
|
25043
25020
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
25044
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
25045
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
25021
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 360, function: Function { arguments: [], shim_idx: 361, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
25022
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h10c3fe8f433ba3dd, wasm_bindgen__convert__closures_____invoke__h5c73a4a324493889);
|
|
25046
25023
|
return ret;
|
|
25047
25024
|
},
|
|
25048
25025
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -25146,16 +25123,16 @@ function __wbg_get_imports() {
|
|
|
25146
25123
|
};
|
|
25147
25124
|
}
|
|
25148
25125
|
|
|
25149
|
-
function
|
|
25150
|
-
wasm.
|
|
25126
|
+
function wasm_bindgen__convert__closures_____invoke__h5c73a4a324493889(arg0, arg1) {
|
|
25127
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h5c73a4a324493889(arg0, arg1);
|
|
25151
25128
|
}
|
|
25152
25129
|
|
|
25153
|
-
function
|
|
25154
|
-
wasm.
|
|
25130
|
+
function wasm_bindgen__convert__closures_____invoke__h69bc00ec8b9a6549(arg0, arg1, arg2) {
|
|
25131
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h69bc00ec8b9a6549(arg0, arg1, arg2);
|
|
25155
25132
|
}
|
|
25156
25133
|
|
|
25157
|
-
function
|
|
25158
|
-
wasm.
|
|
25134
|
+
function wasm_bindgen__convert__closures_____invoke__h22101db9f01e45e1(arg0, arg1, arg2, arg3) {
|
|
25135
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h22101db9f01e45e1(arg0, arg1, arg2, arg3);
|
|
25159
25136
|
}
|
|
25160
25137
|
|
|
25161
25138
|
|
|
@@ -25958,7 +25935,7 @@ async function __wbg_init(module_or_path) {
|
|
|
25958
25935
|
|
|
25959
25936
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
25960
25937
|
|
|
25961
|
-
var
|
|
25938
|
+
var CargoDC6jSekr = /*#__PURE__*/Object.freeze({
|
|
25962
25939
|
__proto__: null,
|
|
25963
25940
|
Account: Account,
|
|
25964
25941
|
AccountArray: AccountArray,
|