@miden-sdk/miden-sdk 0.15.7 → 0.15.8
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-CnGom-_z.js → Cargo-CvYxNO9A.js} +159 -76
- package/dist/mt/Cargo-CvYxNO9A.js.map +1 -0
- package/dist/mt/assets/miden_client_web.wasm +0 -0
- package/dist/mt/crates/miden_client_web.d.ts +49 -1
- package/dist/mt/eager.js +1 -1
- package/dist/mt/index.js +28 -1
- 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-CnGom-_z-X_3VwTbo.js → Cargo-CvYxNO9A-D_wSZjuK.js} +159 -76
- package/dist/mt/workers/Cargo-CvYxNO9A-D_wSZjuK.js.map +1 -0
- package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
- package/dist/mt/workers/web-client-methods-worker.js +160 -77
- 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-DR9fiMbE.js → Cargo-L_lPKfww.js} +158 -75
- package/dist/st/Cargo-L_lPKfww.js.map +1 -0
- package/dist/st/assets/miden_client_web.wasm +0 -0
- package/dist/st/crates/miden_client_web.d.ts +49 -1
- package/dist/st/eager.js +1 -1
- package/dist/st/index.js +28 -1
- package/dist/st/index.js.map +1 -1
- package/dist/st/wasm.js +1 -1
- package/dist/st/workers/{Cargo-DR9fiMbE-C0G0clA_.js → Cargo-L_lPKfww-BM__buYN.js} +158 -75
- package/dist/st/workers/Cargo-L_lPKfww-BM__buYN.js.map +1 -0
- package/dist/st/workers/assets/miden_client_web.wasm +0 -0
- package/dist/st/workers/web-client-methods-worker.js +159 -76
- 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 +4 -4
- package/dist/mt/Cargo-CnGom-_z.js.map +0 -1
- package/dist/mt/workers/Cargo-CnGom-_z-X_3VwTbo.js.map +0 -1
- package/dist/st/Cargo-DR9fiMbE.js.map +0 -1
- package/dist/st/workers/Cargo-DR9fiMbE-C0G0clA_.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 CargoL_lPKfww; });
|
|
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
|
|
@@ -13847,6 +13847,26 @@ class BasicFungibleFaucetComponent {
|
|
|
13847
13847
|
}
|
|
13848
13848
|
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13849
13849
|
}
|
|
13850
|
+
/**
|
|
13851
|
+
* Extracts faucet metadata from an account's storage.
|
|
13852
|
+
*
|
|
13853
|
+
* Unlike [`Self::from_account`], this reads the metadata straight from the storage slots
|
|
13854
|
+
* without checking that the account exposes the basic fungible faucet interface. This makes
|
|
13855
|
+
* it work for faucets built from custom components that reuse the standards storage layout
|
|
13856
|
+
* (e.g. `AggLayer` bridged-asset faucets), but it also means a non-faucet account whose
|
|
13857
|
+
* storage happens to use the same slot names would yield bogus metadata without an error.
|
|
13858
|
+
* @param {AccountStorage} account_storage
|
|
13859
|
+
* @returns {BasicFungibleFaucetComponent}
|
|
13860
|
+
*/
|
|
13861
|
+
static fromAccountStorage(account_storage) {
|
|
13862
|
+
_assertClass(account_storage, AccountStorage);
|
|
13863
|
+
var ptr0 = account_storage.__destroy_into_raw();
|
|
13864
|
+
const ret = wasm.basicfungiblefaucetcomponent_fromAccountStorage(ptr0);
|
|
13865
|
+
if (ret[2]) {
|
|
13866
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
13867
|
+
}
|
|
13868
|
+
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13869
|
+
}
|
|
13850
13870
|
/**
|
|
13851
13871
|
* Returns the optional token logo URI, or `undefined` when unset.
|
|
13852
13872
|
* @returns {string | undefined}
|
|
@@ -15251,7 +15271,58 @@ class FungibleAsset {
|
|
|
15251
15271
|
return AccountId.__wrap(ret);
|
|
15252
15272
|
}
|
|
15253
15273
|
/**
|
|
15254
|
-
*
|
|
15274
|
+
* Reconstructs a fungible asset from its vault entry — the `(key, value)`
|
|
15275
|
+
* word pair as stored in an account vault, i.e. the outputs of
|
|
15276
|
+
* [`vaultKey`](Self::vault_key) and [`intoWord`](Self::into_word). The key
|
|
15277
|
+
* word carries the faucet id and the callback flag; the value word carries
|
|
15278
|
+
* the amount. This is the inverse of those getters, so
|
|
15279
|
+
* `FungibleAsset.fromVaultEntry(a.vaultKey(), a.intoWord())` round-trips an
|
|
15280
|
+
* asset read from vault data (callback flag included). Errors if the words
|
|
15281
|
+
* don't describe a valid fungible asset (e.g. a malformed key, non-zero
|
|
15282
|
+
* upper limbs in the value word, or an amount above the maximum fungible
|
|
15283
|
+
* asset amount, `2^63 - 2^31`).
|
|
15284
|
+
* @param {Word} key
|
|
15285
|
+
* @param {Word} value
|
|
15286
|
+
* @returns {FungibleAsset}
|
|
15287
|
+
*/
|
|
15288
|
+
static fromVaultEntry(key, value) {
|
|
15289
|
+
_assertClass(key, Word);
|
|
15290
|
+
_assertClass(value, Word);
|
|
15291
|
+
const ret = wasm.fungibleasset_fromVaultEntry(key.__wbg_ptr, value.__wbg_ptr);
|
|
15292
|
+
if (ret[2]) {
|
|
15293
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
15294
|
+
}
|
|
15295
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
15296
|
+
}
|
|
15297
|
+
/**
|
|
15298
|
+
* Reconstructs a fungible asset from its vault key word and a scalar amount.
|
|
15299
|
+
*
|
|
15300
|
+
* A convenience over [`fromVaultEntry`](Self::from_vault_entry) for when you
|
|
15301
|
+
* hold the key word (from [`vaultKey`](Self::vault_key)) and the amount as a
|
|
15302
|
+
* number rather than the value word: the key supplies the faucet id and
|
|
15303
|
+
* callback flag, and the amount is encoded into the value word for you. Use
|
|
15304
|
+
* `fromVaultEntry` when you already have both vault words. Errors on a
|
|
15305
|
+
* malformed key or an amount above the maximum fungible asset amount,
|
|
15306
|
+
* `2^63 - 2^31`.
|
|
15307
|
+
* @param {Word} key
|
|
15308
|
+
* @param {bigint} amount
|
|
15309
|
+
* @returns {FungibleAsset}
|
|
15310
|
+
*/
|
|
15311
|
+
static fromVaultKey(key, amount) {
|
|
15312
|
+
_assertClass(key, Word);
|
|
15313
|
+
const ret = wasm.fungibleasset_fromVaultKey(key.__wbg_ptr, amount);
|
|
15314
|
+
if (ret[2]) {
|
|
15315
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
15316
|
+
}
|
|
15317
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
15318
|
+
}
|
|
15319
|
+
/**
|
|
15320
|
+
* Returns the value word stored under [`vaultKey`](Self::vault_key) in an
|
|
15321
|
+
* account vault. For a fungible asset the value word encodes the amount.
|
|
15322
|
+
*
|
|
15323
|
+
* This is the value half of the vault entry; pair it with `vaultKey()` and
|
|
15324
|
+
* pass both to [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the
|
|
15325
|
+
* asset.
|
|
15255
15326
|
* @returns {Word}
|
|
15256
15327
|
*/
|
|
15257
15328
|
intoWord() {
|
|
@@ -15273,6 +15344,18 @@ class FungibleAsset {
|
|
|
15273
15344
|
FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
|
|
15274
15345
|
return this;
|
|
15275
15346
|
}
|
|
15347
|
+
/**
|
|
15348
|
+
* Returns the key word under which this asset is stored in an account vault.
|
|
15349
|
+
*
|
|
15350
|
+
* The key encodes the faucet id and the callback flag; the amount lives in
|
|
15351
|
+
* the paired value word from [`intoWord`](Self::into_word). Pass both back
|
|
15352
|
+
* into [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the asset.
|
|
15353
|
+
* @returns {Word}
|
|
15354
|
+
*/
|
|
15355
|
+
vaultKey() {
|
|
15356
|
+
const ret = wasm.fungibleasset_vaultKey(this.__wbg_ptr);
|
|
15357
|
+
return Word.__wrap(ret);
|
|
15358
|
+
}
|
|
15276
15359
|
/**
|
|
15277
15360
|
* Returns a copy of this asset carrying the given callback flag.
|
|
15278
15361
|
*
|
|
@@ -24929,7 +25012,7 @@ function __wbg_get_imports() {
|
|
|
24929
25012
|
const ret = AccountStorage.__wrap(arg0);
|
|
24930
25013
|
return ret;
|
|
24931
25014
|
},
|
|
24932
|
-
|
|
25015
|
+
__wbg_addNoteTag_25cad61edb5d555a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
24933
25016
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24934
25017
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24935
25018
|
let v1;
|
|
@@ -24957,25 +25040,25 @@ function __wbg_get_imports() {
|
|
|
24957
25040
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
24958
25041
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
24959
25042
|
}, arguments); },
|
|
24960
|
-
|
|
25043
|
+
__wbg_applyFullAccountState_2aeb79c033cb94e9: function(arg0, arg1, arg2) {
|
|
24961
25044
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
24962
25045
|
return ret;
|
|
24963
25046
|
},
|
|
24964
|
-
|
|
25047
|
+
__wbg_applySettingsMutations_e331196301c58c75: function(arg0, arg1, arg2, arg3) {
|
|
24965
25048
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24966
25049
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24967
25050
|
const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
|
|
24968
25051
|
return ret;
|
|
24969
25052
|
},
|
|
24970
|
-
|
|
25053
|
+
__wbg_applyStateSync_75d2fe4dcfcd8387: function(arg0, arg1, arg2) {
|
|
24971
25054
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
24972
25055
|
return ret;
|
|
24973
25056
|
},
|
|
24974
|
-
|
|
25057
|
+
__wbg_applyTransactionBatch_9d2069a58ecdeb08: function(arg0, arg1, arg2) {
|
|
24975
25058
|
const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
|
|
24976
25059
|
return ret;
|
|
24977
25060
|
},
|
|
24978
|
-
|
|
25061
|
+
__wbg_applyTransactionDelta_0678a2cd1164cac0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
24979
25062
|
let deferred0_0;
|
|
24980
25063
|
let deferred0_1;
|
|
24981
25064
|
let deferred1_0;
|
|
@@ -25114,7 +25197,7 @@ function __wbg_get_imports() {
|
|
|
25114
25197
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25115
25198
|
}
|
|
25116
25199
|
},
|
|
25117
|
-
|
|
25200
|
+
__wbg_exportStore_bf1688fbcaeac761: function(arg0, arg1) {
|
|
25118
25201
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
25119
25202
|
return ret;
|
|
25120
25203
|
},
|
|
@@ -25146,7 +25229,7 @@ function __wbg_get_imports() {
|
|
|
25146
25229
|
const ret = FetchedNote.__wrap(arg0);
|
|
25147
25230
|
return ret;
|
|
25148
25231
|
},
|
|
25149
|
-
|
|
25232
|
+
__wbg_forceImportStore_bd5ce688ff80c047: function(arg0, arg1, arg2) {
|
|
25150
25233
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
25151
25234
|
return ret;
|
|
25152
25235
|
},
|
|
@@ -25170,7 +25253,7 @@ function __wbg_get_imports() {
|
|
|
25170
25253
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
25171
25254
|
return ret;
|
|
25172
25255
|
},
|
|
25173
|
-
|
|
25256
|
+
__wbg_getAccountAddresses_44b5a6db696a9381: function(arg0, arg1, arg2, arg3) {
|
|
25174
25257
|
let deferred0_0;
|
|
25175
25258
|
let deferred0_1;
|
|
25176
25259
|
try {
|
|
@@ -25182,7 +25265,7 @@ function __wbg_get_imports() {
|
|
|
25182
25265
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25183
25266
|
}
|
|
25184
25267
|
},
|
|
25185
|
-
|
|
25268
|
+
__wbg_getAccountAuthByPubKeyCommitment_98a8d726bce942e5: function(arg0, arg1, arg2, arg3) {
|
|
25186
25269
|
let deferred0_0;
|
|
25187
25270
|
let deferred0_1;
|
|
25188
25271
|
try {
|
|
@@ -25194,7 +25277,7 @@ function __wbg_get_imports() {
|
|
|
25194
25277
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25195
25278
|
}
|
|
25196
25279
|
},
|
|
25197
|
-
|
|
25280
|
+
__wbg_getAccountCode_15c1a978217210a3: function(arg0, arg1, arg2, arg3) {
|
|
25198
25281
|
let deferred0_0;
|
|
25199
25282
|
let deferred0_1;
|
|
25200
25283
|
try {
|
|
@@ -25206,7 +25289,7 @@ function __wbg_get_imports() {
|
|
|
25206
25289
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25207
25290
|
}
|
|
25208
25291
|
},
|
|
25209
|
-
|
|
25292
|
+
__wbg_getAccountHeaderByCommitment_6e856b122fb63445: function(arg0, arg1, arg2, arg3) {
|
|
25210
25293
|
let deferred0_0;
|
|
25211
25294
|
let deferred0_1;
|
|
25212
25295
|
try {
|
|
@@ -25218,7 +25301,7 @@ function __wbg_get_imports() {
|
|
|
25218
25301
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25219
25302
|
}
|
|
25220
25303
|
},
|
|
25221
|
-
|
|
25304
|
+
__wbg_getAccountHeader_1cfea7b95b20687b: function(arg0, arg1, arg2, arg3) {
|
|
25222
25305
|
let deferred0_0;
|
|
25223
25306
|
let deferred0_1;
|
|
25224
25307
|
try {
|
|
@@ -25230,7 +25313,7 @@ function __wbg_get_imports() {
|
|
|
25230
25313
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25231
25314
|
}
|
|
25232
25315
|
},
|
|
25233
|
-
|
|
25316
|
+
__wbg_getAccountIdByKeyCommitment_dc2e8d8d8a290ac9: function(arg0, arg1, arg2, arg3) {
|
|
25234
25317
|
let deferred0_0;
|
|
25235
25318
|
let deferred0_1;
|
|
25236
25319
|
try {
|
|
@@ -25242,11 +25325,11 @@ function __wbg_get_imports() {
|
|
|
25242
25325
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25243
25326
|
}
|
|
25244
25327
|
},
|
|
25245
|
-
|
|
25328
|
+
__wbg_getAccountIds_0ce97765a3c31e7d: function(arg0, arg1) {
|
|
25246
25329
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
25247
25330
|
return ret;
|
|
25248
25331
|
},
|
|
25249
|
-
|
|
25332
|
+
__wbg_getAccountStorageMaps_09cb3c149afb2ab6: function(arg0, arg1, arg2, arg3) {
|
|
25250
25333
|
let deferred0_0;
|
|
25251
25334
|
let deferred0_1;
|
|
25252
25335
|
try {
|
|
@@ -25258,7 +25341,7 @@ function __wbg_get_imports() {
|
|
|
25258
25341
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25259
25342
|
}
|
|
25260
25343
|
},
|
|
25261
|
-
|
|
25344
|
+
__wbg_getAccountStorage_5502bfe95b2eb790: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25262
25345
|
let deferred0_0;
|
|
25263
25346
|
let deferred0_1;
|
|
25264
25347
|
try {
|
|
@@ -25272,7 +25355,7 @@ function __wbg_get_imports() {
|
|
|
25272
25355
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25273
25356
|
}
|
|
25274
25357
|
},
|
|
25275
|
-
|
|
25358
|
+
__wbg_getAccountVaultAssets_9519922d942fecee: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25276
25359
|
let deferred0_0;
|
|
25277
25360
|
let deferred0_1;
|
|
25278
25361
|
try {
|
|
@@ -25286,27 +25369,27 @@ function __wbg_get_imports() {
|
|
|
25286
25369
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25287
25370
|
}
|
|
25288
25371
|
},
|
|
25289
|
-
|
|
25372
|
+
__wbg_getAllAccountHeaders_df840fc87d4bdec9: function(arg0, arg1) {
|
|
25290
25373
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
25291
25374
|
return ret;
|
|
25292
25375
|
},
|
|
25293
|
-
|
|
25376
|
+
__wbg_getBlockHeaders_5873b22bd7744156: function(arg0, arg1, arg2, arg3) {
|
|
25294
25377
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25295
25378
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25296
25379
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
25297
25380
|
return ret;
|
|
25298
25381
|
},
|
|
25299
|
-
|
|
25382
|
+
__wbg_getCurrentBlockchainPeaks_f329c1684cabaf21: function(arg0, arg1) {
|
|
25300
25383
|
const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
|
|
25301
25384
|
return ret;
|
|
25302
25385
|
},
|
|
25303
|
-
|
|
25386
|
+
__wbg_getForeignAccountCode_626cc9a21065ce07: function(arg0, arg1, arg2, arg3) {
|
|
25304
25387
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25305
25388
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25306
25389
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
25307
25390
|
return ret;
|
|
25308
25391
|
},
|
|
25309
|
-
|
|
25392
|
+
__wbg_getInputNoteByOffset_437795f571f7c2fd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
25310
25393
|
let deferred1_0;
|
|
25311
25394
|
let deferred1_1;
|
|
25312
25395
|
try {
|
|
@@ -25320,31 +25403,31 @@ function __wbg_get_imports() {
|
|
|
25320
25403
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25321
25404
|
}
|
|
25322
25405
|
},
|
|
25323
|
-
|
|
25406
|
+
__wbg_getInputNotesFromDetailsCommitments_e49ccdee208d1f22: function(arg0, arg1, arg2, arg3) {
|
|
25324
25407
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25325
25408
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25326
25409
|
const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
25327
25410
|
return ret;
|
|
25328
25411
|
},
|
|
25329
|
-
|
|
25412
|
+
__wbg_getInputNotesFromIds_057a1693a3b197c0: function(arg0, arg1, arg2, arg3) {
|
|
25330
25413
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25331
25414
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25332
25415
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
25333
25416
|
return ret;
|
|
25334
25417
|
},
|
|
25335
|
-
|
|
25418
|
+
__wbg_getInputNotesFromNullifiers_afa84bb5844ca0f2: function(arg0, arg1, arg2, arg3) {
|
|
25336
25419
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25337
25420
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25338
25421
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
25339
25422
|
return ret;
|
|
25340
25423
|
},
|
|
25341
|
-
|
|
25424
|
+
__wbg_getInputNotes_c22939005e704005: function(arg0, arg1, arg2, arg3) {
|
|
25342
25425
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25343
25426
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25344
25427
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25345
25428
|
return ret;
|
|
25346
25429
|
},
|
|
25347
|
-
|
|
25430
|
+
__wbg_getKeyCommitmentsByAccountId_a9d9f0e316e0b961: function(arg0, arg1, arg2, arg3) {
|
|
25348
25431
|
let deferred0_0;
|
|
25349
25432
|
let deferred0_1;
|
|
25350
25433
|
try {
|
|
@@ -25356,7 +25439,7 @@ function __wbg_get_imports() {
|
|
|
25356
25439
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25357
25440
|
}
|
|
25358
25441
|
},
|
|
25359
|
-
|
|
25442
|
+
__wbg_getNoteScript_40c99e72d3a5347b: function(arg0, arg1, arg2, arg3) {
|
|
25360
25443
|
let deferred0_0;
|
|
25361
25444
|
let deferred0_1;
|
|
25362
25445
|
try {
|
|
@@ -25368,39 +25451,39 @@ function __wbg_get_imports() {
|
|
|
25368
25451
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25369
25452
|
}
|
|
25370
25453
|
},
|
|
25371
|
-
|
|
25454
|
+
__wbg_getNoteTags_67063dd77a36d6b4: function(arg0, arg1) {
|
|
25372
25455
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
25373
25456
|
return ret;
|
|
25374
25457
|
},
|
|
25375
|
-
|
|
25458
|
+
__wbg_getOutputNotesFromDetailsCommitments_bdf7b0c9d2a5db36: function(arg0, arg1, arg2, arg3) {
|
|
25376
25459
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25377
25460
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25378
25461
|
const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
25379
25462
|
return ret;
|
|
25380
25463
|
},
|
|
25381
|
-
|
|
25464
|
+
__wbg_getOutputNotesFromIds_219945e5373d809b: function(arg0, arg1, arg2, arg3) {
|
|
25382
25465
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25383
25466
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25384
25467
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
25385
25468
|
return ret;
|
|
25386
25469
|
},
|
|
25387
|
-
|
|
25470
|
+
__wbg_getOutputNotesFromNullifiers_707ceecfe32e4a35: function(arg0, arg1, arg2, arg3) {
|
|
25388
25471
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25389
25472
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25390
25473
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
25391
25474
|
return ret;
|
|
25392
25475
|
},
|
|
25393
|
-
|
|
25476
|
+
__wbg_getOutputNotes_326a5aa0d3790050: function(arg0, arg1, arg2, arg3) {
|
|
25394
25477
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25395
25478
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25396
25479
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25397
25480
|
return ret;
|
|
25398
25481
|
},
|
|
25399
|
-
|
|
25482
|
+
__wbg_getPartialBlockchainNodesAll_7cf9e7cf6f37f395: function(arg0, arg1) {
|
|
25400
25483
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
25401
25484
|
return ret;
|
|
25402
25485
|
},
|
|
25403
|
-
|
|
25486
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_e91098152297e0da: function(arg0, arg1, arg2, arg3) {
|
|
25404
25487
|
let deferred0_0;
|
|
25405
25488
|
let deferred0_1;
|
|
25406
25489
|
try {
|
|
@@ -25412,7 +25495,7 @@ function __wbg_get_imports() {
|
|
|
25412
25495
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25413
25496
|
}
|
|
25414
25497
|
},
|
|
25415
|
-
|
|
25498
|
+
__wbg_getPartialBlockchainNodes_433475f2ec8b2171: function(arg0, arg1, arg2, arg3) {
|
|
25416
25499
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25417
25500
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25418
25501
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
@@ -25425,7 +25508,7 @@ function __wbg_get_imports() {
|
|
|
25425
25508
|
const ret = arg0.getReader();
|
|
25426
25509
|
return ret;
|
|
25427
25510
|
}, arguments); },
|
|
25428
|
-
|
|
25511
|
+
__wbg_getSetting_e008c5a99f10e590: function(arg0, arg1, arg2, arg3) {
|
|
25429
25512
|
let deferred0_0;
|
|
25430
25513
|
let deferred0_1;
|
|
25431
25514
|
try {
|
|
@@ -25437,7 +25520,7 @@ function __wbg_get_imports() {
|
|
|
25437
25520
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25438
25521
|
}
|
|
25439
25522
|
},
|
|
25440
|
-
|
|
25523
|
+
__wbg_getSyncHeight_ecfa19078de4c98f: function(arg0, arg1) {
|
|
25441
25524
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
25442
25525
|
return ret;
|
|
25443
25526
|
},
|
|
@@ -25445,15 +25528,15 @@ function __wbg_get_imports() {
|
|
|
25445
25528
|
const ret = arg0.getTime();
|
|
25446
25529
|
return ret;
|
|
25447
25530
|
},
|
|
25448
|
-
|
|
25531
|
+
__wbg_getTrackedBlockHeaderNumbers_1cb8016a509ed0c4: function(arg0, arg1) {
|
|
25449
25532
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
25450
25533
|
return ret;
|
|
25451
25534
|
},
|
|
25452
|
-
|
|
25535
|
+
__wbg_getTrackedBlockHeaders_ea97bc37d74a875a: function(arg0, arg1) {
|
|
25453
25536
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
25454
25537
|
return ret;
|
|
25455
25538
|
},
|
|
25456
|
-
|
|
25539
|
+
__wbg_getTransactions_fbcf8488c75fde0d: function(arg0, arg1, arg2, arg3) {
|
|
25457
25540
|
let deferred0_0;
|
|
25458
25541
|
let deferred0_1;
|
|
25459
25542
|
try {
|
|
@@ -25465,7 +25548,7 @@ function __wbg_get_imports() {
|
|
|
25465
25548
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25466
25549
|
}
|
|
25467
25550
|
},
|
|
25468
|
-
|
|
25551
|
+
__wbg_getUnspentInputNoteNullifiers_75ec5ab42ea5afa9: function(arg0, arg1) {
|
|
25469
25552
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
25470
25553
|
return ret;
|
|
25471
25554
|
},
|
|
@@ -25509,7 +25592,7 @@ function __wbg_get_imports() {
|
|
|
25509
25592
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
25510
25593
|
return ret;
|
|
25511
25594
|
},
|
|
25512
|
-
|
|
25595
|
+
__wbg_insertAccountAddress_e8628627a138e81e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25513
25596
|
let deferred0_0;
|
|
25514
25597
|
let deferred0_1;
|
|
25515
25598
|
try {
|
|
@@ -25523,7 +25606,7 @@ function __wbg_get_imports() {
|
|
|
25523
25606
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25524
25607
|
}
|
|
25525
25608
|
},
|
|
25526
|
-
|
|
25609
|
+
__wbg_insertAccountAuth_278a833f3fef3aca: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25527
25610
|
let deferred0_0;
|
|
25528
25611
|
let deferred0_1;
|
|
25529
25612
|
let deferred1_0;
|
|
@@ -25540,7 +25623,7 @@ function __wbg_get_imports() {
|
|
|
25540
25623
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25541
25624
|
}
|
|
25542
25625
|
},
|
|
25543
|
-
|
|
25626
|
+
__wbg_insertAccountKeyMapping_05e2b0009cf1cfe3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25544
25627
|
let deferred0_0;
|
|
25545
25628
|
let deferred0_1;
|
|
25546
25629
|
let deferred1_0;
|
|
@@ -25557,13 +25640,13 @@ function __wbg_get_imports() {
|
|
|
25557
25640
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25558
25641
|
}
|
|
25559
25642
|
},
|
|
25560
|
-
|
|
25643
|
+
__wbg_insertBlockHeader_d972fb92f29e7da7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25561
25644
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
25562
25645
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
25563
25646
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
|
|
25564
25647
|
return ret;
|
|
25565
25648
|
},
|
|
25566
|
-
|
|
25649
|
+
__wbg_insertPartialBlockchainNodes_70af5f15aaab9f89: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25567
25650
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25568
25651
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25569
25652
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25571,7 +25654,7 @@ function __wbg_get_imports() {
|
|
|
25571
25654
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
25572
25655
|
return ret;
|
|
25573
25656
|
},
|
|
25574
|
-
|
|
25657
|
+
__wbg_insertSetting_a1f83afe232d6b43: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25575
25658
|
let deferred0_0;
|
|
25576
25659
|
let deferred0_1;
|
|
25577
25660
|
try {
|
|
@@ -25585,7 +25668,7 @@ function __wbg_get_imports() {
|
|
|
25585
25668
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25586
25669
|
}
|
|
25587
25670
|
},
|
|
25588
|
-
|
|
25671
|
+
__wbg_insertTransactionScript_4ca2858864a66866: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25589
25672
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25590
25673
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25591
25674
|
let v1;
|
|
@@ -25682,11 +25765,11 @@ function __wbg_get_imports() {
|
|
|
25682
25765
|
const ret = arg0.length;
|
|
25683
25766
|
return ret;
|
|
25684
25767
|
},
|
|
25685
|
-
|
|
25768
|
+
__wbg_listSettingKeys_32703227794f5ddf: function(arg0, arg1) {
|
|
25686
25769
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
25687
25770
|
return ret;
|
|
25688
25771
|
},
|
|
25689
|
-
|
|
25772
|
+
__wbg_lockAccount_6847f6622cfbb360: function(arg0, arg1, arg2, arg3) {
|
|
25690
25773
|
let deferred0_0;
|
|
25691
25774
|
let deferred0_1;
|
|
25692
25775
|
try {
|
|
@@ -25889,7 +25972,7 @@ function __wbg_get_imports() {
|
|
|
25889
25972
|
const ret = NoteTag.__unwrap(arg0);
|
|
25890
25973
|
return ret;
|
|
25891
25974
|
},
|
|
25892
|
-
|
|
25975
|
+
__wbg_openDatabase_41d26d65ebf6caf0: function(arg0, arg1, arg2, arg3) {
|
|
25893
25976
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
25894
25977
|
return ret;
|
|
25895
25978
|
},
|
|
@@ -25920,7 +26003,7 @@ function __wbg_get_imports() {
|
|
|
25920
26003
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
25921
26004
|
return ret;
|
|
25922
26005
|
},
|
|
25923
|
-
|
|
26006
|
+
__wbg_pruneAccountHistory_07a7e45174c9f37a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25924
26007
|
let deferred0_0;
|
|
25925
26008
|
let deferred0_1;
|
|
25926
26009
|
let deferred1_0;
|
|
@@ -25937,7 +26020,7 @@ function __wbg_get_imports() {
|
|
|
25937
26020
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25938
26021
|
}
|
|
25939
26022
|
},
|
|
25940
|
-
|
|
26023
|
+
__wbg_pruneIrrelevantBlocks_94286980844c1214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25941
26024
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25942
26025
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25943
26026
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25967,13 +26050,13 @@ function __wbg_get_imports() {
|
|
|
25967
26050
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
25968
26051
|
arg0.releaseLock();
|
|
25969
26052
|
},
|
|
25970
|
-
|
|
26053
|
+
__wbg_removeAccountAddress_329baf02728f4c41: function(arg0, arg1, arg2, arg3) {
|
|
25971
26054
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25972
26055
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25973
26056
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
25974
26057
|
return ret;
|
|
25975
26058
|
},
|
|
25976
|
-
|
|
26059
|
+
__wbg_removeAccountAuth_603363308e6ae70b: function(arg0, arg1, arg2, arg3) {
|
|
25977
26060
|
let deferred0_0;
|
|
25978
26061
|
let deferred0_1;
|
|
25979
26062
|
try {
|
|
@@ -25985,7 +26068,7 @@ function __wbg_get_imports() {
|
|
|
25985
26068
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25986
26069
|
}
|
|
25987
26070
|
},
|
|
25988
|
-
|
|
26071
|
+
__wbg_removeAllMappingsForKey_fbc7b61a67110568: function(arg0, arg1, arg2, arg3) {
|
|
25989
26072
|
let deferred0_0;
|
|
25990
26073
|
let deferred0_1;
|
|
25991
26074
|
try {
|
|
@@ -25997,7 +26080,7 @@ function __wbg_get_imports() {
|
|
|
25997
26080
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25998
26081
|
}
|
|
25999
26082
|
},
|
|
26000
|
-
|
|
26083
|
+
__wbg_removeNoteTag_5bb25427e520f50b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
26001
26084
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
26002
26085
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
26003
26086
|
let v1;
|
|
@@ -26018,7 +26101,7 @@ function __wbg_get_imports() {
|
|
|
26018
26101
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
|
|
26019
26102
|
return ret;
|
|
26020
26103
|
},
|
|
26021
|
-
|
|
26104
|
+
__wbg_removeSetting_51d62e3d24593afc: function(arg0, arg1, arg2, arg3) {
|
|
26022
26105
|
let deferred0_0;
|
|
26023
26106
|
let deferred0_1;
|
|
26024
26107
|
try {
|
|
@@ -26221,13 +26304,13 @@ function __wbg_get_imports() {
|
|
|
26221
26304
|
const ret = TransactionSummary.__wrap(arg0);
|
|
26222
26305
|
return ret;
|
|
26223
26306
|
},
|
|
26224
|
-
|
|
26307
|
+
__wbg_undoAccountStates_b3c3c03f96aba29a: function(arg0, arg1, arg2, arg3) {
|
|
26225
26308
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
26226
26309
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
26227
26310
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
26228
26311
|
return ret;
|
|
26229
26312
|
},
|
|
26230
|
-
|
|
26313
|
+
__wbg_upsertAccountCode_a011479caf2f2773: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26231
26314
|
let deferred0_0;
|
|
26232
26315
|
let deferred0_1;
|
|
26233
26316
|
try {
|
|
@@ -26241,7 +26324,7 @@ function __wbg_get_imports() {
|
|
|
26241
26324
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26242
26325
|
}
|
|
26243
26326
|
},
|
|
26244
|
-
|
|
26327
|
+
__wbg_upsertAccountRecord_313a9a93a9853a03: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
|
|
26245
26328
|
let deferred0_0;
|
|
26246
26329
|
let deferred0_1;
|
|
26247
26330
|
let deferred1_0;
|
|
@@ -26283,7 +26366,7 @@ function __wbg_get_imports() {
|
|
|
26283
26366
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
26284
26367
|
}
|
|
26285
26368
|
},
|
|
26286
|
-
|
|
26369
|
+
__wbg_upsertAccountStorage_ea6d136c93fbd28c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26287
26370
|
let deferred0_0;
|
|
26288
26371
|
let deferred0_1;
|
|
26289
26372
|
try {
|
|
@@ -26297,7 +26380,7 @@ function __wbg_get_imports() {
|
|
|
26297
26380
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26298
26381
|
}
|
|
26299
26382
|
},
|
|
26300
|
-
|
|
26383
|
+
__wbg_upsertForeignAccountCode_e9e22981c11ab8ec: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
26301
26384
|
let deferred0_0;
|
|
26302
26385
|
let deferred0_1;
|
|
26303
26386
|
let deferred2_0;
|
|
@@ -26316,7 +26399,7 @@ function __wbg_get_imports() {
|
|
|
26316
26399
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
26317
26400
|
}
|
|
26318
26401
|
},
|
|
26319
|
-
|
|
26402
|
+
__wbg_upsertInputNote_ef1243df774d4302: 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, arg25, arg26, arg27, arg28) {
|
|
26320
26403
|
let deferred0_0;
|
|
26321
26404
|
let deferred0_1;
|
|
26322
26405
|
let deferred6_0;
|
|
@@ -26365,7 +26448,7 @@ function __wbg_get_imports() {
|
|
|
26365
26448
|
wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
|
|
26366
26449
|
}
|
|
26367
26450
|
},
|
|
26368
|
-
|
|
26451
|
+
__wbg_upsertNoteScript_e9617c5e4fc75fb0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26369
26452
|
let deferred0_0;
|
|
26370
26453
|
let deferred0_1;
|
|
26371
26454
|
try {
|
|
@@ -26379,7 +26462,7 @@ function __wbg_get_imports() {
|
|
|
26379
26462
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26380
26463
|
}
|
|
26381
26464
|
},
|
|
26382
|
-
|
|
26465
|
+
__wbg_upsertOutputNote_656aa32b96217f2d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
|
|
26383
26466
|
let deferred0_0;
|
|
26384
26467
|
let deferred0_1;
|
|
26385
26468
|
let deferred1_0;
|
|
@@ -26414,7 +26497,7 @@ function __wbg_get_imports() {
|
|
|
26414
26497
|
wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
|
|
26415
26498
|
}
|
|
26416
26499
|
},
|
|
26417
|
-
|
|
26500
|
+
__wbg_upsertStorageMapEntries_91e646dab4d24d18: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26418
26501
|
let deferred0_0;
|
|
26419
26502
|
let deferred0_1;
|
|
26420
26503
|
try {
|
|
@@ -26428,7 +26511,7 @@ function __wbg_get_imports() {
|
|
|
26428
26511
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26429
26512
|
}
|
|
26430
26513
|
},
|
|
26431
|
-
|
|
26514
|
+
__wbg_upsertTransactionRecord_e3f85f1b9f19136d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
26432
26515
|
let deferred0_0;
|
|
26433
26516
|
let deferred0_1;
|
|
26434
26517
|
try {
|
|
@@ -26449,7 +26532,7 @@ function __wbg_get_imports() {
|
|
|
26449
26532
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26450
26533
|
}
|
|
26451
26534
|
},
|
|
26452
|
-
|
|
26535
|
+
__wbg_upsertVaultAssets_4ec8f231ecdc55e4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26453
26536
|
let deferred0_0;
|
|
26454
26537
|
let deferred0_1;
|
|
26455
26538
|
try {
|
|
@@ -26480,12 +26563,12 @@ function __wbg_get_imports() {
|
|
|
26480
26563
|
return ret;
|
|
26481
26564
|
},
|
|
26482
26565
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
26483
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26566
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 453, function: Function { arguments: [Externref], shim_idx: 815, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26484
26567
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8d8dd5a992b1207e___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_8d8dd5a992b1207e___JsValue____Output_______, wasm_bindgen_8d8dd5a992b1207e___convert__closures_____invoke___wasm_bindgen_8d8dd5a992b1207e___JsValue_____);
|
|
26485
26568
|
return ret;
|
|
26486
26569
|
},
|
|
26487
26570
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
26488
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26571
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 453, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26489
26572
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8d8dd5a992b1207e___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_8d8dd5a992b1207e___JsValue____Output_______, wasm_bindgen_8d8dd5a992b1207e___convert__closures_____invoke______);
|
|
26490
26573
|
return ret;
|
|
26491
26574
|
},
|
|
@@ -27432,7 +27515,7 @@ async function __wbg_init(module_or_path) {
|
|
|
27432
27515
|
|
|
27433
27516
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
27434
27517
|
|
|
27435
|
-
var
|
|
27518
|
+
var CargoL_lPKfww = /*#__PURE__*/Object.freeze({
|
|
27436
27519
|
__proto__: null,
|
|
27437
27520
|
Account: Account,
|
|
27438
27521
|
AccountArray: AccountArray,
|