@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 CargoCvYxNO9A; });
|
|
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
|
|
@@ -13946,6 +13946,26 @@ class BasicFungibleFaucetComponent {
|
|
|
13946
13946
|
}
|
|
13947
13947
|
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13948
13948
|
}
|
|
13949
|
+
/**
|
|
13950
|
+
* Extracts faucet metadata from an account's storage.
|
|
13951
|
+
*
|
|
13952
|
+
* Unlike [`Self::from_account`], this reads the metadata straight from the storage slots
|
|
13953
|
+
* without checking that the account exposes the basic fungible faucet interface. This makes
|
|
13954
|
+
* it work for faucets built from custom components that reuse the standards storage layout
|
|
13955
|
+
* (e.g. `AggLayer` bridged-asset faucets), but it also means a non-faucet account whose
|
|
13956
|
+
* storage happens to use the same slot names would yield bogus metadata without an error.
|
|
13957
|
+
* @param {AccountStorage} account_storage
|
|
13958
|
+
* @returns {BasicFungibleFaucetComponent}
|
|
13959
|
+
*/
|
|
13960
|
+
static fromAccountStorage(account_storage) {
|
|
13961
|
+
_assertClass(account_storage, AccountStorage);
|
|
13962
|
+
var ptr0 = account_storage.__destroy_into_raw();
|
|
13963
|
+
const ret = wasm.basicfungiblefaucetcomponent_fromAccountStorage(ptr0);
|
|
13964
|
+
if (ret[2]) {
|
|
13965
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
13966
|
+
}
|
|
13967
|
+
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13968
|
+
}
|
|
13949
13969
|
/**
|
|
13950
13970
|
* Returns the optional token logo URI, or `undefined` when unset.
|
|
13951
13971
|
* @returns {string | undefined}
|
|
@@ -15350,7 +15370,58 @@ class FungibleAsset {
|
|
|
15350
15370
|
return AccountId.__wrap(ret);
|
|
15351
15371
|
}
|
|
15352
15372
|
/**
|
|
15353
|
-
*
|
|
15373
|
+
* Reconstructs a fungible asset from its vault entry — the `(key, value)`
|
|
15374
|
+
* word pair as stored in an account vault, i.e. the outputs of
|
|
15375
|
+
* [`vaultKey`](Self::vault_key) and [`intoWord`](Self::into_word). The key
|
|
15376
|
+
* word carries the faucet id and the callback flag; the value word carries
|
|
15377
|
+
* the amount. This is the inverse of those getters, so
|
|
15378
|
+
* `FungibleAsset.fromVaultEntry(a.vaultKey(), a.intoWord())` round-trips an
|
|
15379
|
+
* asset read from vault data (callback flag included). Errors if the words
|
|
15380
|
+
* don't describe a valid fungible asset (e.g. a malformed key, non-zero
|
|
15381
|
+
* upper limbs in the value word, or an amount above the maximum fungible
|
|
15382
|
+
* asset amount, `2^63 - 2^31`).
|
|
15383
|
+
* @param {Word} key
|
|
15384
|
+
* @param {Word} value
|
|
15385
|
+
* @returns {FungibleAsset}
|
|
15386
|
+
*/
|
|
15387
|
+
static fromVaultEntry(key, value) {
|
|
15388
|
+
_assertClass(key, Word);
|
|
15389
|
+
_assertClass(value, Word);
|
|
15390
|
+
const ret = wasm.fungibleasset_fromVaultEntry(key.__wbg_ptr, value.__wbg_ptr);
|
|
15391
|
+
if (ret[2]) {
|
|
15392
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
15393
|
+
}
|
|
15394
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
15395
|
+
}
|
|
15396
|
+
/**
|
|
15397
|
+
* Reconstructs a fungible asset from its vault key word and a scalar amount.
|
|
15398
|
+
*
|
|
15399
|
+
* A convenience over [`fromVaultEntry`](Self::from_vault_entry) for when you
|
|
15400
|
+
* hold the key word (from [`vaultKey`](Self::vault_key)) and the amount as a
|
|
15401
|
+
* number rather than the value word: the key supplies the faucet id and
|
|
15402
|
+
* callback flag, and the amount is encoded into the value word for you. Use
|
|
15403
|
+
* `fromVaultEntry` when you already have both vault words. Errors on a
|
|
15404
|
+
* malformed key or an amount above the maximum fungible asset amount,
|
|
15405
|
+
* `2^63 - 2^31`.
|
|
15406
|
+
* @param {Word} key
|
|
15407
|
+
* @param {bigint} amount
|
|
15408
|
+
* @returns {FungibleAsset}
|
|
15409
|
+
*/
|
|
15410
|
+
static fromVaultKey(key, amount) {
|
|
15411
|
+
_assertClass(key, Word);
|
|
15412
|
+
const ret = wasm.fungibleasset_fromVaultKey(key.__wbg_ptr, amount);
|
|
15413
|
+
if (ret[2]) {
|
|
15414
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
15415
|
+
}
|
|
15416
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
15417
|
+
}
|
|
15418
|
+
/**
|
|
15419
|
+
* Returns the value word stored under [`vaultKey`](Self::vault_key) in an
|
|
15420
|
+
* account vault. For a fungible asset the value word encodes the amount.
|
|
15421
|
+
*
|
|
15422
|
+
* This is the value half of the vault entry; pair it with `vaultKey()` and
|
|
15423
|
+
* pass both to [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the
|
|
15424
|
+
* asset.
|
|
15354
15425
|
* @returns {Word}
|
|
15355
15426
|
*/
|
|
15356
15427
|
intoWord() {
|
|
@@ -15372,6 +15443,18 @@ class FungibleAsset {
|
|
|
15372
15443
|
FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
|
|
15373
15444
|
return this;
|
|
15374
15445
|
}
|
|
15446
|
+
/**
|
|
15447
|
+
* Returns the key word under which this asset is stored in an account vault.
|
|
15448
|
+
*
|
|
15449
|
+
* The key encodes the faucet id and the callback flag; the amount lives in
|
|
15450
|
+
* the paired value word from [`intoWord`](Self::into_word). Pass both back
|
|
15451
|
+
* into [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the asset.
|
|
15452
|
+
* @returns {Word}
|
|
15453
|
+
*/
|
|
15454
|
+
vaultKey() {
|
|
15455
|
+
const ret = wasm.fungibleasset_vaultKey(this.__wbg_ptr);
|
|
15456
|
+
return Word.__wrap(ret);
|
|
15457
|
+
}
|
|
15375
15458
|
/**
|
|
15376
15459
|
* Returns a copy of this asset carrying the given callback flag.
|
|
15377
15460
|
*
|
|
@@ -25150,7 +25233,7 @@ function __wbg_get_imports(memory) {
|
|
|
25150
25233
|
const ret = AccountStorage.__wrap(arg0);
|
|
25151
25234
|
return ret;
|
|
25152
25235
|
},
|
|
25153
|
-
|
|
25236
|
+
__wbg_addNoteTag_25cad61edb5d555a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
25154
25237
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25155
25238
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25156
25239
|
let v1;
|
|
@@ -25178,25 +25261,25 @@ function __wbg_get_imports(memory) {
|
|
|
25178
25261
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
25179
25262
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
25180
25263
|
}, arguments); },
|
|
25181
|
-
|
|
25264
|
+
__wbg_applyFullAccountState_2aeb79c033cb94e9: function(arg0, arg1, arg2) {
|
|
25182
25265
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
25183
25266
|
return ret;
|
|
25184
25267
|
},
|
|
25185
|
-
|
|
25268
|
+
__wbg_applySettingsMutations_e331196301c58c75: function(arg0, arg1, arg2, arg3) {
|
|
25186
25269
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25187
25270
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25188
25271
|
const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
|
|
25189
25272
|
return ret;
|
|
25190
25273
|
},
|
|
25191
|
-
|
|
25274
|
+
__wbg_applyStateSync_75d2fe4dcfcd8387: function(arg0, arg1, arg2) {
|
|
25192
25275
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
25193
25276
|
return ret;
|
|
25194
25277
|
},
|
|
25195
|
-
|
|
25278
|
+
__wbg_applyTransactionBatch_9d2069a58ecdeb08: function(arg0, arg1, arg2) {
|
|
25196
25279
|
const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
|
|
25197
25280
|
return ret;
|
|
25198
25281
|
},
|
|
25199
|
-
|
|
25282
|
+
__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) {
|
|
25200
25283
|
let deferred0_0;
|
|
25201
25284
|
let deferred0_1;
|
|
25202
25285
|
let deferred1_0;
|
|
@@ -25347,7 +25430,7 @@ function __wbg_get_imports(memory) {
|
|
|
25347
25430
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25348
25431
|
}
|
|
25349
25432
|
},
|
|
25350
|
-
|
|
25433
|
+
__wbg_exportStore_bf1688fbcaeac761: function(arg0, arg1) {
|
|
25351
25434
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
25352
25435
|
return ret;
|
|
25353
25436
|
},
|
|
@@ -25379,7 +25462,7 @@ function __wbg_get_imports(memory) {
|
|
|
25379
25462
|
const ret = FetchedNote.__wrap(arg0);
|
|
25380
25463
|
return ret;
|
|
25381
25464
|
},
|
|
25382
|
-
|
|
25465
|
+
__wbg_forceImportStore_bd5ce688ff80c047: function(arg0, arg1, arg2) {
|
|
25383
25466
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
25384
25467
|
return ret;
|
|
25385
25468
|
},
|
|
@@ -25403,7 +25486,7 @@ function __wbg_get_imports(memory) {
|
|
|
25403
25486
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
25404
25487
|
return ret;
|
|
25405
25488
|
},
|
|
25406
|
-
|
|
25489
|
+
__wbg_getAccountAddresses_44b5a6db696a9381: function(arg0, arg1, arg2, arg3) {
|
|
25407
25490
|
let deferred0_0;
|
|
25408
25491
|
let deferred0_1;
|
|
25409
25492
|
try {
|
|
@@ -25415,7 +25498,7 @@ function __wbg_get_imports(memory) {
|
|
|
25415
25498
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25416
25499
|
}
|
|
25417
25500
|
},
|
|
25418
|
-
|
|
25501
|
+
__wbg_getAccountAuthByPubKeyCommitment_98a8d726bce942e5: function(arg0, arg1, arg2, arg3) {
|
|
25419
25502
|
let deferred0_0;
|
|
25420
25503
|
let deferred0_1;
|
|
25421
25504
|
try {
|
|
@@ -25427,7 +25510,7 @@ function __wbg_get_imports(memory) {
|
|
|
25427
25510
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25428
25511
|
}
|
|
25429
25512
|
},
|
|
25430
|
-
|
|
25513
|
+
__wbg_getAccountCode_15c1a978217210a3: function(arg0, arg1, arg2, arg3) {
|
|
25431
25514
|
let deferred0_0;
|
|
25432
25515
|
let deferred0_1;
|
|
25433
25516
|
try {
|
|
@@ -25439,7 +25522,7 @@ function __wbg_get_imports(memory) {
|
|
|
25439
25522
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25440
25523
|
}
|
|
25441
25524
|
},
|
|
25442
|
-
|
|
25525
|
+
__wbg_getAccountHeaderByCommitment_6e856b122fb63445: function(arg0, arg1, arg2, arg3) {
|
|
25443
25526
|
let deferred0_0;
|
|
25444
25527
|
let deferred0_1;
|
|
25445
25528
|
try {
|
|
@@ -25451,7 +25534,7 @@ function __wbg_get_imports(memory) {
|
|
|
25451
25534
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25452
25535
|
}
|
|
25453
25536
|
},
|
|
25454
|
-
|
|
25537
|
+
__wbg_getAccountHeader_1cfea7b95b20687b: function(arg0, arg1, arg2, arg3) {
|
|
25455
25538
|
let deferred0_0;
|
|
25456
25539
|
let deferred0_1;
|
|
25457
25540
|
try {
|
|
@@ -25463,7 +25546,7 @@ function __wbg_get_imports(memory) {
|
|
|
25463
25546
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25464
25547
|
}
|
|
25465
25548
|
},
|
|
25466
|
-
|
|
25549
|
+
__wbg_getAccountIdByKeyCommitment_dc2e8d8d8a290ac9: function(arg0, arg1, arg2, arg3) {
|
|
25467
25550
|
let deferred0_0;
|
|
25468
25551
|
let deferred0_1;
|
|
25469
25552
|
try {
|
|
@@ -25475,11 +25558,11 @@ function __wbg_get_imports(memory) {
|
|
|
25475
25558
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25476
25559
|
}
|
|
25477
25560
|
},
|
|
25478
|
-
|
|
25561
|
+
__wbg_getAccountIds_0ce97765a3c31e7d: function(arg0, arg1) {
|
|
25479
25562
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
25480
25563
|
return ret;
|
|
25481
25564
|
},
|
|
25482
|
-
|
|
25565
|
+
__wbg_getAccountStorageMaps_09cb3c149afb2ab6: function(arg0, arg1, arg2, arg3) {
|
|
25483
25566
|
let deferred0_0;
|
|
25484
25567
|
let deferred0_1;
|
|
25485
25568
|
try {
|
|
@@ -25491,7 +25574,7 @@ function __wbg_get_imports(memory) {
|
|
|
25491
25574
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25492
25575
|
}
|
|
25493
25576
|
},
|
|
25494
|
-
|
|
25577
|
+
__wbg_getAccountStorage_5502bfe95b2eb790: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25495
25578
|
let deferred0_0;
|
|
25496
25579
|
let deferred0_1;
|
|
25497
25580
|
try {
|
|
@@ -25505,7 +25588,7 @@ function __wbg_get_imports(memory) {
|
|
|
25505
25588
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25506
25589
|
}
|
|
25507
25590
|
},
|
|
25508
|
-
|
|
25591
|
+
__wbg_getAccountVaultAssets_9519922d942fecee: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25509
25592
|
let deferred0_0;
|
|
25510
25593
|
let deferred0_1;
|
|
25511
25594
|
try {
|
|
@@ -25519,27 +25602,27 @@ function __wbg_get_imports(memory) {
|
|
|
25519
25602
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25520
25603
|
}
|
|
25521
25604
|
},
|
|
25522
|
-
|
|
25605
|
+
__wbg_getAllAccountHeaders_df840fc87d4bdec9: function(arg0, arg1) {
|
|
25523
25606
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
25524
25607
|
return ret;
|
|
25525
25608
|
},
|
|
25526
|
-
|
|
25609
|
+
__wbg_getBlockHeaders_5873b22bd7744156: function(arg0, arg1, arg2, arg3) {
|
|
25527
25610
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25528
25611
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25529
25612
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
25530
25613
|
return ret;
|
|
25531
25614
|
},
|
|
25532
|
-
|
|
25615
|
+
__wbg_getCurrentBlockchainPeaks_f329c1684cabaf21: function(arg0, arg1) {
|
|
25533
25616
|
const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
|
|
25534
25617
|
return ret;
|
|
25535
25618
|
},
|
|
25536
|
-
|
|
25619
|
+
__wbg_getForeignAccountCode_626cc9a21065ce07: function(arg0, arg1, arg2, arg3) {
|
|
25537
25620
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25538
25621
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25539
25622
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
25540
25623
|
return ret;
|
|
25541
25624
|
},
|
|
25542
|
-
|
|
25625
|
+
__wbg_getInputNoteByOffset_437795f571f7c2fd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
25543
25626
|
let deferred1_0;
|
|
25544
25627
|
let deferred1_1;
|
|
25545
25628
|
try {
|
|
@@ -25553,31 +25636,31 @@ function __wbg_get_imports(memory) {
|
|
|
25553
25636
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25554
25637
|
}
|
|
25555
25638
|
},
|
|
25556
|
-
|
|
25639
|
+
__wbg_getInputNotesFromDetailsCommitments_e49ccdee208d1f22: function(arg0, arg1, arg2, arg3) {
|
|
25557
25640
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25558
25641
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25559
25642
|
const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
25560
25643
|
return ret;
|
|
25561
25644
|
},
|
|
25562
|
-
|
|
25645
|
+
__wbg_getInputNotesFromIds_057a1693a3b197c0: function(arg0, arg1, arg2, arg3) {
|
|
25563
25646
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25564
25647
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25565
25648
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
25566
25649
|
return ret;
|
|
25567
25650
|
},
|
|
25568
|
-
|
|
25651
|
+
__wbg_getInputNotesFromNullifiers_afa84bb5844ca0f2: function(arg0, arg1, arg2, arg3) {
|
|
25569
25652
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25570
25653
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25571
25654
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
25572
25655
|
return ret;
|
|
25573
25656
|
},
|
|
25574
|
-
|
|
25657
|
+
__wbg_getInputNotes_c22939005e704005: function(arg0, arg1, arg2, arg3) {
|
|
25575
25658
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25576
25659
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25577
25660
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25578
25661
|
return ret;
|
|
25579
25662
|
},
|
|
25580
|
-
|
|
25663
|
+
__wbg_getKeyCommitmentsByAccountId_a9d9f0e316e0b961: function(arg0, arg1, arg2, arg3) {
|
|
25581
25664
|
let deferred0_0;
|
|
25582
25665
|
let deferred0_1;
|
|
25583
25666
|
try {
|
|
@@ -25589,7 +25672,7 @@ function __wbg_get_imports(memory) {
|
|
|
25589
25672
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25590
25673
|
}
|
|
25591
25674
|
},
|
|
25592
|
-
|
|
25675
|
+
__wbg_getNoteScript_40c99e72d3a5347b: function(arg0, arg1, arg2, arg3) {
|
|
25593
25676
|
let deferred0_0;
|
|
25594
25677
|
let deferred0_1;
|
|
25595
25678
|
try {
|
|
@@ -25601,39 +25684,39 @@ function __wbg_get_imports(memory) {
|
|
|
25601
25684
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25602
25685
|
}
|
|
25603
25686
|
},
|
|
25604
|
-
|
|
25687
|
+
__wbg_getNoteTags_67063dd77a36d6b4: function(arg0, arg1) {
|
|
25605
25688
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
25606
25689
|
return ret;
|
|
25607
25690
|
},
|
|
25608
|
-
|
|
25691
|
+
__wbg_getOutputNotesFromDetailsCommitments_bdf7b0c9d2a5db36: function(arg0, arg1, arg2, arg3) {
|
|
25609
25692
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25610
25693
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25611
25694
|
const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
25612
25695
|
return ret;
|
|
25613
25696
|
},
|
|
25614
|
-
|
|
25697
|
+
__wbg_getOutputNotesFromIds_219945e5373d809b: function(arg0, arg1, arg2, arg3) {
|
|
25615
25698
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25616
25699
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25617
25700
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
25618
25701
|
return ret;
|
|
25619
25702
|
},
|
|
25620
|
-
|
|
25703
|
+
__wbg_getOutputNotesFromNullifiers_707ceecfe32e4a35: function(arg0, arg1, arg2, arg3) {
|
|
25621
25704
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25622
25705
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25623
25706
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
25624
25707
|
return ret;
|
|
25625
25708
|
},
|
|
25626
|
-
|
|
25709
|
+
__wbg_getOutputNotes_326a5aa0d3790050: function(arg0, arg1, arg2, arg3) {
|
|
25627
25710
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25628
25711
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25629
25712
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25630
25713
|
return ret;
|
|
25631
25714
|
},
|
|
25632
|
-
|
|
25715
|
+
__wbg_getPartialBlockchainNodesAll_7cf9e7cf6f37f395: function(arg0, arg1) {
|
|
25633
25716
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
25634
25717
|
return ret;
|
|
25635
25718
|
},
|
|
25636
|
-
|
|
25719
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_e91098152297e0da: function(arg0, arg1, arg2, arg3) {
|
|
25637
25720
|
let deferred0_0;
|
|
25638
25721
|
let deferred0_1;
|
|
25639
25722
|
try {
|
|
@@ -25645,7 +25728,7 @@ function __wbg_get_imports(memory) {
|
|
|
25645
25728
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25646
25729
|
}
|
|
25647
25730
|
},
|
|
25648
|
-
|
|
25731
|
+
__wbg_getPartialBlockchainNodes_433475f2ec8b2171: function(arg0, arg1, arg2, arg3) {
|
|
25649
25732
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25650
25733
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25651
25734
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
@@ -25658,7 +25741,7 @@ function __wbg_get_imports(memory) {
|
|
|
25658
25741
|
const ret = arg0.getReader();
|
|
25659
25742
|
return ret;
|
|
25660
25743
|
}, arguments); },
|
|
25661
|
-
|
|
25744
|
+
__wbg_getSetting_e008c5a99f10e590: function(arg0, arg1, arg2, arg3) {
|
|
25662
25745
|
let deferred0_0;
|
|
25663
25746
|
let deferred0_1;
|
|
25664
25747
|
try {
|
|
@@ -25670,7 +25753,7 @@ function __wbg_get_imports(memory) {
|
|
|
25670
25753
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25671
25754
|
}
|
|
25672
25755
|
},
|
|
25673
|
-
|
|
25756
|
+
__wbg_getSyncHeight_ecfa19078de4c98f: function(arg0, arg1) {
|
|
25674
25757
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
25675
25758
|
return ret;
|
|
25676
25759
|
},
|
|
@@ -25678,15 +25761,15 @@ function __wbg_get_imports(memory) {
|
|
|
25678
25761
|
const ret = arg0.getTime();
|
|
25679
25762
|
return ret;
|
|
25680
25763
|
},
|
|
25681
|
-
|
|
25764
|
+
__wbg_getTrackedBlockHeaderNumbers_1cb8016a509ed0c4: function(arg0, arg1) {
|
|
25682
25765
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
25683
25766
|
return ret;
|
|
25684
25767
|
},
|
|
25685
|
-
|
|
25768
|
+
__wbg_getTrackedBlockHeaders_ea97bc37d74a875a: function(arg0, arg1) {
|
|
25686
25769
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
25687
25770
|
return ret;
|
|
25688
25771
|
},
|
|
25689
|
-
|
|
25772
|
+
__wbg_getTransactions_fbcf8488c75fde0d: function(arg0, arg1, arg2, arg3) {
|
|
25690
25773
|
let deferred0_0;
|
|
25691
25774
|
let deferred0_1;
|
|
25692
25775
|
try {
|
|
@@ -25698,7 +25781,7 @@ function __wbg_get_imports(memory) {
|
|
|
25698
25781
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25699
25782
|
}
|
|
25700
25783
|
},
|
|
25701
|
-
|
|
25784
|
+
__wbg_getUnspentInputNoteNullifiers_75ec5ab42ea5afa9: function(arg0, arg1) {
|
|
25702
25785
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
25703
25786
|
return ret;
|
|
25704
25787
|
},
|
|
@@ -25742,7 +25825,7 @@ function __wbg_get_imports(memory) {
|
|
|
25742
25825
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
25743
25826
|
return ret;
|
|
25744
25827
|
},
|
|
25745
|
-
|
|
25828
|
+
__wbg_insertAccountAddress_e8628627a138e81e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25746
25829
|
let deferred0_0;
|
|
25747
25830
|
let deferred0_1;
|
|
25748
25831
|
try {
|
|
@@ -25756,7 +25839,7 @@ function __wbg_get_imports(memory) {
|
|
|
25756
25839
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25757
25840
|
}
|
|
25758
25841
|
},
|
|
25759
|
-
|
|
25842
|
+
__wbg_insertAccountAuth_278a833f3fef3aca: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25760
25843
|
let deferred0_0;
|
|
25761
25844
|
let deferred0_1;
|
|
25762
25845
|
let deferred1_0;
|
|
@@ -25773,7 +25856,7 @@ function __wbg_get_imports(memory) {
|
|
|
25773
25856
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25774
25857
|
}
|
|
25775
25858
|
},
|
|
25776
|
-
|
|
25859
|
+
__wbg_insertAccountKeyMapping_05e2b0009cf1cfe3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25777
25860
|
let deferred0_0;
|
|
25778
25861
|
let deferred0_1;
|
|
25779
25862
|
let deferred1_0;
|
|
@@ -25790,13 +25873,13 @@ function __wbg_get_imports(memory) {
|
|
|
25790
25873
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25791
25874
|
}
|
|
25792
25875
|
},
|
|
25793
|
-
|
|
25876
|
+
__wbg_insertBlockHeader_d972fb92f29e7da7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25794
25877
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
25795
25878
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
25796
25879
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
|
|
25797
25880
|
return ret;
|
|
25798
25881
|
},
|
|
25799
|
-
|
|
25882
|
+
__wbg_insertPartialBlockchainNodes_70af5f15aaab9f89: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25800
25883
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25801
25884
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25802
25885
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25804,7 +25887,7 @@ function __wbg_get_imports(memory) {
|
|
|
25804
25887
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
25805
25888
|
return ret;
|
|
25806
25889
|
},
|
|
25807
|
-
|
|
25890
|
+
__wbg_insertSetting_a1f83afe232d6b43: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25808
25891
|
let deferred0_0;
|
|
25809
25892
|
let deferred0_1;
|
|
25810
25893
|
try {
|
|
@@ -25818,7 +25901,7 @@ function __wbg_get_imports(memory) {
|
|
|
25818
25901
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25819
25902
|
}
|
|
25820
25903
|
},
|
|
25821
|
-
|
|
25904
|
+
__wbg_insertTransactionScript_4ca2858864a66866: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25822
25905
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25823
25906
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25824
25907
|
let v1;
|
|
@@ -25925,11 +26008,11 @@ function __wbg_get_imports(memory) {
|
|
|
25925
26008
|
const ret = arg0.length;
|
|
25926
26009
|
return ret;
|
|
25927
26010
|
},
|
|
25928
|
-
|
|
26011
|
+
__wbg_listSettingKeys_32703227794f5ddf: function(arg0, arg1) {
|
|
25929
26012
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
25930
26013
|
return ret;
|
|
25931
26014
|
},
|
|
25932
|
-
|
|
26015
|
+
__wbg_lockAccount_6847f6622cfbb360: function(arg0, arg1, arg2, arg3) {
|
|
25933
26016
|
let deferred0_0;
|
|
25934
26017
|
let deferred0_1;
|
|
25935
26018
|
try {
|
|
@@ -26148,7 +26231,7 @@ function __wbg_get_imports(memory) {
|
|
|
26148
26231
|
const ret = Array.of(arg0, arg1, arg2);
|
|
26149
26232
|
return ret;
|
|
26150
26233
|
},
|
|
26151
|
-
|
|
26234
|
+
__wbg_openDatabase_41d26d65ebf6caf0: function(arg0, arg1, arg2, arg3) {
|
|
26152
26235
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
26153
26236
|
return ret;
|
|
26154
26237
|
},
|
|
@@ -26182,7 +26265,7 @@ function __wbg_get_imports(memory) {
|
|
|
26182
26265
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
26183
26266
|
return ret;
|
|
26184
26267
|
},
|
|
26185
|
-
|
|
26268
|
+
__wbg_pruneAccountHistory_07a7e45174c9f37a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26186
26269
|
let deferred0_0;
|
|
26187
26270
|
let deferred0_1;
|
|
26188
26271
|
let deferred1_0;
|
|
@@ -26199,7 +26282,7 @@ function __wbg_get_imports(memory) {
|
|
|
26199
26282
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
26200
26283
|
}
|
|
26201
26284
|
},
|
|
26202
|
-
|
|
26285
|
+
__wbg_pruneIrrelevantBlocks_94286980844c1214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26203
26286
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
26204
26287
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
26205
26288
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -26229,13 +26312,13 @@ function __wbg_get_imports(memory) {
|
|
|
26229
26312
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
26230
26313
|
arg0.releaseLock();
|
|
26231
26314
|
},
|
|
26232
|
-
|
|
26315
|
+
__wbg_removeAccountAddress_329baf02728f4c41: function(arg0, arg1, arg2, arg3) {
|
|
26233
26316
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
26234
26317
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
26235
26318
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
26236
26319
|
return ret;
|
|
26237
26320
|
},
|
|
26238
|
-
|
|
26321
|
+
__wbg_removeAccountAuth_603363308e6ae70b: function(arg0, arg1, arg2, arg3) {
|
|
26239
26322
|
let deferred0_0;
|
|
26240
26323
|
let deferred0_1;
|
|
26241
26324
|
try {
|
|
@@ -26247,7 +26330,7 @@ function __wbg_get_imports(memory) {
|
|
|
26247
26330
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26248
26331
|
}
|
|
26249
26332
|
},
|
|
26250
|
-
|
|
26333
|
+
__wbg_removeAllMappingsForKey_fbc7b61a67110568: function(arg0, arg1, arg2, arg3) {
|
|
26251
26334
|
let deferred0_0;
|
|
26252
26335
|
let deferred0_1;
|
|
26253
26336
|
try {
|
|
@@ -26259,7 +26342,7 @@ function __wbg_get_imports(memory) {
|
|
|
26259
26342
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26260
26343
|
}
|
|
26261
26344
|
},
|
|
26262
|
-
|
|
26345
|
+
__wbg_removeNoteTag_5bb25427e520f50b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
26263
26346
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
26264
26347
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
26265
26348
|
let v1;
|
|
@@ -26280,7 +26363,7 @@ function __wbg_get_imports(memory) {
|
|
|
26280
26363
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
|
|
26281
26364
|
return ret;
|
|
26282
26365
|
},
|
|
26283
|
-
|
|
26366
|
+
__wbg_removeSetting_51d62e3d24593afc: function(arg0, arg1, arg2, arg3) {
|
|
26284
26367
|
let deferred0_0;
|
|
26285
26368
|
let deferred0_1;
|
|
26286
26369
|
try {
|
|
@@ -26490,13 +26573,13 @@ function __wbg_get_imports(memory) {
|
|
|
26490
26573
|
const ret = TransactionSummary.__wrap(arg0);
|
|
26491
26574
|
return ret;
|
|
26492
26575
|
},
|
|
26493
|
-
|
|
26576
|
+
__wbg_undoAccountStates_b3c3c03f96aba29a: function(arg0, arg1, arg2, arg3) {
|
|
26494
26577
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
26495
26578
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
26496
26579
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
26497
26580
|
return ret;
|
|
26498
26581
|
},
|
|
26499
|
-
|
|
26582
|
+
__wbg_upsertAccountCode_a011479caf2f2773: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26500
26583
|
let deferred0_0;
|
|
26501
26584
|
let deferred0_1;
|
|
26502
26585
|
try {
|
|
@@ -26510,7 +26593,7 @@ function __wbg_get_imports(memory) {
|
|
|
26510
26593
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26511
26594
|
}
|
|
26512
26595
|
},
|
|
26513
|
-
|
|
26596
|
+
__wbg_upsertAccountRecord_313a9a93a9853a03: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
|
|
26514
26597
|
let deferred0_0;
|
|
26515
26598
|
let deferred0_1;
|
|
26516
26599
|
let deferred1_0;
|
|
@@ -26552,7 +26635,7 @@ function __wbg_get_imports(memory) {
|
|
|
26552
26635
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
26553
26636
|
}
|
|
26554
26637
|
},
|
|
26555
|
-
|
|
26638
|
+
__wbg_upsertAccountStorage_ea6d136c93fbd28c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26556
26639
|
let deferred0_0;
|
|
26557
26640
|
let deferred0_1;
|
|
26558
26641
|
try {
|
|
@@ -26566,7 +26649,7 @@ function __wbg_get_imports(memory) {
|
|
|
26566
26649
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26567
26650
|
}
|
|
26568
26651
|
},
|
|
26569
|
-
|
|
26652
|
+
__wbg_upsertForeignAccountCode_e9e22981c11ab8ec: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
26570
26653
|
let deferred0_0;
|
|
26571
26654
|
let deferred0_1;
|
|
26572
26655
|
let deferred2_0;
|
|
@@ -26585,7 +26668,7 @@ function __wbg_get_imports(memory) {
|
|
|
26585
26668
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
26586
26669
|
}
|
|
26587
26670
|
},
|
|
26588
|
-
|
|
26671
|
+
__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) {
|
|
26589
26672
|
let deferred0_0;
|
|
26590
26673
|
let deferred0_1;
|
|
26591
26674
|
let deferred6_0;
|
|
@@ -26634,7 +26717,7 @@ function __wbg_get_imports(memory) {
|
|
|
26634
26717
|
wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
|
|
26635
26718
|
}
|
|
26636
26719
|
},
|
|
26637
|
-
|
|
26720
|
+
__wbg_upsertNoteScript_e9617c5e4fc75fb0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26638
26721
|
let deferred0_0;
|
|
26639
26722
|
let deferred0_1;
|
|
26640
26723
|
try {
|
|
@@ -26648,7 +26731,7 @@ function __wbg_get_imports(memory) {
|
|
|
26648
26731
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26649
26732
|
}
|
|
26650
26733
|
},
|
|
26651
|
-
|
|
26734
|
+
__wbg_upsertOutputNote_656aa32b96217f2d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
|
|
26652
26735
|
let deferred0_0;
|
|
26653
26736
|
let deferred0_1;
|
|
26654
26737
|
let deferred1_0;
|
|
@@ -26683,7 +26766,7 @@ function __wbg_get_imports(memory) {
|
|
|
26683
26766
|
wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
|
|
26684
26767
|
}
|
|
26685
26768
|
},
|
|
26686
|
-
|
|
26769
|
+
__wbg_upsertStorageMapEntries_91e646dab4d24d18: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26687
26770
|
let deferred0_0;
|
|
26688
26771
|
let deferred0_1;
|
|
26689
26772
|
try {
|
|
@@ -26697,7 +26780,7 @@ function __wbg_get_imports(memory) {
|
|
|
26697
26780
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26698
26781
|
}
|
|
26699
26782
|
},
|
|
26700
|
-
|
|
26783
|
+
__wbg_upsertTransactionRecord_e3f85f1b9f19136d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
26701
26784
|
let deferred0_0;
|
|
26702
26785
|
let deferred0_1;
|
|
26703
26786
|
try {
|
|
@@ -26718,7 +26801,7 @@ function __wbg_get_imports(memory) {
|
|
|
26718
26801
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26719
26802
|
}
|
|
26720
26803
|
},
|
|
26721
|
-
|
|
26804
|
+
__wbg_upsertVaultAssets_4ec8f231ecdc55e4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26722
26805
|
let deferred0_0;
|
|
26723
26806
|
let deferred0_1;
|
|
26724
26807
|
try {
|
|
@@ -26761,17 +26844,17 @@ function __wbg_get_imports(memory) {
|
|
|
26761
26844
|
return ret;
|
|
26762
26845
|
},
|
|
26763
26846
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
26764
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26847
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 126, function: Function { arguments: [Externref], shim_idx: 127, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26765
26848
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8294944b14acb139___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_8294944b14acb139___JsValue____Output_______, wasm_bindgen_8294944b14acb139___convert__closures_____invoke___wasm_bindgen_8294944b14acb139___JsValue_____);
|
|
26766
26849
|
return ret;
|
|
26767
26850
|
},
|
|
26768
26851
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
26769
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26852
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 126, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 127, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26770
26853
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8294944b14acb139___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_8294944b14acb139___JsValue____Output_______, wasm_bindgen_8294944b14acb139___convert__closures_____invoke___wasm_bindgen_8294944b14acb139___JsValue_____);
|
|
26771
26854
|
return ret;
|
|
26772
26855
|
},
|
|
26773
26856
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
26774
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26857
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 126, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26775
26858
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8294944b14acb139___closure__destroy___dyn_core_91ed24bc3d45dfd0___ops__function__FnMut__wasm_bindgen_8294944b14acb139___JsValue____Output_______, wasm_bindgen_8294944b14acb139___convert__closures_____invoke______);
|
|
26776
26859
|
return ret;
|
|
26777
26860
|
},
|
|
@@ -27910,7 +27993,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
27910
27993
|
|
|
27911
27994
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
27912
27995
|
|
|
27913
|
-
var
|
|
27996
|
+
var CargoCvYxNO9A = /*#__PURE__*/Object.freeze({
|
|
27914
27997
|
__proto__: null,
|
|
27915
27998
|
Account: Account,
|
|
27916
27999
|
AccountArray: AccountArray,
|