@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
|
@@ -13218,6 +13218,26 @@ class BasicFungibleFaucetComponent {
|
|
|
13218
13218
|
}
|
|
13219
13219
|
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13220
13220
|
}
|
|
13221
|
+
/**
|
|
13222
|
+
* Extracts faucet metadata from an account's storage.
|
|
13223
|
+
*
|
|
13224
|
+
* Unlike [`Self::from_account`], this reads the metadata straight from the storage slots
|
|
13225
|
+
* without checking that the account exposes the basic fungible faucet interface. This makes
|
|
13226
|
+
* it work for faucets built from custom components that reuse the standards storage layout
|
|
13227
|
+
* (e.g. `AggLayer` bridged-asset faucets), but it also means a non-faucet account whose
|
|
13228
|
+
* storage happens to use the same slot names would yield bogus metadata without an error.
|
|
13229
|
+
* @param {AccountStorage} account_storage
|
|
13230
|
+
* @returns {BasicFungibleFaucetComponent}
|
|
13231
|
+
*/
|
|
13232
|
+
static fromAccountStorage(account_storage) {
|
|
13233
|
+
_assertClass(account_storage, AccountStorage);
|
|
13234
|
+
var ptr0 = account_storage.__destroy_into_raw();
|
|
13235
|
+
const ret = wasm.basicfungiblefaucetcomponent_fromAccountStorage(ptr0);
|
|
13236
|
+
if (ret[2]) {
|
|
13237
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
13238
|
+
}
|
|
13239
|
+
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13240
|
+
}
|
|
13221
13241
|
/**
|
|
13222
13242
|
* Returns the optional token logo URI, or `undefined` when unset.
|
|
13223
13243
|
* @returns {string | undefined}
|
|
@@ -14622,7 +14642,58 @@ class FungibleAsset {
|
|
|
14622
14642
|
return AccountId.__wrap(ret);
|
|
14623
14643
|
}
|
|
14624
14644
|
/**
|
|
14625
|
-
*
|
|
14645
|
+
* Reconstructs a fungible asset from its vault entry — the `(key, value)`
|
|
14646
|
+
* word pair as stored in an account vault, i.e. the outputs of
|
|
14647
|
+
* [`vaultKey`](Self::vault_key) and [`intoWord`](Self::into_word). The key
|
|
14648
|
+
* word carries the faucet id and the callback flag; the value word carries
|
|
14649
|
+
* the amount. This is the inverse of those getters, so
|
|
14650
|
+
* `FungibleAsset.fromVaultEntry(a.vaultKey(), a.intoWord())` round-trips an
|
|
14651
|
+
* asset read from vault data (callback flag included). Errors if the words
|
|
14652
|
+
* don't describe a valid fungible asset (e.g. a malformed key, non-zero
|
|
14653
|
+
* upper limbs in the value word, or an amount above the maximum fungible
|
|
14654
|
+
* asset amount, `2^63 - 2^31`).
|
|
14655
|
+
* @param {Word} key
|
|
14656
|
+
* @param {Word} value
|
|
14657
|
+
* @returns {FungibleAsset}
|
|
14658
|
+
*/
|
|
14659
|
+
static fromVaultEntry(key, value) {
|
|
14660
|
+
_assertClass(key, Word);
|
|
14661
|
+
_assertClass(value, Word);
|
|
14662
|
+
const ret = wasm.fungibleasset_fromVaultEntry(key.__wbg_ptr, value.__wbg_ptr);
|
|
14663
|
+
if (ret[2]) {
|
|
14664
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
14665
|
+
}
|
|
14666
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
14667
|
+
}
|
|
14668
|
+
/**
|
|
14669
|
+
* Reconstructs a fungible asset from its vault key word and a scalar amount.
|
|
14670
|
+
*
|
|
14671
|
+
* A convenience over [`fromVaultEntry`](Self::from_vault_entry) for when you
|
|
14672
|
+
* hold the key word (from [`vaultKey`](Self::vault_key)) and the amount as a
|
|
14673
|
+
* number rather than the value word: the key supplies the faucet id and
|
|
14674
|
+
* callback flag, and the amount is encoded into the value word for you. Use
|
|
14675
|
+
* `fromVaultEntry` when you already have both vault words. Errors on a
|
|
14676
|
+
* malformed key or an amount above the maximum fungible asset amount,
|
|
14677
|
+
* `2^63 - 2^31`.
|
|
14678
|
+
* @param {Word} key
|
|
14679
|
+
* @param {bigint} amount
|
|
14680
|
+
* @returns {FungibleAsset}
|
|
14681
|
+
*/
|
|
14682
|
+
static fromVaultKey(key, amount) {
|
|
14683
|
+
_assertClass(key, Word);
|
|
14684
|
+
const ret = wasm.fungibleasset_fromVaultKey(key.__wbg_ptr, amount);
|
|
14685
|
+
if (ret[2]) {
|
|
14686
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
14687
|
+
}
|
|
14688
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
14689
|
+
}
|
|
14690
|
+
/**
|
|
14691
|
+
* Returns the value word stored under [`vaultKey`](Self::vault_key) in an
|
|
14692
|
+
* account vault. For a fungible asset the value word encodes the amount.
|
|
14693
|
+
*
|
|
14694
|
+
* This is the value half of the vault entry; pair it with `vaultKey()` and
|
|
14695
|
+
* pass both to [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the
|
|
14696
|
+
* asset.
|
|
14626
14697
|
* @returns {Word}
|
|
14627
14698
|
*/
|
|
14628
14699
|
intoWord() {
|
|
@@ -14644,6 +14715,18 @@ class FungibleAsset {
|
|
|
14644
14715
|
FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
|
|
14645
14716
|
return this;
|
|
14646
14717
|
}
|
|
14718
|
+
/**
|
|
14719
|
+
* Returns the key word under which this asset is stored in an account vault.
|
|
14720
|
+
*
|
|
14721
|
+
* The key encodes the faucet id and the callback flag; the amount lives in
|
|
14722
|
+
* the paired value word from [`intoWord`](Self::into_word). Pass both back
|
|
14723
|
+
* into [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the asset.
|
|
14724
|
+
* @returns {Word}
|
|
14725
|
+
*/
|
|
14726
|
+
vaultKey() {
|
|
14727
|
+
const ret = wasm.fungibleasset_vaultKey(this.__wbg_ptr);
|
|
14728
|
+
return Word.__wrap(ret);
|
|
14729
|
+
}
|
|
14647
14730
|
/**
|
|
14648
14731
|
* Returns a copy of this asset carrying the given callback flag.
|
|
14649
14732
|
*
|
|
@@ -24300,7 +24383,7 @@ function __wbg_get_imports() {
|
|
|
24300
24383
|
const ret = AccountStorage.__wrap(arg0);
|
|
24301
24384
|
return ret;
|
|
24302
24385
|
},
|
|
24303
|
-
|
|
24386
|
+
__wbg_addNoteTag_25cad61edb5d555a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
24304
24387
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24305
24388
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24306
24389
|
let v1;
|
|
@@ -24328,25 +24411,25 @@ function __wbg_get_imports() {
|
|
|
24328
24411
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
24329
24412
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
24330
24413
|
}, arguments); },
|
|
24331
|
-
|
|
24414
|
+
__wbg_applyFullAccountState_2aeb79c033cb94e9: function(arg0, arg1, arg2) {
|
|
24332
24415
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
24333
24416
|
return ret;
|
|
24334
24417
|
},
|
|
24335
|
-
|
|
24418
|
+
__wbg_applySettingsMutations_e331196301c58c75: function(arg0, arg1, arg2, arg3) {
|
|
24336
24419
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24337
24420
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24338
24421
|
const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
|
|
24339
24422
|
return ret;
|
|
24340
24423
|
},
|
|
24341
|
-
|
|
24424
|
+
__wbg_applyStateSync_75d2fe4dcfcd8387: function(arg0, arg1, arg2) {
|
|
24342
24425
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
24343
24426
|
return ret;
|
|
24344
24427
|
},
|
|
24345
|
-
|
|
24428
|
+
__wbg_applyTransactionBatch_9d2069a58ecdeb08: function(arg0, arg1, arg2) {
|
|
24346
24429
|
const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
|
|
24347
24430
|
return ret;
|
|
24348
24431
|
},
|
|
24349
|
-
|
|
24432
|
+
__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) {
|
|
24350
24433
|
let deferred0_0;
|
|
24351
24434
|
let deferred0_1;
|
|
24352
24435
|
let deferred1_0;
|
|
@@ -24485,7 +24568,7 @@ function __wbg_get_imports() {
|
|
|
24485
24568
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24486
24569
|
}
|
|
24487
24570
|
},
|
|
24488
|
-
|
|
24571
|
+
__wbg_exportStore_bf1688fbcaeac761: function(arg0, arg1) {
|
|
24489
24572
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
24490
24573
|
return ret;
|
|
24491
24574
|
},
|
|
@@ -24517,7 +24600,7 @@ function __wbg_get_imports() {
|
|
|
24517
24600
|
const ret = FetchedNote.__wrap(arg0);
|
|
24518
24601
|
return ret;
|
|
24519
24602
|
},
|
|
24520
|
-
|
|
24603
|
+
__wbg_forceImportStore_bd5ce688ff80c047: function(arg0, arg1, arg2) {
|
|
24521
24604
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
24522
24605
|
return ret;
|
|
24523
24606
|
},
|
|
@@ -24541,7 +24624,7 @@ function __wbg_get_imports() {
|
|
|
24541
24624
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
24542
24625
|
return ret;
|
|
24543
24626
|
},
|
|
24544
|
-
|
|
24627
|
+
__wbg_getAccountAddresses_44b5a6db696a9381: function(arg0, arg1, arg2, arg3) {
|
|
24545
24628
|
let deferred0_0;
|
|
24546
24629
|
let deferred0_1;
|
|
24547
24630
|
try {
|
|
@@ -24553,7 +24636,7 @@ function __wbg_get_imports() {
|
|
|
24553
24636
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24554
24637
|
}
|
|
24555
24638
|
},
|
|
24556
|
-
|
|
24639
|
+
__wbg_getAccountAuthByPubKeyCommitment_98a8d726bce942e5: function(arg0, arg1, arg2, arg3) {
|
|
24557
24640
|
let deferred0_0;
|
|
24558
24641
|
let deferred0_1;
|
|
24559
24642
|
try {
|
|
@@ -24565,7 +24648,7 @@ function __wbg_get_imports() {
|
|
|
24565
24648
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24566
24649
|
}
|
|
24567
24650
|
},
|
|
24568
|
-
|
|
24651
|
+
__wbg_getAccountCode_15c1a978217210a3: function(arg0, arg1, arg2, arg3) {
|
|
24569
24652
|
let deferred0_0;
|
|
24570
24653
|
let deferred0_1;
|
|
24571
24654
|
try {
|
|
@@ -24577,7 +24660,7 @@ function __wbg_get_imports() {
|
|
|
24577
24660
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24578
24661
|
}
|
|
24579
24662
|
},
|
|
24580
|
-
|
|
24663
|
+
__wbg_getAccountHeaderByCommitment_6e856b122fb63445: function(arg0, arg1, arg2, arg3) {
|
|
24581
24664
|
let deferred0_0;
|
|
24582
24665
|
let deferred0_1;
|
|
24583
24666
|
try {
|
|
@@ -24589,7 +24672,7 @@ function __wbg_get_imports() {
|
|
|
24589
24672
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24590
24673
|
}
|
|
24591
24674
|
},
|
|
24592
|
-
|
|
24675
|
+
__wbg_getAccountHeader_1cfea7b95b20687b: function(arg0, arg1, arg2, arg3) {
|
|
24593
24676
|
let deferred0_0;
|
|
24594
24677
|
let deferred0_1;
|
|
24595
24678
|
try {
|
|
@@ -24601,7 +24684,7 @@ function __wbg_get_imports() {
|
|
|
24601
24684
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24602
24685
|
}
|
|
24603
24686
|
},
|
|
24604
|
-
|
|
24687
|
+
__wbg_getAccountIdByKeyCommitment_dc2e8d8d8a290ac9: function(arg0, arg1, arg2, arg3) {
|
|
24605
24688
|
let deferred0_0;
|
|
24606
24689
|
let deferred0_1;
|
|
24607
24690
|
try {
|
|
@@ -24613,11 +24696,11 @@ function __wbg_get_imports() {
|
|
|
24613
24696
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24614
24697
|
}
|
|
24615
24698
|
},
|
|
24616
|
-
|
|
24699
|
+
__wbg_getAccountIds_0ce97765a3c31e7d: function(arg0, arg1) {
|
|
24617
24700
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
24618
24701
|
return ret;
|
|
24619
24702
|
},
|
|
24620
|
-
|
|
24703
|
+
__wbg_getAccountStorageMaps_09cb3c149afb2ab6: function(arg0, arg1, arg2, arg3) {
|
|
24621
24704
|
let deferred0_0;
|
|
24622
24705
|
let deferred0_1;
|
|
24623
24706
|
try {
|
|
@@ -24629,7 +24712,7 @@ function __wbg_get_imports() {
|
|
|
24629
24712
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24630
24713
|
}
|
|
24631
24714
|
},
|
|
24632
|
-
|
|
24715
|
+
__wbg_getAccountStorage_5502bfe95b2eb790: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24633
24716
|
let deferred0_0;
|
|
24634
24717
|
let deferred0_1;
|
|
24635
24718
|
try {
|
|
@@ -24643,7 +24726,7 @@ function __wbg_get_imports() {
|
|
|
24643
24726
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24644
24727
|
}
|
|
24645
24728
|
},
|
|
24646
|
-
|
|
24729
|
+
__wbg_getAccountVaultAssets_9519922d942fecee: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24647
24730
|
let deferred0_0;
|
|
24648
24731
|
let deferred0_1;
|
|
24649
24732
|
try {
|
|
@@ -24657,27 +24740,27 @@ function __wbg_get_imports() {
|
|
|
24657
24740
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24658
24741
|
}
|
|
24659
24742
|
},
|
|
24660
|
-
|
|
24743
|
+
__wbg_getAllAccountHeaders_df840fc87d4bdec9: function(arg0, arg1) {
|
|
24661
24744
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
24662
24745
|
return ret;
|
|
24663
24746
|
},
|
|
24664
|
-
|
|
24747
|
+
__wbg_getBlockHeaders_5873b22bd7744156: function(arg0, arg1, arg2, arg3) {
|
|
24665
24748
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
24666
24749
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24667
24750
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
24668
24751
|
return ret;
|
|
24669
24752
|
},
|
|
24670
|
-
|
|
24753
|
+
__wbg_getCurrentBlockchainPeaks_f329c1684cabaf21: function(arg0, arg1) {
|
|
24671
24754
|
const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
|
|
24672
24755
|
return ret;
|
|
24673
24756
|
},
|
|
24674
|
-
|
|
24757
|
+
__wbg_getForeignAccountCode_626cc9a21065ce07: function(arg0, arg1, arg2, arg3) {
|
|
24675
24758
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24676
24759
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24677
24760
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
24678
24761
|
return ret;
|
|
24679
24762
|
},
|
|
24680
|
-
|
|
24763
|
+
__wbg_getInputNoteByOffset_437795f571f7c2fd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
24681
24764
|
let deferred1_0;
|
|
24682
24765
|
let deferred1_1;
|
|
24683
24766
|
try {
|
|
@@ -24691,31 +24774,31 @@ function __wbg_get_imports() {
|
|
|
24691
24774
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24692
24775
|
}
|
|
24693
24776
|
},
|
|
24694
|
-
|
|
24777
|
+
__wbg_getInputNotesFromDetailsCommitments_e49ccdee208d1f22: function(arg0, arg1, arg2, arg3) {
|
|
24695
24778
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24696
24779
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24697
24780
|
const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
24698
24781
|
return ret;
|
|
24699
24782
|
},
|
|
24700
|
-
|
|
24783
|
+
__wbg_getInputNotesFromIds_057a1693a3b197c0: function(arg0, arg1, arg2, arg3) {
|
|
24701
24784
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24702
24785
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24703
24786
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24704
24787
|
return ret;
|
|
24705
24788
|
},
|
|
24706
|
-
|
|
24789
|
+
__wbg_getInputNotesFromNullifiers_afa84bb5844ca0f2: function(arg0, arg1, arg2, arg3) {
|
|
24707
24790
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24708
24791
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24709
24792
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24710
24793
|
return ret;
|
|
24711
24794
|
},
|
|
24712
|
-
|
|
24795
|
+
__wbg_getInputNotes_c22939005e704005: function(arg0, arg1, arg2, arg3) {
|
|
24713
24796
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24714
24797
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24715
24798
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24716
24799
|
return ret;
|
|
24717
24800
|
},
|
|
24718
|
-
|
|
24801
|
+
__wbg_getKeyCommitmentsByAccountId_a9d9f0e316e0b961: function(arg0, arg1, arg2, arg3) {
|
|
24719
24802
|
let deferred0_0;
|
|
24720
24803
|
let deferred0_1;
|
|
24721
24804
|
try {
|
|
@@ -24727,7 +24810,7 @@ function __wbg_get_imports() {
|
|
|
24727
24810
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24728
24811
|
}
|
|
24729
24812
|
},
|
|
24730
|
-
|
|
24813
|
+
__wbg_getNoteScript_40c99e72d3a5347b: function(arg0, arg1, arg2, arg3) {
|
|
24731
24814
|
let deferred0_0;
|
|
24732
24815
|
let deferred0_1;
|
|
24733
24816
|
try {
|
|
@@ -24739,39 +24822,39 @@ function __wbg_get_imports() {
|
|
|
24739
24822
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24740
24823
|
}
|
|
24741
24824
|
},
|
|
24742
|
-
|
|
24825
|
+
__wbg_getNoteTags_67063dd77a36d6b4: function(arg0, arg1) {
|
|
24743
24826
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
24744
24827
|
return ret;
|
|
24745
24828
|
},
|
|
24746
|
-
|
|
24829
|
+
__wbg_getOutputNotesFromDetailsCommitments_bdf7b0c9d2a5db36: function(arg0, arg1, arg2, arg3) {
|
|
24747
24830
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24748
24831
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24749
24832
|
const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
24750
24833
|
return ret;
|
|
24751
24834
|
},
|
|
24752
|
-
|
|
24835
|
+
__wbg_getOutputNotesFromIds_219945e5373d809b: function(arg0, arg1, arg2, arg3) {
|
|
24753
24836
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24754
24837
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24755
24838
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24756
24839
|
return ret;
|
|
24757
24840
|
},
|
|
24758
|
-
|
|
24841
|
+
__wbg_getOutputNotesFromNullifiers_707ceecfe32e4a35: function(arg0, arg1, arg2, arg3) {
|
|
24759
24842
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24760
24843
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24761
24844
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24762
24845
|
return ret;
|
|
24763
24846
|
},
|
|
24764
|
-
|
|
24847
|
+
__wbg_getOutputNotes_326a5aa0d3790050: function(arg0, arg1, arg2, arg3) {
|
|
24765
24848
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24766
24849
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24767
24850
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24768
24851
|
return ret;
|
|
24769
24852
|
},
|
|
24770
|
-
|
|
24853
|
+
__wbg_getPartialBlockchainNodesAll_7cf9e7cf6f37f395: function(arg0, arg1) {
|
|
24771
24854
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
24772
24855
|
return ret;
|
|
24773
24856
|
},
|
|
24774
|
-
|
|
24857
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_e91098152297e0da: function(arg0, arg1, arg2, arg3) {
|
|
24775
24858
|
let deferred0_0;
|
|
24776
24859
|
let deferred0_1;
|
|
24777
24860
|
try {
|
|
@@ -24783,7 +24866,7 @@ function __wbg_get_imports() {
|
|
|
24783
24866
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24784
24867
|
}
|
|
24785
24868
|
},
|
|
24786
|
-
|
|
24869
|
+
__wbg_getPartialBlockchainNodes_433475f2ec8b2171: function(arg0, arg1, arg2, arg3) {
|
|
24787
24870
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24788
24871
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24789
24872
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
@@ -24796,7 +24879,7 @@ function __wbg_get_imports() {
|
|
|
24796
24879
|
const ret = arg0.getReader();
|
|
24797
24880
|
return ret;
|
|
24798
24881
|
}, arguments); },
|
|
24799
|
-
|
|
24882
|
+
__wbg_getSetting_e008c5a99f10e590: function(arg0, arg1, arg2, arg3) {
|
|
24800
24883
|
let deferred0_0;
|
|
24801
24884
|
let deferred0_1;
|
|
24802
24885
|
try {
|
|
@@ -24808,7 +24891,7 @@ function __wbg_get_imports() {
|
|
|
24808
24891
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24809
24892
|
}
|
|
24810
24893
|
},
|
|
24811
|
-
|
|
24894
|
+
__wbg_getSyncHeight_ecfa19078de4c98f: function(arg0, arg1) {
|
|
24812
24895
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
24813
24896
|
return ret;
|
|
24814
24897
|
},
|
|
@@ -24816,15 +24899,15 @@ function __wbg_get_imports() {
|
|
|
24816
24899
|
const ret = arg0.getTime();
|
|
24817
24900
|
return ret;
|
|
24818
24901
|
},
|
|
24819
|
-
|
|
24902
|
+
__wbg_getTrackedBlockHeaderNumbers_1cb8016a509ed0c4: function(arg0, arg1) {
|
|
24820
24903
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
24821
24904
|
return ret;
|
|
24822
24905
|
},
|
|
24823
|
-
|
|
24906
|
+
__wbg_getTrackedBlockHeaders_ea97bc37d74a875a: function(arg0, arg1) {
|
|
24824
24907
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
24825
24908
|
return ret;
|
|
24826
24909
|
},
|
|
24827
|
-
|
|
24910
|
+
__wbg_getTransactions_fbcf8488c75fde0d: function(arg0, arg1, arg2, arg3) {
|
|
24828
24911
|
let deferred0_0;
|
|
24829
24912
|
let deferred0_1;
|
|
24830
24913
|
try {
|
|
@@ -24836,7 +24919,7 @@ function __wbg_get_imports() {
|
|
|
24836
24919
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24837
24920
|
}
|
|
24838
24921
|
},
|
|
24839
|
-
|
|
24922
|
+
__wbg_getUnspentInputNoteNullifiers_75ec5ab42ea5afa9: function(arg0, arg1) {
|
|
24840
24923
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
24841
24924
|
return ret;
|
|
24842
24925
|
},
|
|
@@ -24880,7 +24963,7 @@ function __wbg_get_imports() {
|
|
|
24880
24963
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
24881
24964
|
return ret;
|
|
24882
24965
|
},
|
|
24883
|
-
|
|
24966
|
+
__wbg_insertAccountAddress_e8628627a138e81e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24884
24967
|
let deferred0_0;
|
|
24885
24968
|
let deferred0_1;
|
|
24886
24969
|
try {
|
|
@@ -24894,7 +24977,7 @@ function __wbg_get_imports() {
|
|
|
24894
24977
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24895
24978
|
}
|
|
24896
24979
|
},
|
|
24897
|
-
|
|
24980
|
+
__wbg_insertAccountAuth_278a833f3fef3aca: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24898
24981
|
let deferred0_0;
|
|
24899
24982
|
let deferred0_1;
|
|
24900
24983
|
let deferred1_0;
|
|
@@ -24911,7 +24994,7 @@ function __wbg_get_imports() {
|
|
|
24911
24994
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24912
24995
|
}
|
|
24913
24996
|
},
|
|
24914
|
-
|
|
24997
|
+
__wbg_insertAccountKeyMapping_05e2b0009cf1cfe3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24915
24998
|
let deferred0_0;
|
|
24916
24999
|
let deferred0_1;
|
|
24917
25000
|
let deferred1_0;
|
|
@@ -24928,13 +25011,13 @@ function __wbg_get_imports() {
|
|
|
24928
25011
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24929
25012
|
}
|
|
24930
25013
|
},
|
|
24931
|
-
|
|
25014
|
+
__wbg_insertBlockHeader_d972fb92f29e7da7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24932
25015
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
24933
25016
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
24934
25017
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
|
|
24935
25018
|
return ret;
|
|
24936
25019
|
},
|
|
24937
|
-
|
|
25020
|
+
__wbg_insertPartialBlockchainNodes_70af5f15aaab9f89: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24938
25021
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24939
25022
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24940
25023
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -24942,7 +25025,7 @@ function __wbg_get_imports() {
|
|
|
24942
25025
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
24943
25026
|
return ret;
|
|
24944
25027
|
},
|
|
24945
|
-
|
|
25028
|
+
__wbg_insertSetting_a1f83afe232d6b43: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24946
25029
|
let deferred0_0;
|
|
24947
25030
|
let deferred0_1;
|
|
24948
25031
|
try {
|
|
@@ -24956,7 +25039,7 @@ function __wbg_get_imports() {
|
|
|
24956
25039
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24957
25040
|
}
|
|
24958
25041
|
},
|
|
24959
|
-
|
|
25042
|
+
__wbg_insertTransactionScript_4ca2858864a66866: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24960
25043
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24961
25044
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24962
25045
|
let v1;
|
|
@@ -25053,11 +25136,11 @@ function __wbg_get_imports() {
|
|
|
25053
25136
|
const ret = arg0.length;
|
|
25054
25137
|
return ret;
|
|
25055
25138
|
},
|
|
25056
|
-
|
|
25139
|
+
__wbg_listSettingKeys_32703227794f5ddf: function(arg0, arg1) {
|
|
25057
25140
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
25058
25141
|
return ret;
|
|
25059
25142
|
},
|
|
25060
|
-
|
|
25143
|
+
__wbg_lockAccount_6847f6622cfbb360: function(arg0, arg1, arg2, arg3) {
|
|
25061
25144
|
let deferred0_0;
|
|
25062
25145
|
let deferred0_1;
|
|
25063
25146
|
try {
|
|
@@ -25260,7 +25343,7 @@ function __wbg_get_imports() {
|
|
|
25260
25343
|
const ret = NoteTag.__unwrap(arg0);
|
|
25261
25344
|
return ret;
|
|
25262
25345
|
},
|
|
25263
|
-
|
|
25346
|
+
__wbg_openDatabase_41d26d65ebf6caf0: function(arg0, arg1, arg2, arg3) {
|
|
25264
25347
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
25265
25348
|
return ret;
|
|
25266
25349
|
},
|
|
@@ -25291,7 +25374,7 @@ function __wbg_get_imports() {
|
|
|
25291
25374
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
25292
25375
|
return ret;
|
|
25293
25376
|
},
|
|
25294
|
-
|
|
25377
|
+
__wbg_pruneAccountHistory_07a7e45174c9f37a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25295
25378
|
let deferred0_0;
|
|
25296
25379
|
let deferred0_1;
|
|
25297
25380
|
let deferred1_0;
|
|
@@ -25308,7 +25391,7 @@ function __wbg_get_imports() {
|
|
|
25308
25391
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25309
25392
|
}
|
|
25310
25393
|
},
|
|
25311
|
-
|
|
25394
|
+
__wbg_pruneIrrelevantBlocks_94286980844c1214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25312
25395
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25313
25396
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25314
25397
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25338,13 +25421,13 @@ function __wbg_get_imports() {
|
|
|
25338
25421
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
25339
25422
|
arg0.releaseLock();
|
|
25340
25423
|
},
|
|
25341
|
-
|
|
25424
|
+
__wbg_removeAccountAddress_329baf02728f4c41: 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 = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
25345
25428
|
return ret;
|
|
25346
25429
|
},
|
|
25347
|
-
|
|
25430
|
+
__wbg_removeAccountAuth_603363308e6ae70b: 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_removeAllMappingsForKey_fbc7b61a67110568: function(arg0, arg1, arg2, arg3) {
|
|
25360
25443
|
let deferred0_0;
|
|
25361
25444
|
let deferred0_1;
|
|
25362
25445
|
try {
|
|
@@ -25368,7 +25451,7 @@ function __wbg_get_imports() {
|
|
|
25368
25451
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25369
25452
|
}
|
|
25370
25453
|
},
|
|
25371
|
-
|
|
25454
|
+
__wbg_removeNoteTag_5bb25427e520f50b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
25372
25455
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25373
25456
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25374
25457
|
let v1;
|
|
@@ -25389,7 +25472,7 @@ function __wbg_get_imports() {
|
|
|
25389
25472
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
|
|
25390
25473
|
return ret;
|
|
25391
25474
|
},
|
|
25392
|
-
|
|
25475
|
+
__wbg_removeSetting_51d62e3d24593afc: function(arg0, arg1, arg2, arg3) {
|
|
25393
25476
|
let deferred0_0;
|
|
25394
25477
|
let deferred0_1;
|
|
25395
25478
|
try {
|
|
@@ -25592,13 +25675,13 @@ function __wbg_get_imports() {
|
|
|
25592
25675
|
const ret = TransactionSummary.__wrap(arg0);
|
|
25593
25676
|
return ret;
|
|
25594
25677
|
},
|
|
25595
|
-
|
|
25678
|
+
__wbg_undoAccountStates_b3c3c03f96aba29a: function(arg0, arg1, arg2, arg3) {
|
|
25596
25679
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25597
25680
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25598
25681
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
25599
25682
|
return ret;
|
|
25600
25683
|
},
|
|
25601
|
-
|
|
25684
|
+
__wbg_upsertAccountCode_a011479caf2f2773: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25602
25685
|
let deferred0_0;
|
|
25603
25686
|
let deferred0_1;
|
|
25604
25687
|
try {
|
|
@@ -25612,7 +25695,7 @@ function __wbg_get_imports() {
|
|
|
25612
25695
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25613
25696
|
}
|
|
25614
25697
|
},
|
|
25615
|
-
|
|
25698
|
+
__wbg_upsertAccountRecord_313a9a93a9853a03: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
|
|
25616
25699
|
let deferred0_0;
|
|
25617
25700
|
let deferred0_1;
|
|
25618
25701
|
let deferred1_0;
|
|
@@ -25654,7 +25737,7 @@ function __wbg_get_imports() {
|
|
|
25654
25737
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
25655
25738
|
}
|
|
25656
25739
|
},
|
|
25657
|
-
|
|
25740
|
+
__wbg_upsertAccountStorage_ea6d136c93fbd28c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25658
25741
|
let deferred0_0;
|
|
25659
25742
|
let deferred0_1;
|
|
25660
25743
|
try {
|
|
@@ -25668,7 +25751,7 @@ function __wbg_get_imports() {
|
|
|
25668
25751
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25669
25752
|
}
|
|
25670
25753
|
},
|
|
25671
|
-
|
|
25754
|
+
__wbg_upsertForeignAccountCode_e9e22981c11ab8ec: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
25672
25755
|
let deferred0_0;
|
|
25673
25756
|
let deferred0_1;
|
|
25674
25757
|
let deferred2_0;
|
|
@@ -25687,7 +25770,7 @@ function __wbg_get_imports() {
|
|
|
25687
25770
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
25688
25771
|
}
|
|
25689
25772
|
},
|
|
25690
|
-
|
|
25773
|
+
__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) {
|
|
25691
25774
|
let deferred0_0;
|
|
25692
25775
|
let deferred0_1;
|
|
25693
25776
|
let deferred6_0;
|
|
@@ -25736,7 +25819,7 @@ function __wbg_get_imports() {
|
|
|
25736
25819
|
wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
|
|
25737
25820
|
}
|
|
25738
25821
|
},
|
|
25739
|
-
|
|
25822
|
+
__wbg_upsertNoteScript_e9617c5e4fc75fb0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25740
25823
|
let deferred0_0;
|
|
25741
25824
|
let deferred0_1;
|
|
25742
25825
|
try {
|
|
@@ -25750,7 +25833,7 @@ function __wbg_get_imports() {
|
|
|
25750
25833
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25751
25834
|
}
|
|
25752
25835
|
},
|
|
25753
|
-
|
|
25836
|
+
__wbg_upsertOutputNote_656aa32b96217f2d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
|
|
25754
25837
|
let deferred0_0;
|
|
25755
25838
|
let deferred0_1;
|
|
25756
25839
|
let deferred1_0;
|
|
@@ -25785,7 +25868,7 @@ function __wbg_get_imports() {
|
|
|
25785
25868
|
wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
|
|
25786
25869
|
}
|
|
25787
25870
|
},
|
|
25788
|
-
|
|
25871
|
+
__wbg_upsertStorageMapEntries_91e646dab4d24d18: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25789
25872
|
let deferred0_0;
|
|
25790
25873
|
let deferred0_1;
|
|
25791
25874
|
try {
|
|
@@ -25799,7 +25882,7 @@ function __wbg_get_imports() {
|
|
|
25799
25882
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25800
25883
|
}
|
|
25801
25884
|
},
|
|
25802
|
-
|
|
25885
|
+
__wbg_upsertTransactionRecord_e3f85f1b9f19136d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
25803
25886
|
let deferred0_0;
|
|
25804
25887
|
let deferred0_1;
|
|
25805
25888
|
try {
|
|
@@ -25820,7 +25903,7 @@ function __wbg_get_imports() {
|
|
|
25820
25903
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25821
25904
|
}
|
|
25822
25905
|
},
|
|
25823
|
-
|
|
25906
|
+
__wbg_upsertVaultAssets_4ec8f231ecdc55e4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25824
25907
|
let deferred0_0;
|
|
25825
25908
|
let deferred0_1;
|
|
25826
25909
|
try {
|
|
@@ -25851,12 +25934,12 @@ function __wbg_get_imports() {
|
|
|
25851
25934
|
return ret;
|
|
25852
25935
|
},
|
|
25853
25936
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
25854
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
25937
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 453, function: Function { arguments: [Externref], shim_idx: 815, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
25855
25938
|
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_____);
|
|
25856
25939
|
return ret;
|
|
25857
25940
|
},
|
|
25858
25941
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
25859
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
25942
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 453, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
25860
25943
|
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______);
|
|
25861
25944
|
return ret;
|
|
25862
25945
|
},
|
|
@@ -26804,4 +26887,4 @@ async function __wbg_init(module_or_path) {
|
|
|
26804
26887
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
26805
26888
|
|
|
26806
26889
|
export { Account, AccountArray, AccountBuilder, AccountBuilderResult, AccountCode, AccountComponent, AccountComponentCode, AccountDelta, AccountFile, AccountHeader, AccountId, AccountIdArray, AccountInterface, AccountProof, AccountReader, AccountStatus, AccountStorage, AccountStorageDelta, AccountStorageMode, AccountStorageRequirements, AccountType, AccountVaultDelta, Address, AdviceInputs, AdviceMap, AssetCallbackFlag, AssetVault, AuthFalcon512RpoMultisigConfig, AuthScheme, AuthSecretKey, BasicFungibleFaucetComponent, BlockHeader, CodeBuilder, CommittedNote, ConsumableNoteRecord, Endpoint, EthAddress, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsSettingMutation, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkAccountTarget, NetworkId, NetworkNoteStatusInfo, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, NoteAttachmentScheme, NoteConsumability, NoteConsumptionStatus, NoteDetails, NoteDetailsAndTag, NoteDetailsAndTagArray, NoteExecutionHint, NoteExportFormat, NoteFile, NoteFilter, NoteFilterTypes, NoteHeader, NoteId, NoteIdAndArgs, NoteIdAndArgsArray, NoteInclusionProof, NoteLocation, NoteMetadata, NoteRecipient, NoteRecipientArray, NoteScript, NoteStorage, NoteSyncBlock, NoteSyncInfo, NoteTag, NoteType, OutputNote, OutputNoteArray, OutputNoteRecord, OutputNoteState, OutputNotes, Package, PartialNote, Poseidon2, ProcedureThreshold, Program, ProvenTransaction, PswapLineageRecord, PswapLineageState, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, StorageMapEntryJs, StorageMapInfo, StorageMapUpdate, StorageSlot, StorageSlotArray, SyncSummary, TestUtils, TokenSymbol, TransactionArgs, TransactionFilter, TransactionId, TransactionProver, TransactionRecord, TransactionRequest, TransactionRequestBuilder, TransactionResult, TransactionScript, TransactionScriptInputPair, TransactionScriptInputPairArray, TransactionStatus, TransactionStoreUpdate, TransactionSummary, WebClient, WebKeystoreApi, Word, module$1 as __wasm_url, __wbg_init, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, sequentialSumBench, setupLogging };
|
|
26807
|
-
//# sourceMappingURL=Cargo-
|
|
26890
|
+
//# sourceMappingURL=Cargo-L_lPKfww-BM__buYN.js.map
|