@miden-sdk/miden-sdk 0.15.6 → 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/README.md +15 -0
- package/dist/mt/{Cargo-mvyTli7g.js → Cargo-CvYxNO9A.js} +203 -77
- package/dist/mt/Cargo-CvYxNO9A.js.map +1 -0
- package/dist/mt/api-types.d.ts +120 -0
- package/dist/mt/assets/miden_client_web.wasm +0 -0
- package/dist/mt/crates/miden_client_web.d.ts +81 -1
- package/dist/mt/docs-entry.d.ts +3 -0
- package/dist/mt/eager.js +1 -1
- package/dist/mt/index.js +279 -5
- 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-mvyTli7g-BwMMSyoq.js → Cargo-CvYxNO9A-D_wSZjuK.js} +203 -77
- 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 +204 -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-Cysp4vto.js → Cargo-L_lPKfww.js} +201 -76
- package/dist/st/Cargo-L_lPKfww.js.map +1 -0
- package/dist/st/api-types.d.ts +120 -0
- package/dist/st/assets/miden_client_web.wasm +0 -0
- package/dist/st/crates/miden_client_web.d.ts +81 -1
- package/dist/st/docs-entry.d.ts +3 -0
- package/dist/st/eager.js +1 -1
- package/dist/st/index.js +279 -5
- package/dist/st/index.js.map +1 -1
- package/dist/st/wasm.js +1 -1
- package/dist/st/workers/{Cargo-Cysp4vto-BIw-TeJn.js → Cargo-L_lPKfww-BM__buYN.js} +201 -76
- 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 +202 -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/js/node-index.js +1 -0
- package/js/resources/transactions.js +251 -4
- package/package.json +4 -4
- package/dist/mt/Cargo-mvyTli7g.js.map +0 -1
- package/dist/mt/workers/Cargo-mvyTli7g-BwMMSyoq.js.map +0 -1
- package/dist/st/Cargo-Cysp4vto.js.map +0 -1
- package/dist/st/workers/Cargo-Cysp4vto-BIw-TeJn.js.map +0 -1
|
@@ -12942,6 +12942,26 @@ class AdviceMap {
|
|
|
12942
12942
|
}
|
|
12943
12943
|
if (Symbol.dispose) AdviceMap.prototype[Symbol.dispose] = AdviceMap.prototype.free;
|
|
12944
12944
|
|
|
12945
|
+
/**
|
|
12946
|
+
* Whether a faucet's asset callbacks run when an asset is added to an account or a note.
|
|
12947
|
+
*
|
|
12948
|
+
* The flag is part of an asset's vault key, so two assets from the same faucet with different
|
|
12949
|
+
* flags occupy different vault slots and do not merge. Assets minted by a faucet that registers
|
|
12950
|
+
* transfer policies carry `Enabled`; everything else carries `Disabled`.
|
|
12951
|
+
* @enum {0 | 1}
|
|
12952
|
+
*/
|
|
12953
|
+
const AssetCallbackFlag = Object.freeze({
|
|
12954
|
+
/**
|
|
12955
|
+
* The faucet's callbacks are not invoked for this asset. This is the default for an asset
|
|
12956
|
+
* built via the `FungibleAsset` constructor.
|
|
12957
|
+
*/
|
|
12958
|
+
Disabled: 0, "0": "Disabled",
|
|
12959
|
+
/**
|
|
12960
|
+
* The faucet's callbacks are invoked before this asset is added to an account or a note.
|
|
12961
|
+
*/
|
|
12962
|
+
Enabled: 1, "1": "Enabled",
|
|
12963
|
+
});
|
|
12964
|
+
|
|
12945
12965
|
/**
|
|
12946
12966
|
* A container for an unlimited number of assets.
|
|
12947
12967
|
*
|
|
@@ -13297,6 +13317,26 @@ class BasicFungibleFaucetComponent {
|
|
|
13297
13317
|
}
|
|
13298
13318
|
return BasicFungibleFaucetComponent.__wrap(ret[0]);
|
|
13299
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
|
+
}
|
|
13300
13340
|
/**
|
|
13301
13341
|
* Returns the optional token logo URI, or `undefined` when unset.
|
|
13302
13342
|
* @returns {string | undefined}
|
|
@@ -14684,6 +14724,14 @@ class FungibleAsset {
|
|
|
14684
14724
|
const ret = wasm.fungibleasset_amount(this.__wbg_ptr);
|
|
14685
14725
|
return BigInt.asUintN(64, ret);
|
|
14686
14726
|
}
|
|
14727
|
+
/**
|
|
14728
|
+
* Returns whether this asset invokes its faucet's callbacks.
|
|
14729
|
+
* @returns {AssetCallbackFlag}
|
|
14730
|
+
*/
|
|
14731
|
+
callbacks() {
|
|
14732
|
+
const ret = wasm.fungibleasset_callbacks(this.__wbg_ptr);
|
|
14733
|
+
return ret;
|
|
14734
|
+
}
|
|
14687
14735
|
/**
|
|
14688
14736
|
* Returns the faucet account that minted this asset.
|
|
14689
14737
|
* @returns {AccountId}
|
|
@@ -14693,7 +14741,58 @@ class FungibleAsset {
|
|
|
14693
14741
|
return AccountId.__wrap(ret);
|
|
14694
14742
|
}
|
|
14695
14743
|
/**
|
|
14696
|
-
*
|
|
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.
|
|
14697
14796
|
* @returns {Word}
|
|
14698
14797
|
*/
|
|
14699
14798
|
intoWord() {
|
|
@@ -14715,6 +14814,32 @@ class FungibleAsset {
|
|
|
14715
14814
|
FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
|
|
14716
14815
|
return this;
|
|
14717
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
|
+
}
|
|
14829
|
+
/**
|
|
14830
|
+
* Returns a copy of this asset carrying the given callback flag.
|
|
14831
|
+
*
|
|
14832
|
+
* The flag is part of the asset's vault key, so it must match the flag the issuing faucet
|
|
14833
|
+
* applies — an asset built with the wrong flag addresses a different vault slot than the one
|
|
14834
|
+
* holding the balance. The constructor always produces `Disabled`; pass `Enabled` only for
|
|
14835
|
+
* assets from a faucet that registers transfer policies.
|
|
14836
|
+
* @param {AssetCallbackFlag} callbacks
|
|
14837
|
+
* @returns {FungibleAsset}
|
|
14838
|
+
*/
|
|
14839
|
+
withCallbacks(callbacks) {
|
|
14840
|
+
const ret = wasm.fungibleasset_withCallbacks(this.__wbg_ptr, callbacks);
|
|
14841
|
+
return FungibleAsset.__wrap(ret);
|
|
14842
|
+
}
|
|
14718
14843
|
}
|
|
14719
14844
|
if (Symbol.dispose) FungibleAsset.prototype[Symbol.dispose] = FungibleAsset.prototype.free;
|
|
14720
14845
|
|
|
@@ -24479,7 +24604,7 @@ function __wbg_get_imports(memory) {
|
|
|
24479
24604
|
const ret = AccountStorage.__wrap(arg0);
|
|
24480
24605
|
return ret;
|
|
24481
24606
|
},
|
|
24482
|
-
|
|
24607
|
+
__wbg_addNoteTag_25cad61edb5d555a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
24483
24608
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24484
24609
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24485
24610
|
let v1;
|
|
@@ -24507,25 +24632,25 @@ function __wbg_get_imports(memory) {
|
|
|
24507
24632
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
24508
24633
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
24509
24634
|
}, arguments); },
|
|
24510
|
-
|
|
24635
|
+
__wbg_applyFullAccountState_2aeb79c033cb94e9: function(arg0, arg1, arg2) {
|
|
24511
24636
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
24512
24637
|
return ret;
|
|
24513
24638
|
},
|
|
24514
|
-
|
|
24639
|
+
__wbg_applySettingsMutations_e331196301c58c75: function(arg0, arg1, arg2, arg3) {
|
|
24515
24640
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24516
24641
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24517
24642
|
const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
|
|
24518
24643
|
return ret;
|
|
24519
24644
|
},
|
|
24520
|
-
|
|
24645
|
+
__wbg_applyStateSync_75d2fe4dcfcd8387: function(arg0, arg1, arg2) {
|
|
24521
24646
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
24522
24647
|
return ret;
|
|
24523
24648
|
},
|
|
24524
|
-
|
|
24649
|
+
__wbg_applyTransactionBatch_9d2069a58ecdeb08: function(arg0, arg1, arg2) {
|
|
24525
24650
|
const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
|
|
24526
24651
|
return ret;
|
|
24527
24652
|
},
|
|
24528
|
-
|
|
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) {
|
|
24529
24654
|
let deferred0_0;
|
|
24530
24655
|
let deferred0_1;
|
|
24531
24656
|
let deferred1_0;
|
|
@@ -24676,7 +24801,7 @@ function __wbg_get_imports(memory) {
|
|
|
24676
24801
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24677
24802
|
}
|
|
24678
24803
|
},
|
|
24679
|
-
|
|
24804
|
+
__wbg_exportStore_bf1688fbcaeac761: function(arg0, arg1) {
|
|
24680
24805
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
24681
24806
|
return ret;
|
|
24682
24807
|
},
|
|
@@ -24708,7 +24833,7 @@ function __wbg_get_imports(memory) {
|
|
|
24708
24833
|
const ret = FetchedNote.__wrap(arg0);
|
|
24709
24834
|
return ret;
|
|
24710
24835
|
},
|
|
24711
|
-
|
|
24836
|
+
__wbg_forceImportStore_bd5ce688ff80c047: function(arg0, arg1, arg2) {
|
|
24712
24837
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
24713
24838
|
return ret;
|
|
24714
24839
|
},
|
|
@@ -24732,7 +24857,7 @@ function __wbg_get_imports(memory) {
|
|
|
24732
24857
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
24733
24858
|
return ret;
|
|
24734
24859
|
},
|
|
24735
|
-
|
|
24860
|
+
__wbg_getAccountAddresses_44b5a6db696a9381: function(arg0, arg1, arg2, arg3) {
|
|
24736
24861
|
let deferred0_0;
|
|
24737
24862
|
let deferred0_1;
|
|
24738
24863
|
try {
|
|
@@ -24744,7 +24869,7 @@ function __wbg_get_imports(memory) {
|
|
|
24744
24869
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24745
24870
|
}
|
|
24746
24871
|
},
|
|
24747
|
-
|
|
24872
|
+
__wbg_getAccountAuthByPubKeyCommitment_98a8d726bce942e5: function(arg0, arg1, arg2, arg3) {
|
|
24748
24873
|
let deferred0_0;
|
|
24749
24874
|
let deferred0_1;
|
|
24750
24875
|
try {
|
|
@@ -24756,7 +24881,7 @@ function __wbg_get_imports(memory) {
|
|
|
24756
24881
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24757
24882
|
}
|
|
24758
24883
|
},
|
|
24759
|
-
|
|
24884
|
+
__wbg_getAccountCode_15c1a978217210a3: function(arg0, arg1, arg2, arg3) {
|
|
24760
24885
|
let deferred0_0;
|
|
24761
24886
|
let deferred0_1;
|
|
24762
24887
|
try {
|
|
@@ -24768,7 +24893,7 @@ function __wbg_get_imports(memory) {
|
|
|
24768
24893
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24769
24894
|
}
|
|
24770
24895
|
},
|
|
24771
|
-
|
|
24896
|
+
__wbg_getAccountHeaderByCommitment_6e856b122fb63445: function(arg0, arg1, arg2, arg3) {
|
|
24772
24897
|
let deferred0_0;
|
|
24773
24898
|
let deferred0_1;
|
|
24774
24899
|
try {
|
|
@@ -24780,7 +24905,7 @@ function __wbg_get_imports(memory) {
|
|
|
24780
24905
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24781
24906
|
}
|
|
24782
24907
|
},
|
|
24783
|
-
|
|
24908
|
+
__wbg_getAccountHeader_1cfea7b95b20687b: function(arg0, arg1, arg2, arg3) {
|
|
24784
24909
|
let deferred0_0;
|
|
24785
24910
|
let deferred0_1;
|
|
24786
24911
|
try {
|
|
@@ -24792,7 +24917,7 @@ function __wbg_get_imports(memory) {
|
|
|
24792
24917
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24793
24918
|
}
|
|
24794
24919
|
},
|
|
24795
|
-
|
|
24920
|
+
__wbg_getAccountIdByKeyCommitment_dc2e8d8d8a290ac9: function(arg0, arg1, arg2, arg3) {
|
|
24796
24921
|
let deferred0_0;
|
|
24797
24922
|
let deferred0_1;
|
|
24798
24923
|
try {
|
|
@@ -24804,11 +24929,11 @@ function __wbg_get_imports(memory) {
|
|
|
24804
24929
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24805
24930
|
}
|
|
24806
24931
|
},
|
|
24807
|
-
|
|
24932
|
+
__wbg_getAccountIds_0ce97765a3c31e7d: function(arg0, arg1) {
|
|
24808
24933
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
24809
24934
|
return ret;
|
|
24810
24935
|
},
|
|
24811
|
-
|
|
24936
|
+
__wbg_getAccountStorageMaps_09cb3c149afb2ab6: function(arg0, arg1, arg2, arg3) {
|
|
24812
24937
|
let deferred0_0;
|
|
24813
24938
|
let deferred0_1;
|
|
24814
24939
|
try {
|
|
@@ -24820,7 +24945,7 @@ function __wbg_get_imports(memory) {
|
|
|
24820
24945
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24821
24946
|
}
|
|
24822
24947
|
},
|
|
24823
|
-
|
|
24948
|
+
__wbg_getAccountStorage_5502bfe95b2eb790: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24824
24949
|
let deferred0_0;
|
|
24825
24950
|
let deferred0_1;
|
|
24826
24951
|
try {
|
|
@@ -24834,7 +24959,7 @@ function __wbg_get_imports(memory) {
|
|
|
24834
24959
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24835
24960
|
}
|
|
24836
24961
|
},
|
|
24837
|
-
|
|
24962
|
+
__wbg_getAccountVaultAssets_9519922d942fecee: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24838
24963
|
let deferred0_0;
|
|
24839
24964
|
let deferred0_1;
|
|
24840
24965
|
try {
|
|
@@ -24848,27 +24973,27 @@ function __wbg_get_imports(memory) {
|
|
|
24848
24973
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24849
24974
|
}
|
|
24850
24975
|
},
|
|
24851
|
-
|
|
24976
|
+
__wbg_getAllAccountHeaders_df840fc87d4bdec9: function(arg0, arg1) {
|
|
24852
24977
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
24853
24978
|
return ret;
|
|
24854
24979
|
},
|
|
24855
|
-
|
|
24980
|
+
__wbg_getBlockHeaders_5873b22bd7744156: function(arg0, arg1, arg2, arg3) {
|
|
24856
24981
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
24857
24982
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24858
24983
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
24859
24984
|
return ret;
|
|
24860
24985
|
},
|
|
24861
|
-
|
|
24986
|
+
__wbg_getCurrentBlockchainPeaks_f329c1684cabaf21: function(arg0, arg1) {
|
|
24862
24987
|
const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
|
|
24863
24988
|
return ret;
|
|
24864
24989
|
},
|
|
24865
|
-
|
|
24990
|
+
__wbg_getForeignAccountCode_626cc9a21065ce07: function(arg0, arg1, arg2, arg3) {
|
|
24866
24991
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24867
24992
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24868
24993
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
24869
24994
|
return ret;
|
|
24870
24995
|
},
|
|
24871
|
-
|
|
24996
|
+
__wbg_getInputNoteByOffset_437795f571f7c2fd: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
24872
24997
|
let deferred1_0;
|
|
24873
24998
|
let deferred1_1;
|
|
24874
24999
|
try {
|
|
@@ -24882,31 +25007,31 @@ function __wbg_get_imports(memory) {
|
|
|
24882
25007
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
24883
25008
|
}
|
|
24884
25009
|
},
|
|
24885
|
-
|
|
25010
|
+
__wbg_getInputNotesFromDetailsCommitments_e49ccdee208d1f22: function(arg0, arg1, arg2, arg3) {
|
|
24886
25011
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24887
25012
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24888
25013
|
const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
24889
25014
|
return ret;
|
|
24890
25015
|
},
|
|
24891
|
-
|
|
25016
|
+
__wbg_getInputNotesFromIds_057a1693a3b197c0: function(arg0, arg1, arg2, arg3) {
|
|
24892
25017
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24893
25018
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24894
25019
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24895
25020
|
return ret;
|
|
24896
25021
|
},
|
|
24897
|
-
|
|
25022
|
+
__wbg_getInputNotesFromNullifiers_afa84bb5844ca0f2: function(arg0, arg1, arg2, arg3) {
|
|
24898
25023
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24899
25024
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24900
25025
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24901
25026
|
return ret;
|
|
24902
25027
|
},
|
|
24903
|
-
|
|
25028
|
+
__wbg_getInputNotes_c22939005e704005: function(arg0, arg1, arg2, arg3) {
|
|
24904
25029
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24905
25030
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24906
25031
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24907
25032
|
return ret;
|
|
24908
25033
|
},
|
|
24909
|
-
|
|
25034
|
+
__wbg_getKeyCommitmentsByAccountId_a9d9f0e316e0b961: function(arg0, arg1, arg2, arg3) {
|
|
24910
25035
|
let deferred0_0;
|
|
24911
25036
|
let deferred0_1;
|
|
24912
25037
|
try {
|
|
@@ -24918,7 +25043,7 @@ function __wbg_get_imports(memory) {
|
|
|
24918
25043
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24919
25044
|
}
|
|
24920
25045
|
},
|
|
24921
|
-
|
|
25046
|
+
__wbg_getNoteScript_40c99e72d3a5347b: function(arg0, arg1, arg2, arg3) {
|
|
24922
25047
|
let deferred0_0;
|
|
24923
25048
|
let deferred0_1;
|
|
24924
25049
|
try {
|
|
@@ -24930,39 +25055,39 @@ function __wbg_get_imports(memory) {
|
|
|
24930
25055
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24931
25056
|
}
|
|
24932
25057
|
},
|
|
24933
|
-
|
|
25058
|
+
__wbg_getNoteTags_67063dd77a36d6b4: function(arg0, arg1) {
|
|
24934
25059
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
24935
25060
|
return ret;
|
|
24936
25061
|
},
|
|
24937
|
-
|
|
25062
|
+
__wbg_getOutputNotesFromDetailsCommitments_bdf7b0c9d2a5db36: function(arg0, arg1, arg2, arg3) {
|
|
24938
25063
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24939
25064
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24940
25065
|
const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
24941
25066
|
return ret;
|
|
24942
25067
|
},
|
|
24943
|
-
|
|
25068
|
+
__wbg_getOutputNotesFromIds_219945e5373d809b: function(arg0, arg1, arg2, arg3) {
|
|
24944
25069
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24945
25070
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24946
25071
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
24947
25072
|
return ret;
|
|
24948
25073
|
},
|
|
24949
|
-
|
|
25074
|
+
__wbg_getOutputNotesFromNullifiers_707ceecfe32e4a35: function(arg0, arg1, arg2, arg3) {
|
|
24950
25075
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24951
25076
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24952
25077
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
24953
25078
|
return ret;
|
|
24954
25079
|
},
|
|
24955
|
-
|
|
25080
|
+
__wbg_getOutputNotes_326a5aa0d3790050: function(arg0, arg1, arg2, arg3) {
|
|
24956
25081
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24957
25082
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24958
25083
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
24959
25084
|
return ret;
|
|
24960
25085
|
},
|
|
24961
|
-
|
|
25086
|
+
__wbg_getPartialBlockchainNodesAll_7cf9e7cf6f37f395: function(arg0, arg1) {
|
|
24962
25087
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
24963
25088
|
return ret;
|
|
24964
25089
|
},
|
|
24965
|
-
|
|
25090
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_e91098152297e0da: function(arg0, arg1, arg2, arg3) {
|
|
24966
25091
|
let deferred0_0;
|
|
24967
25092
|
let deferred0_1;
|
|
24968
25093
|
try {
|
|
@@ -24974,7 +25099,7 @@ function __wbg_get_imports(memory) {
|
|
|
24974
25099
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24975
25100
|
}
|
|
24976
25101
|
},
|
|
24977
|
-
|
|
25102
|
+
__wbg_getPartialBlockchainNodes_433475f2ec8b2171: function(arg0, arg1, arg2, arg3) {
|
|
24978
25103
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24979
25104
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24980
25105
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
@@ -24987,7 +25112,7 @@ function __wbg_get_imports(memory) {
|
|
|
24987
25112
|
const ret = arg0.getReader();
|
|
24988
25113
|
return ret;
|
|
24989
25114
|
}, arguments); },
|
|
24990
|
-
|
|
25115
|
+
__wbg_getSetting_e008c5a99f10e590: function(arg0, arg1, arg2, arg3) {
|
|
24991
25116
|
let deferred0_0;
|
|
24992
25117
|
let deferred0_1;
|
|
24993
25118
|
try {
|
|
@@ -24999,7 +25124,7 @@ function __wbg_get_imports(memory) {
|
|
|
24999
25124
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25000
25125
|
}
|
|
25001
25126
|
},
|
|
25002
|
-
|
|
25127
|
+
__wbg_getSyncHeight_ecfa19078de4c98f: function(arg0, arg1) {
|
|
25003
25128
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
25004
25129
|
return ret;
|
|
25005
25130
|
},
|
|
@@ -25007,15 +25132,15 @@ function __wbg_get_imports(memory) {
|
|
|
25007
25132
|
const ret = arg0.getTime();
|
|
25008
25133
|
return ret;
|
|
25009
25134
|
},
|
|
25010
|
-
|
|
25135
|
+
__wbg_getTrackedBlockHeaderNumbers_1cb8016a509ed0c4: function(arg0, arg1) {
|
|
25011
25136
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
25012
25137
|
return ret;
|
|
25013
25138
|
},
|
|
25014
|
-
|
|
25139
|
+
__wbg_getTrackedBlockHeaders_ea97bc37d74a875a: function(arg0, arg1) {
|
|
25015
25140
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
25016
25141
|
return ret;
|
|
25017
25142
|
},
|
|
25018
|
-
|
|
25143
|
+
__wbg_getTransactions_fbcf8488c75fde0d: function(arg0, arg1, arg2, arg3) {
|
|
25019
25144
|
let deferred0_0;
|
|
25020
25145
|
let deferred0_1;
|
|
25021
25146
|
try {
|
|
@@ -25027,7 +25152,7 @@ function __wbg_get_imports(memory) {
|
|
|
25027
25152
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25028
25153
|
}
|
|
25029
25154
|
},
|
|
25030
|
-
|
|
25155
|
+
__wbg_getUnspentInputNoteNullifiers_75ec5ab42ea5afa9: function(arg0, arg1) {
|
|
25031
25156
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
25032
25157
|
return ret;
|
|
25033
25158
|
},
|
|
@@ -25071,7 +25196,7 @@ function __wbg_get_imports(memory) {
|
|
|
25071
25196
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
25072
25197
|
return ret;
|
|
25073
25198
|
},
|
|
25074
|
-
|
|
25199
|
+
__wbg_insertAccountAddress_e8628627a138e81e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25075
25200
|
let deferred0_0;
|
|
25076
25201
|
let deferred0_1;
|
|
25077
25202
|
try {
|
|
@@ -25085,7 +25210,7 @@ function __wbg_get_imports(memory) {
|
|
|
25085
25210
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25086
25211
|
}
|
|
25087
25212
|
},
|
|
25088
|
-
|
|
25213
|
+
__wbg_insertAccountAuth_278a833f3fef3aca: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25089
25214
|
let deferred0_0;
|
|
25090
25215
|
let deferred0_1;
|
|
25091
25216
|
let deferred1_0;
|
|
@@ -25102,7 +25227,7 @@ function __wbg_get_imports(memory) {
|
|
|
25102
25227
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25103
25228
|
}
|
|
25104
25229
|
},
|
|
25105
|
-
|
|
25230
|
+
__wbg_insertAccountKeyMapping_05e2b0009cf1cfe3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25106
25231
|
let deferred0_0;
|
|
25107
25232
|
let deferred0_1;
|
|
25108
25233
|
let deferred1_0;
|
|
@@ -25119,13 +25244,13 @@ function __wbg_get_imports(memory) {
|
|
|
25119
25244
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25120
25245
|
}
|
|
25121
25246
|
},
|
|
25122
|
-
|
|
25247
|
+
__wbg_insertBlockHeader_d972fb92f29e7da7: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25123
25248
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
25124
25249
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
25125
25250
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
|
|
25126
25251
|
return ret;
|
|
25127
25252
|
},
|
|
25128
|
-
|
|
25253
|
+
__wbg_insertPartialBlockchainNodes_70af5f15aaab9f89: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25129
25254
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25130
25255
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25131
25256
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25133,7 +25258,7 @@ function __wbg_get_imports(memory) {
|
|
|
25133
25258
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
25134
25259
|
return ret;
|
|
25135
25260
|
},
|
|
25136
|
-
|
|
25261
|
+
__wbg_insertSetting_a1f83afe232d6b43: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25137
25262
|
let deferred0_0;
|
|
25138
25263
|
let deferred0_1;
|
|
25139
25264
|
try {
|
|
@@ -25147,7 +25272,7 @@ function __wbg_get_imports(memory) {
|
|
|
25147
25272
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25148
25273
|
}
|
|
25149
25274
|
},
|
|
25150
|
-
|
|
25275
|
+
__wbg_insertTransactionScript_4ca2858864a66866: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25151
25276
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25152
25277
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25153
25278
|
let v1;
|
|
@@ -25254,11 +25379,11 @@ function __wbg_get_imports(memory) {
|
|
|
25254
25379
|
const ret = arg0.length;
|
|
25255
25380
|
return ret;
|
|
25256
25381
|
},
|
|
25257
|
-
|
|
25382
|
+
__wbg_listSettingKeys_32703227794f5ddf: function(arg0, arg1) {
|
|
25258
25383
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
25259
25384
|
return ret;
|
|
25260
25385
|
},
|
|
25261
|
-
|
|
25386
|
+
__wbg_lockAccount_6847f6622cfbb360: function(arg0, arg1, arg2, arg3) {
|
|
25262
25387
|
let deferred0_0;
|
|
25263
25388
|
let deferred0_1;
|
|
25264
25389
|
try {
|
|
@@ -25477,7 +25602,7 @@ function __wbg_get_imports(memory) {
|
|
|
25477
25602
|
const ret = Array.of(arg0, arg1, arg2);
|
|
25478
25603
|
return ret;
|
|
25479
25604
|
},
|
|
25480
|
-
|
|
25605
|
+
__wbg_openDatabase_41d26d65ebf6caf0: function(arg0, arg1, arg2, arg3) {
|
|
25481
25606
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
25482
25607
|
return ret;
|
|
25483
25608
|
},
|
|
@@ -25511,7 +25636,7 @@ function __wbg_get_imports(memory) {
|
|
|
25511
25636
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
25512
25637
|
return ret;
|
|
25513
25638
|
},
|
|
25514
|
-
|
|
25639
|
+
__wbg_pruneAccountHistory_07a7e45174c9f37a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25515
25640
|
let deferred0_0;
|
|
25516
25641
|
let deferred0_1;
|
|
25517
25642
|
let deferred1_0;
|
|
@@ -25528,7 +25653,7 @@ function __wbg_get_imports(memory) {
|
|
|
25528
25653
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25529
25654
|
}
|
|
25530
25655
|
},
|
|
25531
|
-
|
|
25656
|
+
__wbg_pruneIrrelevantBlocks_94286980844c1214: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25532
25657
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25533
25658
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25534
25659
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25558,13 +25683,13 @@ function __wbg_get_imports(memory) {
|
|
|
25558
25683
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
25559
25684
|
arg0.releaseLock();
|
|
25560
25685
|
},
|
|
25561
|
-
|
|
25686
|
+
__wbg_removeAccountAddress_329baf02728f4c41: function(arg0, arg1, arg2, arg3) {
|
|
25562
25687
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25563
25688
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25564
25689
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
25565
25690
|
return ret;
|
|
25566
25691
|
},
|
|
25567
|
-
|
|
25692
|
+
__wbg_removeAccountAuth_603363308e6ae70b: function(arg0, arg1, arg2, arg3) {
|
|
25568
25693
|
let deferred0_0;
|
|
25569
25694
|
let deferred0_1;
|
|
25570
25695
|
try {
|
|
@@ -25576,7 +25701,7 @@ function __wbg_get_imports(memory) {
|
|
|
25576
25701
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25577
25702
|
}
|
|
25578
25703
|
},
|
|
25579
|
-
|
|
25704
|
+
__wbg_removeAllMappingsForKey_fbc7b61a67110568: function(arg0, arg1, arg2, arg3) {
|
|
25580
25705
|
let deferred0_0;
|
|
25581
25706
|
let deferred0_1;
|
|
25582
25707
|
try {
|
|
@@ -25588,7 +25713,7 @@ function __wbg_get_imports(memory) {
|
|
|
25588
25713
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25589
25714
|
}
|
|
25590
25715
|
},
|
|
25591
|
-
|
|
25716
|
+
__wbg_removeNoteTag_5bb25427e520f50b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
25592
25717
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25593
25718
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25594
25719
|
let v1;
|
|
@@ -25609,7 +25734,7 @@ function __wbg_get_imports(memory) {
|
|
|
25609
25734
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
|
|
25610
25735
|
return ret;
|
|
25611
25736
|
},
|
|
25612
|
-
|
|
25737
|
+
__wbg_removeSetting_51d62e3d24593afc: function(arg0, arg1, arg2, arg3) {
|
|
25613
25738
|
let deferred0_0;
|
|
25614
25739
|
let deferred0_1;
|
|
25615
25740
|
try {
|
|
@@ -25819,13 +25944,13 @@ function __wbg_get_imports(memory) {
|
|
|
25819
25944
|
const ret = TransactionSummary.__wrap(arg0);
|
|
25820
25945
|
return ret;
|
|
25821
25946
|
},
|
|
25822
|
-
|
|
25947
|
+
__wbg_undoAccountStates_b3c3c03f96aba29a: function(arg0, arg1, arg2, arg3) {
|
|
25823
25948
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25824
25949
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25825
25950
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
25826
25951
|
return ret;
|
|
25827
25952
|
},
|
|
25828
|
-
|
|
25953
|
+
__wbg_upsertAccountCode_a011479caf2f2773: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25829
25954
|
let deferred0_0;
|
|
25830
25955
|
let deferred0_1;
|
|
25831
25956
|
try {
|
|
@@ -25839,7 +25964,7 @@ function __wbg_get_imports(memory) {
|
|
|
25839
25964
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25840
25965
|
}
|
|
25841
25966
|
},
|
|
25842
|
-
|
|
25967
|
+
__wbg_upsertAccountRecord_313a9a93a9853a03: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
|
|
25843
25968
|
let deferred0_0;
|
|
25844
25969
|
let deferred0_1;
|
|
25845
25970
|
let deferred1_0;
|
|
@@ -25881,7 +26006,7 @@ function __wbg_get_imports(memory) {
|
|
|
25881
26006
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
25882
26007
|
}
|
|
25883
26008
|
},
|
|
25884
|
-
|
|
26009
|
+
__wbg_upsertAccountStorage_ea6d136c93fbd28c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25885
26010
|
let deferred0_0;
|
|
25886
26011
|
let deferred0_1;
|
|
25887
26012
|
try {
|
|
@@ -25895,7 +26020,7 @@ function __wbg_get_imports(memory) {
|
|
|
25895
26020
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25896
26021
|
}
|
|
25897
26022
|
},
|
|
25898
|
-
|
|
26023
|
+
__wbg_upsertForeignAccountCode_e9e22981c11ab8ec: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
25899
26024
|
let deferred0_0;
|
|
25900
26025
|
let deferred0_1;
|
|
25901
26026
|
let deferred2_0;
|
|
@@ -25914,7 +26039,7 @@ function __wbg_get_imports(memory) {
|
|
|
25914
26039
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
25915
26040
|
}
|
|
25916
26041
|
},
|
|
25917
|
-
|
|
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) {
|
|
25918
26043
|
let deferred0_0;
|
|
25919
26044
|
let deferred0_1;
|
|
25920
26045
|
let deferred6_0;
|
|
@@ -25963,7 +26088,7 @@ function __wbg_get_imports(memory) {
|
|
|
25963
26088
|
wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
|
|
25964
26089
|
}
|
|
25965
26090
|
},
|
|
25966
|
-
|
|
26091
|
+
__wbg_upsertNoteScript_e9617c5e4fc75fb0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25967
26092
|
let deferred0_0;
|
|
25968
26093
|
let deferred0_1;
|
|
25969
26094
|
try {
|
|
@@ -25977,7 +26102,7 @@ function __wbg_get_imports(memory) {
|
|
|
25977
26102
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25978
26103
|
}
|
|
25979
26104
|
},
|
|
25980
|
-
|
|
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) {
|
|
25981
26106
|
let deferred0_0;
|
|
25982
26107
|
let deferred0_1;
|
|
25983
26108
|
let deferred1_0;
|
|
@@ -26012,7 +26137,7 @@ function __wbg_get_imports(memory) {
|
|
|
26012
26137
|
wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
|
|
26013
26138
|
}
|
|
26014
26139
|
},
|
|
26015
|
-
|
|
26140
|
+
__wbg_upsertStorageMapEntries_91e646dab4d24d18: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26016
26141
|
let deferred0_0;
|
|
26017
26142
|
let deferred0_1;
|
|
26018
26143
|
try {
|
|
@@ -26026,7 +26151,7 @@ function __wbg_get_imports(memory) {
|
|
|
26026
26151
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26027
26152
|
}
|
|
26028
26153
|
},
|
|
26029
|
-
|
|
26154
|
+
__wbg_upsertTransactionRecord_e3f85f1b9f19136d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
26030
26155
|
let deferred0_0;
|
|
26031
26156
|
let deferred0_1;
|
|
26032
26157
|
try {
|
|
@@ -26047,7 +26172,7 @@ function __wbg_get_imports(memory) {
|
|
|
26047
26172
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26048
26173
|
}
|
|
26049
26174
|
},
|
|
26050
|
-
|
|
26175
|
+
__wbg_upsertVaultAssets_4ec8f231ecdc55e4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26051
26176
|
let deferred0_0;
|
|
26052
26177
|
let deferred0_1;
|
|
26053
26178
|
try {
|
|
@@ -26090,17 +26215,17 @@ function __wbg_get_imports(memory) {
|
|
|
26090
26215
|
return ret;
|
|
26091
26216
|
},
|
|
26092
26217
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
26093
|
-
// 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`.
|
|
26094
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_____);
|
|
26095
26220
|
return ret;
|
|
26096
26221
|
},
|
|
26097
26222
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
26098
|
-
// 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`.
|
|
26099
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_____);
|
|
26100
26225
|
return ret;
|
|
26101
26226
|
},
|
|
26102
26227
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
26103
|
-
// 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`.
|
|
26104
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______);
|
|
26105
26230
|
return ret;
|
|
26106
26231
|
},
|
|
@@ -27095,6 +27220,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
27095
27220
|
Address: Address,
|
|
27096
27221
|
AdviceInputs: AdviceInputs,
|
|
27097
27222
|
AdviceMap: AdviceMap,
|
|
27223
|
+
AssetCallbackFlag: AssetCallbackFlag,
|
|
27098
27224
|
AssetVault: AssetVault,
|
|
27099
27225
|
AuthFalcon512RpoMultisigConfig: AuthFalcon512RpoMultisigConfig,
|
|
27100
27226
|
AuthScheme: AuthScheme,
|
|
@@ -27237,5 +27363,5 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
27237
27363
|
});
|
|
27238
27364
|
|
|
27239
27365
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
27240
|
-
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, 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, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, initThreadPool, mtProbeAsync, mtProbeSync, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker , __wbg_init, module$1 as __wasm_url };
|
|
27241
|
-
//# sourceMappingURL=Cargo-
|
|
27366
|
+
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, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, initThreadPool, mtProbeAsync, mtProbeSync, parallelSumBench, rayonThreadCount, sequentialSumBench, setupLogging, wbg_rayon_PoolBuilder, wbg_rayon_start_worker , __wbg_init, module$1 as __wasm_url };
|
|
27367
|
+
//# sourceMappingURL=Cargo-CvYxNO9A.js.map
|