@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
|
@@ -13317,6 +13317,26 @@ class BasicFungibleFaucetComponent {
|
|
|
13317
13317
|
}
|
|
13318
13318
|
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13319
13319
|
}
|
|
13320
|
+
/**
|
|
13321
|
+
* Extracts faucet metadata from an account's storage.
|
|
13322
|
+
*
|
|
13323
|
+
* Unlike [`Self::from_account`], this reads the metadata straight from the storage slots
|
|
13324
|
+
* without checking that the account exposes the basic fungible faucet interface. This makes
|
|
13325
|
+
* it work for faucets built from custom components that reuse the standards storage layout
|
|
13326
|
+
* (e.g. `AggLayer` bridged-asset faucets), but it also means a non-faucet account whose
|
|
13327
|
+
* storage happens to use the same slot names would yield bogus metadata without an error.
|
|
13328
|
+
* @param {AccountStorage} account_storage
|
|
13329
|
+
* @returns {BasicFungibleFaucetComponent}
|
|
13330
|
+
*/
|
|
13331
|
+
static fromAccountStorage(account_storage) {
|
|
13332
|
+
_assertClass(account_storage, AccountStorage);
|
|
13333
|
+
var ptr0 = account_storage.__destroy_into_raw();
|
|
13334
|
+
const ret = wasm.basicfungiblefaucetcomponent_fromAccountStorage(ptr0);
|
|
13335
|
+
if (ret[2]) {
|
|
13336
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
13337
|
+
}
|
|
13338
|
+
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13339
|
+
}
|
|
13320
13340
|
/**
|
|
13321
13341
|
* Returns the optional token logo URI, or `undefined` when unset.
|
|
13322
13342
|
* @returns {string | undefined}
|
|
@@ -14721,7 +14741,58 @@ class FungibleAsset {
|
|
|
14721
14741
|
return AccountId.__wrap(ret);
|
|
14722
14742
|
}
|
|
14723
14743
|
/**
|
|
14724
|
-
*
|
|
14744
|
+
* Reconstructs a fungible asset from its vault entry — the `(key, value)`
|
|
14745
|
+
* word pair as stored in an account vault, i.e. the outputs of
|
|
14746
|
+
* [`vaultKey`](Self::vault_key) and [`intoWord`](Self::into_word). The key
|
|
14747
|
+
* word carries the faucet id and the callback flag; the value word carries
|
|
14748
|
+
* the amount. This is the inverse of those getters, so
|
|
14749
|
+
* `FungibleAsset.fromVaultEntry(a.vaultKey(), a.intoWord())` round-trips an
|
|
14750
|
+
* asset read from vault data (callback flag included). Errors if the words
|
|
14751
|
+
* don't describe a valid fungible asset (e.g. a malformed key, non-zero
|
|
14752
|
+
* upper limbs in the value word, or an amount above the maximum fungible
|
|
14753
|
+
* asset amount, `2^63 - 2^31`).
|
|
14754
|
+
* @param {Word} key
|
|
14755
|
+
* @param {Word} value
|
|
14756
|
+
* @returns {FungibleAsset}
|
|
14757
|
+
*/
|
|
14758
|
+
static fromVaultEntry(key, value) {
|
|
14759
|
+
_assertClass(key, Word);
|
|
14760
|
+
_assertClass(value, Word);
|
|
14761
|
+
const ret = wasm.fungibleasset_fromVaultEntry(key.__wbg_ptr, value.__wbg_ptr);
|
|
14762
|
+
if (ret[2]) {
|
|
14763
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
14764
|
+
}
|
|
14765
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
14766
|
+
}
|
|
14767
|
+
/**
|
|
14768
|
+
* Reconstructs a fungible asset from its vault key word and a scalar amount.
|
|
14769
|
+
*
|
|
14770
|
+
* A convenience over [`fromVaultEntry`](Self::from_vault_entry) for when you
|
|
14771
|
+
* hold the key word (from [`vaultKey`](Self::vault_key)) and the amount as a
|
|
14772
|
+
* number rather than the value word: the key supplies the faucet id and
|
|
14773
|
+
* callback flag, and the amount is encoded into the value word for you. Use
|
|
14774
|
+
* `fromVaultEntry` when you already have both vault words. Errors on a
|
|
14775
|
+
* malformed key or an amount above the maximum fungible asset amount,
|
|
14776
|
+
* `2^63 - 2^31`.
|
|
14777
|
+
* @param {Word} key
|
|
14778
|
+
* @param {bigint} amount
|
|
14779
|
+
* @returns {FungibleAsset}
|
|
14780
|
+
*/
|
|
14781
|
+
static fromVaultKey(key, amount) {
|
|
14782
|
+
_assertClass(key, Word);
|
|
14783
|
+
const ret = wasm.fungibleasset_fromVaultKey(key.__wbg_ptr, amount);
|
|
14784
|
+
if (ret[2]) {
|
|
14785
|
+
throw takeFromExternrefTable0(ret[1]);
|
|
14786
|
+
}
|
|
14787
|
+
return FungibleAsset.__wrap(ret[0]);
|
|
14788
|
+
}
|
|
14789
|
+
/**
|
|
14790
|
+
* Returns the value word stored under [`vaultKey`](Self::vault_key) in an
|
|
14791
|
+
* account vault. For a fungible asset the value word encodes the amount.
|
|
14792
|
+
*
|
|
14793
|
+
* This is the value half of the vault entry; pair it with `vaultKey()` and
|
|
14794
|
+
* pass both to [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the
|
|
14795
|
+
* asset.
|
|
14725
14796
|
* @returns {Word}
|
|
14726
14797
|
*/
|
|
14727
14798
|
intoWord() {
|
|
@@ -14743,6 +14814,18 @@ class FungibleAsset {
|
|
|
14743
14814
|
FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
|
|
14744
14815
|
return this;
|
|
14745
14816
|
}
|
|
14817
|
+
/**
|
|
14818
|
+
* Returns the key word under which this asset is stored in an account vault.
|
|
14819
|
+
*
|
|
14820
|
+
* The key encodes the faucet id and the callback flag; the amount lives in
|
|
14821
|
+
* the paired value word from [`intoWord`](Self::into_word). Pass both back
|
|
14822
|
+
* into [`fromVaultEntry`](Self::from_vault_entry) to reconstruct the asset.
|
|
14823
|
+
* @returns {Word}
|
|
14824
|
+
*/
|
|
14825
|
+
vaultKey() {
|
|
14826
|
+
const ret = wasm.fungibleasset_vaultKey(this.__wbg_ptr);
|
|
14827
|
+
return Word.__wrap(ret);
|
|
14828
|
+
}
|
|
14746
14829
|
/**
|
|
14747
14830
|
* Returns a copy of this asset carrying the given callback flag.
|
|
14748
14831
|
*
|
|
@@ -24521,7 +24604,7 @@ function __wbg_get_imports(memory) {
|
|
|
24521
24604
|
const ret = AccountStorage.__wrap(arg0);
|
|
24522
24605
|
return ret;
|
|
24523
24606
|
},
|
|
24524
|
-
|
|
24607
|
+
__wbg_addNoteTag_25cad61edb5d555a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
24525
24608
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24526
24609
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24527
24610
|
let v1;
|
|
@@ -24549,25 +24632,25 @@ function __wbg_get_imports(memory) {
|
|
|
24549
24632
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
24550
24633
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
24551
24634
|
}, arguments); },
|
|
24552
|
-
|
|
24635
|
+
__wbg_applyFullAccountState_2aeb79c033cb94e9: function(arg0, arg1, arg2) {
|
|
24553
24636
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
24554
24637
|
return ret;
|
|
24555
24638
|
},
|
|
24556
|
-
|
|
24639
|
+
__wbg_applySettingsMutations_e331196301c58c75: function(arg0, arg1, arg2, arg3) {
|
|
24557
24640
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24558
24641
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24559
24642
|
const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
|
|
24560
24643
|
return ret;
|
|
24561
24644
|
},
|
|
24562
|
-
|
|
24645
|
+
__wbg_applyStateSync_75d2fe4dcfcd8387: function(arg0, arg1, arg2) {
|
|
24563
24646
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
24564
24647
|
return ret;
|
|
24565
24648
|
},
|
|
24566
|
-
|
|
24649
|
+
__wbg_applyTransactionBatch_9d2069a58ecdeb08: function(arg0, arg1, arg2) {
|
|
24567
24650
|
const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
|
|
24568
24651
|
return ret;
|
|
24569
24652
|
},
|
|
24570
|
-
|
|
24653
|
+
__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) {
|
|
24571
24654
|
let deferred0_0;
|
|
24572
24655
|
let deferred0_1;
|
|
24573
24656
|
let deferred1_0;
|
|
@@ -24718,7 +24801,7 @@ function __wbg_get_imports(memory) {
|
|
|
24718
24801
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24719
24802
|
}
|
|
24720
24803
|
},
|
|
24721
|
-
|
|
24804
|
+
__wbg_exportStore_bf1688fbcaeac761: function(arg0, arg1) {
|
|
24722
24805
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
24723
24806
|
return ret;
|
|
24724
24807
|
},
|
|
@@ -24750,7 +24833,7 @@ function __wbg_get_imports(memory) {
|
|
|
24750
24833
|
const ret = FetchedNote.__wrap(arg0);
|
|
24751
24834
|
return ret;
|
|
24752
24835
|
},
|
|
24753
|
-
|
|
24836
|
+
__wbg_forceImportStore_bd5ce688ff80c047: function(arg0, arg1, arg2) {
|
|
24754
24837
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
24755
24838
|
return ret;
|
|
24756
24839
|
},
|
|
@@ -24774,7 +24857,7 @@ function __wbg_get_imports(memory) {
|
|
|
24774
24857
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
24775
24858
|
return ret;
|
|
24776
24859
|
},
|
|
24777
|
-
|
|
24860
|
+
__wbg_getAccountAddresses_44b5a6db696a9381: function(arg0, arg1, arg2, arg3) {
|
|
24778
24861
|
let deferred0_0;
|
|
24779
24862
|
let deferred0_1;
|
|
24780
24863
|
try {
|
|
@@ -24786,7 +24869,7 @@ function __wbg_get_imports(memory) {
|
|
|
24786
24869
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24787
24870
|
}
|
|
24788
24871
|
},
|
|
24789
|
-
|
|
24872
|
+
__wbg_getAccountAuthByPubKeyCommitment_98a8d726bce942e5: function(arg0, arg1, arg2, arg3) {
|
|
24790
24873
|
let deferred0_0;
|
|
24791
24874
|
let deferred0_1;
|
|
24792
24875
|
try {
|
|
@@ -24798,7 +24881,7 @@ function __wbg_get_imports(memory) {
|
|
|
24798
24881
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24799
24882
|
}
|
|
24800
24883
|
},
|
|
24801
|
-
|
|
24884
|
+
__wbg_getAccountCode_15c1a978217210a3: function(arg0, arg1, arg2, arg3) {
|
|
24802
24885
|
let deferred0_0;
|
|
24803
24886
|
let deferred0_1;
|
|
24804
24887
|
try {
|
|
@@ -24810,7 +24893,7 @@ function __wbg_get_imports(memory) {
|
|
|
24810
24893
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24811
24894
|
}
|
|
24812
24895
|
},
|
|
24813
|
-
|
|
24896
|
+
__wbg_getAccountHeaderByCommitment_6e856b122fb63445: function(arg0, arg1, arg2, arg3) {
|
|
24814
24897
|
let deferred0_0;
|
|
24815
24898
|
let deferred0_1;
|
|
24816
24899
|
try {
|
|
@@ -24822,7 +24905,7 @@ function __wbg_get_imports(memory) {
|
|
|
24822
24905
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24823
24906
|
}
|
|
24824
24907
|
},
|
|
24825
|
-
|
|
24908
|
+
__wbg_getAccountHeader_1cfea7b95b20687b: function(arg0, arg1, arg2, arg3) {
|
|
24826
24909
|
let deferred0_0;
|
|
24827
24910
|
let deferred0_1;
|
|
24828
24911
|
try {
|
|
@@ -24834,7 +24917,7 @@ function __wbg_get_imports(memory) {
|
|
|
24834
24917
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24835
24918
|
}
|
|
24836
24919
|
},
|
|
24837
|
-
|
|
24920
|
+
__wbg_getAccountIdByKeyCommitment_dc2e8d8d8a290ac9: function(arg0, arg1, arg2, arg3) {
|
|
24838
24921
|
let deferred0_0;
|
|
24839
24922
|
let deferred0_1;
|
|
24840
24923
|
try {
|
|
@@ -24846,11 +24929,11 @@ function __wbg_get_imports(memory) {
|
|
|
24846
24929
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24847
24930
|
}
|
|
24848
24931
|
},
|
|
24849
|
-
|
|
24932
|
+
__wbg_getAccountIds_0ce97765a3c31e7d: function(arg0, arg1) {
|
|
24850
24933
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
24851
24934
|
return ret;
|
|
24852
24935
|
},
|
|
24853
|
-
|
|
24936
|
+
__wbg_getAccountStorageMaps_09cb3c149afb2ab6: function(arg0, arg1, arg2, arg3) {
|
|
24854
24937
|
let deferred0_0;
|
|
24855
24938
|
let deferred0_1;
|
|
24856
24939
|
try {
|
|
@@ -24862,7 +24945,7 @@ function __wbg_get_imports(memory) {
|
|
|
24862
24945
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24863
24946
|
}
|
|
24864
24947
|
},
|
|
24865
|
-
|
|
24948
|
+
__wbg_getAccountStorage_5502bfe95b2eb790: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24866
24949
|
let deferred0_0;
|
|
24867
24950
|
let deferred0_1;
|
|
24868
24951
|
try {
|
|
@@ -24876,7 +24959,7 @@ function __wbg_get_imports(memory) {
|
|
|
24876
24959
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24877
24960
|
}
|
|
24878
24961
|
},
|
|
24879
|
-
|
|
24962
|
+
__wbg_getAccountVaultAssets_9519922d942fecee: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24880
24963
|
let deferred0_0;
|
|
24881
24964
|
let deferred0_1;
|
|
24882
24965
|
try {
|
|
@@ -24890,27 +24973,27 @@ function __wbg_get_imports(memory) {
|
|
|
24890
24973
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24891
24974
|
}
|
|
24892
24975
|
},
|
|
24893
|
-
|
|
24976
|
+
__wbg_getAllAccountHeaders_df840fc87d4bdec9: function(arg0, arg1) {
|
|
24894
24977
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
24895
24978
|
return ret;
|
|
24896
24979
|
},
|
|
24897
|
-
|
|
24980
|
+
__wbg_getBlockHeaders_5873b22bd7744156: function(arg0, arg1, arg2, arg3) {
|
|
24898
24981
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
24899
24982
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24900
24983
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
24901
24984
|
return ret;
|
|
24902
24985
|
},
|
|
24903
|
-
|
|
24986
|
+
__wbg_getCurrentBlockchainPeaks_f329c1684cabaf21: function(arg0, arg1) {
|
|
24904
24987
|
const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
|
|
24905
24988
|
return ret;
|
|
24906
24989
|
},
|
|
24907
|
-
|
|
24990
|
+
__wbg_getForeignAccountCode_626cc9a21065ce07: function(arg0, arg1, arg2, arg3) {
|
|
24908
24991
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24909
24992
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24910
24993
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
24911
24994
|
return ret;
|
|
24912
24995
|
},
|
|
24913
|
-
|
|
24996
|
+
__wbg_getInputNoteByOffset_437795f571f7c2fd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
24914
24997
|
let deferred1_0;
|
|
24915
24998
|
let deferred1_1;
|
|
24916
24999
|
try {
|
|
@@ -24924,31 +25007,31 @@ function __wbg_get_imports(memory) {
|
|
|
24924
25007
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24925
25008
|
}
|
|
24926
25009
|
},
|
|
24927
|
-
|
|
25010
|
+
__wbg_getInputNotesFromDetailsCommitments_e49ccdee208d1f22: function(arg0, arg1, arg2, arg3) {
|
|
24928
25011
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24929
25012
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24930
25013
|
const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
24931
25014
|
return ret;
|
|
24932
25015
|
},
|
|
24933
|
-
|
|
25016
|
+
__wbg_getInputNotesFromIds_057a1693a3b197c0: function(arg0, arg1, arg2, arg3) {
|
|
24934
25017
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24935
25018
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24936
25019
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24937
25020
|
return ret;
|
|
24938
25021
|
},
|
|
24939
|
-
|
|
25022
|
+
__wbg_getInputNotesFromNullifiers_afa84bb5844ca0f2: function(arg0, arg1, arg2, arg3) {
|
|
24940
25023
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24941
25024
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24942
25025
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24943
25026
|
return ret;
|
|
24944
25027
|
},
|
|
24945
|
-
|
|
25028
|
+
__wbg_getInputNotes_c22939005e704005: function(arg0, arg1, arg2, arg3) {
|
|
24946
25029
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24947
25030
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24948
25031
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24949
25032
|
return ret;
|
|
24950
25033
|
},
|
|
24951
|
-
|
|
25034
|
+
__wbg_getKeyCommitmentsByAccountId_a9d9f0e316e0b961: function(arg0, arg1, arg2, arg3) {
|
|
24952
25035
|
let deferred0_0;
|
|
24953
25036
|
let deferred0_1;
|
|
24954
25037
|
try {
|
|
@@ -24960,7 +25043,7 @@ function __wbg_get_imports(memory) {
|
|
|
24960
25043
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24961
25044
|
}
|
|
24962
25045
|
},
|
|
24963
|
-
|
|
25046
|
+
__wbg_getNoteScript_40c99e72d3a5347b: function(arg0, arg1, arg2, arg3) {
|
|
24964
25047
|
let deferred0_0;
|
|
24965
25048
|
let deferred0_1;
|
|
24966
25049
|
try {
|
|
@@ -24972,39 +25055,39 @@ function __wbg_get_imports(memory) {
|
|
|
24972
25055
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24973
25056
|
}
|
|
24974
25057
|
},
|
|
24975
|
-
|
|
25058
|
+
__wbg_getNoteTags_67063dd77a36d6b4: function(arg0, arg1) {
|
|
24976
25059
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
24977
25060
|
return ret;
|
|
24978
25061
|
},
|
|
24979
|
-
|
|
25062
|
+
__wbg_getOutputNotesFromDetailsCommitments_bdf7b0c9d2a5db36: function(arg0, arg1, arg2, arg3) {
|
|
24980
25063
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24981
25064
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24982
25065
|
const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
24983
25066
|
return ret;
|
|
24984
25067
|
},
|
|
24985
|
-
|
|
25068
|
+
__wbg_getOutputNotesFromIds_219945e5373d809b: function(arg0, arg1, arg2, arg3) {
|
|
24986
25069
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24987
25070
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24988
25071
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24989
25072
|
return ret;
|
|
24990
25073
|
},
|
|
24991
|
-
|
|
25074
|
+
__wbg_getOutputNotesFromNullifiers_707ceecfe32e4a35: function(arg0, arg1, arg2, arg3) {
|
|
24992
25075
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24993
25076
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24994
25077
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24995
25078
|
return ret;
|
|
24996
25079
|
},
|
|
24997
|
-
|
|
25080
|
+
__wbg_getOutputNotes_326a5aa0d3790050: function(arg0, arg1, arg2, arg3) {
|
|
24998
25081
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24999
25082
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25000
25083
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25001
25084
|
return ret;
|
|
25002
25085
|
},
|
|
25003
|
-
|
|
25086
|
+
__wbg_getPartialBlockchainNodesAll_7cf9e7cf6f37f395: function(arg0, arg1) {
|
|
25004
25087
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
25005
25088
|
return ret;
|
|
25006
25089
|
},
|
|
25007
|
-
|
|
25090
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_e91098152297e0da: function(arg0, arg1, arg2, arg3) {
|
|
25008
25091
|
let deferred0_0;
|
|
25009
25092
|
let deferred0_1;
|
|
25010
25093
|
try {
|
|
@@ -25016,7 +25099,7 @@ function __wbg_get_imports(memory) {
|
|
|
25016
25099
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25017
25100
|
}
|
|
25018
25101
|
},
|
|
25019
|
-
|
|
25102
|
+
__wbg_getPartialBlockchainNodes_433475f2ec8b2171: function(arg0, arg1, arg2, arg3) {
|
|
25020
25103
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25021
25104
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25022
25105
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
@@ -25029,7 +25112,7 @@ function __wbg_get_imports(memory) {
|
|
|
25029
25112
|
const ret = arg0.getReader();
|
|
25030
25113
|
return ret;
|
|
25031
25114
|
}, arguments); },
|
|
25032
|
-
|
|
25115
|
+
__wbg_getSetting_e008c5a99f10e590: function(arg0, arg1, arg2, arg3) {
|
|
25033
25116
|
let deferred0_0;
|
|
25034
25117
|
let deferred0_1;
|
|
25035
25118
|
try {
|
|
@@ -25041,7 +25124,7 @@ function __wbg_get_imports(memory) {
|
|
|
25041
25124
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25042
25125
|
}
|
|
25043
25126
|
},
|
|
25044
|
-
|
|
25127
|
+
__wbg_getSyncHeight_ecfa19078de4c98f: function(arg0, arg1) {
|
|
25045
25128
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
25046
25129
|
return ret;
|
|
25047
25130
|
},
|
|
@@ -25049,15 +25132,15 @@ function __wbg_get_imports(memory) {
|
|
|
25049
25132
|
const ret = arg0.getTime();
|
|
25050
25133
|
return ret;
|
|
25051
25134
|
},
|
|
25052
|
-
|
|
25135
|
+
__wbg_getTrackedBlockHeaderNumbers_1cb8016a509ed0c4: function(arg0, arg1) {
|
|
25053
25136
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
25054
25137
|
return ret;
|
|
25055
25138
|
},
|
|
25056
|
-
|
|
25139
|
+
__wbg_getTrackedBlockHeaders_ea97bc37d74a875a: function(arg0, arg1) {
|
|
25057
25140
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
25058
25141
|
return ret;
|
|
25059
25142
|
},
|
|
25060
|
-
|
|
25143
|
+
__wbg_getTransactions_fbcf8488c75fde0d: function(arg0, arg1, arg2, arg3) {
|
|
25061
25144
|
let deferred0_0;
|
|
25062
25145
|
let deferred0_1;
|
|
25063
25146
|
try {
|
|
@@ -25069,7 +25152,7 @@ function __wbg_get_imports(memory) {
|
|
|
25069
25152
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25070
25153
|
}
|
|
25071
25154
|
},
|
|
25072
|
-
|
|
25155
|
+
__wbg_getUnspentInputNoteNullifiers_75ec5ab42ea5afa9: function(arg0, arg1) {
|
|
25073
25156
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
25074
25157
|
return ret;
|
|
25075
25158
|
},
|
|
@@ -25113,7 +25196,7 @@ function __wbg_get_imports(memory) {
|
|
|
25113
25196
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
25114
25197
|
return ret;
|
|
25115
25198
|
},
|
|
25116
|
-
|
|
25199
|
+
__wbg_insertAccountAddress_e8628627a138e81e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25117
25200
|
let deferred0_0;
|
|
25118
25201
|
let deferred0_1;
|
|
25119
25202
|
try {
|
|
@@ -25127,7 +25210,7 @@ function __wbg_get_imports(memory) {
|
|
|
25127
25210
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25128
25211
|
}
|
|
25129
25212
|
},
|
|
25130
|
-
|
|
25213
|
+
__wbg_insertAccountAuth_278a833f3fef3aca: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25131
25214
|
let deferred0_0;
|
|
25132
25215
|
let deferred0_1;
|
|
25133
25216
|
let deferred1_0;
|
|
@@ -25144,7 +25227,7 @@ function __wbg_get_imports(memory) {
|
|
|
25144
25227
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25145
25228
|
}
|
|
25146
25229
|
},
|
|
25147
|
-
|
|
25230
|
+
__wbg_insertAccountKeyMapping_05e2b0009cf1cfe3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25148
25231
|
let deferred0_0;
|
|
25149
25232
|
let deferred0_1;
|
|
25150
25233
|
let deferred1_0;
|
|
@@ -25161,13 +25244,13 @@ function __wbg_get_imports(memory) {
|
|
|
25161
25244
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25162
25245
|
}
|
|
25163
25246
|
},
|
|
25164
|
-
|
|
25247
|
+
__wbg_insertBlockHeader_d972fb92f29e7da7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25165
25248
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
25166
25249
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
25167
25250
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
|
|
25168
25251
|
return ret;
|
|
25169
25252
|
},
|
|
25170
|
-
|
|
25253
|
+
__wbg_insertPartialBlockchainNodes_70af5f15aaab9f89: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25171
25254
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25172
25255
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25173
25256
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25175,7 +25258,7 @@ function __wbg_get_imports(memory) {
|
|
|
25175
25258
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
25176
25259
|
return ret;
|
|
25177
25260
|
},
|
|
25178
|
-
|
|
25261
|
+
__wbg_insertSetting_a1f83afe232d6b43: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25179
25262
|
let deferred0_0;
|
|
25180
25263
|
let deferred0_1;
|
|
25181
25264
|
try {
|
|
@@ -25189,7 +25272,7 @@ function __wbg_get_imports(memory) {
|
|
|
25189
25272
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25190
25273
|
}
|
|
25191
25274
|
},
|
|
25192
|
-
|
|
25275
|
+
__wbg_insertTransactionScript_4ca2858864a66866: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25193
25276
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25194
25277
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25195
25278
|
let v1;
|
|
@@ -25296,11 +25379,11 @@ function __wbg_get_imports(memory) {
|
|
|
25296
25379
|
const ret = arg0.length;
|
|
25297
25380
|
return ret;
|
|
25298
25381
|
},
|
|
25299
|
-
|
|
25382
|
+
__wbg_listSettingKeys_32703227794f5ddf: function(arg0, arg1) {
|
|
25300
25383
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
25301
25384
|
return ret;
|
|
25302
25385
|
},
|
|
25303
|
-
|
|
25386
|
+
__wbg_lockAccount_6847f6622cfbb360: function(arg0, arg1, arg2, arg3) {
|
|
25304
25387
|
let deferred0_0;
|
|
25305
25388
|
let deferred0_1;
|
|
25306
25389
|
try {
|
|
@@ -25519,7 +25602,7 @@ function __wbg_get_imports(memory) {
|
|
|
25519
25602
|
const ret = Array.of(arg0, arg1, arg2);
|
|
25520
25603
|
return ret;
|
|
25521
25604
|
},
|
|
25522
|
-
|
|
25605
|
+
__wbg_openDatabase_41d26d65ebf6caf0: function(arg0, arg1, arg2, arg3) {
|
|
25523
25606
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
25524
25607
|
return ret;
|
|
25525
25608
|
},
|
|
@@ -25553,7 +25636,7 @@ function __wbg_get_imports(memory) {
|
|
|
25553
25636
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
25554
25637
|
return ret;
|
|
25555
25638
|
},
|
|
25556
|
-
|
|
25639
|
+
__wbg_pruneAccountHistory_07a7e45174c9f37a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25557
25640
|
let deferred0_0;
|
|
25558
25641
|
let deferred0_1;
|
|
25559
25642
|
let deferred1_0;
|
|
@@ -25570,7 +25653,7 @@ function __wbg_get_imports(memory) {
|
|
|
25570
25653
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25571
25654
|
}
|
|
25572
25655
|
},
|
|
25573
|
-
|
|
25656
|
+
__wbg_pruneIrrelevantBlocks_94286980844c1214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25574
25657
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25575
25658
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25576
25659
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25600,13 +25683,13 @@ function __wbg_get_imports(memory) {
|
|
|
25600
25683
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
25601
25684
|
arg0.releaseLock();
|
|
25602
25685
|
},
|
|
25603
|
-
|
|
25686
|
+
__wbg_removeAccountAddress_329baf02728f4c41: function(arg0, arg1, arg2, arg3) {
|
|
25604
25687
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25605
25688
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25606
25689
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
25607
25690
|
return ret;
|
|
25608
25691
|
},
|
|
25609
|
-
|
|
25692
|
+
__wbg_removeAccountAuth_603363308e6ae70b: function(arg0, arg1, arg2, arg3) {
|
|
25610
25693
|
let deferred0_0;
|
|
25611
25694
|
let deferred0_1;
|
|
25612
25695
|
try {
|
|
@@ -25618,7 +25701,7 @@ function __wbg_get_imports(memory) {
|
|
|
25618
25701
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25619
25702
|
}
|
|
25620
25703
|
},
|
|
25621
|
-
|
|
25704
|
+
__wbg_removeAllMappingsForKey_fbc7b61a67110568: function(arg0, arg1, arg2, arg3) {
|
|
25622
25705
|
let deferred0_0;
|
|
25623
25706
|
let deferred0_1;
|
|
25624
25707
|
try {
|
|
@@ -25630,7 +25713,7 @@ function __wbg_get_imports(memory) {
|
|
|
25630
25713
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25631
25714
|
}
|
|
25632
25715
|
},
|
|
25633
|
-
|
|
25716
|
+
__wbg_removeNoteTag_5bb25427e520f50b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
25634
25717
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25635
25718
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25636
25719
|
let v1;
|
|
@@ -25651,7 +25734,7 @@ function __wbg_get_imports(memory) {
|
|
|
25651
25734
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
|
|
25652
25735
|
return ret;
|
|
25653
25736
|
},
|
|
25654
|
-
|
|
25737
|
+
__wbg_removeSetting_51d62e3d24593afc: function(arg0, arg1, arg2, arg3) {
|
|
25655
25738
|
let deferred0_0;
|
|
25656
25739
|
let deferred0_1;
|
|
25657
25740
|
try {
|
|
@@ -25861,13 +25944,13 @@ function __wbg_get_imports(memory) {
|
|
|
25861
25944
|
const ret = TransactionSummary.__wrap(arg0);
|
|
25862
25945
|
return ret;
|
|
25863
25946
|
},
|
|
25864
|
-
|
|
25947
|
+
__wbg_undoAccountStates_b3c3c03f96aba29a: function(arg0, arg1, arg2, arg3) {
|
|
25865
25948
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25866
25949
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25867
25950
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
25868
25951
|
return ret;
|
|
25869
25952
|
},
|
|
25870
|
-
|
|
25953
|
+
__wbg_upsertAccountCode_a011479caf2f2773: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25871
25954
|
let deferred0_0;
|
|
25872
25955
|
let deferred0_1;
|
|
25873
25956
|
try {
|
|
@@ -25881,7 +25964,7 @@ function __wbg_get_imports(memory) {
|
|
|
25881
25964
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25882
25965
|
}
|
|
25883
25966
|
},
|
|
25884
|
-
|
|
25967
|
+
__wbg_upsertAccountRecord_313a9a93a9853a03: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
|
|
25885
25968
|
let deferred0_0;
|
|
25886
25969
|
let deferred0_1;
|
|
25887
25970
|
let deferred1_0;
|
|
@@ -25923,7 +26006,7 @@ function __wbg_get_imports(memory) {
|
|
|
25923
26006
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
25924
26007
|
}
|
|
25925
26008
|
},
|
|
25926
|
-
|
|
26009
|
+
__wbg_upsertAccountStorage_ea6d136c93fbd28c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25927
26010
|
let deferred0_0;
|
|
25928
26011
|
let deferred0_1;
|
|
25929
26012
|
try {
|
|
@@ -25937,7 +26020,7 @@ function __wbg_get_imports(memory) {
|
|
|
25937
26020
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25938
26021
|
}
|
|
25939
26022
|
},
|
|
25940
|
-
|
|
26023
|
+
__wbg_upsertForeignAccountCode_e9e22981c11ab8ec: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
25941
26024
|
let deferred0_0;
|
|
25942
26025
|
let deferred0_1;
|
|
25943
26026
|
let deferred2_0;
|
|
@@ -25956,7 +26039,7 @@ function __wbg_get_imports(memory) {
|
|
|
25956
26039
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
25957
26040
|
}
|
|
25958
26041
|
},
|
|
25959
|
-
|
|
26042
|
+
__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) {
|
|
25960
26043
|
let deferred0_0;
|
|
25961
26044
|
let deferred0_1;
|
|
25962
26045
|
let deferred6_0;
|
|
@@ -26005,7 +26088,7 @@ function __wbg_get_imports(memory) {
|
|
|
26005
26088
|
wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
|
|
26006
26089
|
}
|
|
26007
26090
|
},
|
|
26008
|
-
|
|
26091
|
+
__wbg_upsertNoteScript_e9617c5e4fc75fb0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26009
26092
|
let deferred0_0;
|
|
26010
26093
|
let deferred0_1;
|
|
26011
26094
|
try {
|
|
@@ -26019,7 +26102,7 @@ function __wbg_get_imports(memory) {
|
|
|
26019
26102
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26020
26103
|
}
|
|
26021
26104
|
},
|
|
26022
|
-
|
|
26105
|
+
__wbg_upsertOutputNote_656aa32b96217f2d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
|
|
26023
26106
|
let deferred0_0;
|
|
26024
26107
|
let deferred0_1;
|
|
26025
26108
|
let deferred1_0;
|
|
@@ -26054,7 +26137,7 @@ function __wbg_get_imports(memory) {
|
|
|
26054
26137
|
wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
|
|
26055
26138
|
}
|
|
26056
26139
|
},
|
|
26057
|
-
|
|
26140
|
+
__wbg_upsertStorageMapEntries_91e646dab4d24d18: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26058
26141
|
let deferred0_0;
|
|
26059
26142
|
let deferred0_1;
|
|
26060
26143
|
try {
|
|
@@ -26068,7 +26151,7 @@ function __wbg_get_imports(memory) {
|
|
|
26068
26151
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26069
26152
|
}
|
|
26070
26153
|
},
|
|
26071
|
-
|
|
26154
|
+
__wbg_upsertTransactionRecord_e3f85f1b9f19136d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
26072
26155
|
let deferred0_0;
|
|
26073
26156
|
let deferred0_1;
|
|
26074
26157
|
try {
|
|
@@ -26089,7 +26172,7 @@ function __wbg_get_imports(memory) {
|
|
|
26089
26172
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26090
26173
|
}
|
|
26091
26174
|
},
|
|
26092
|
-
|
|
26175
|
+
__wbg_upsertVaultAssets_4ec8f231ecdc55e4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26093
26176
|
let deferred0_0;
|
|
26094
26177
|
let deferred0_1;
|
|
26095
26178
|
try {
|
|
@@ -26132,17 +26215,17 @@ function __wbg_get_imports(memory) {
|
|
|
26132
26215
|
return ret;
|
|
26133
26216
|
},
|
|
26134
26217
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
26135
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26218
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 126, function: Function { arguments: [Externref], shim_idx: 127, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26136
26219
|
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_____);
|
|
26137
26220
|
return ret;
|
|
26138
26221
|
},
|
|
26139
26222
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
26140
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26223
|
+
// 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`.
|
|
26141
26224
|
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_____);
|
|
26142
26225
|
return ret;
|
|
26143
26226
|
},
|
|
26144
26227
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
26145
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26228
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 126, function: Function { arguments: [], shim_idx: 454, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26146
26229
|
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______);
|
|
26147
26230
|
return ret;
|
|
26148
26231
|
},
|
|
@@ -27282,4 +27365,4 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
27282
27365
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
27283
27366
|
|
|
27284
27367
|
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, initThreadPool, mtProbeAsync, mtProbeSync, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker };
|
|
27285
|
-
//# sourceMappingURL=Cargo-
|
|
27368
|
+
//# sourceMappingURL=Cargo-CvYxNO9A-D_wSZjuK.js.map
|