@miden-sdk/miden-sdk 0.14.4 → 0.14.5
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/{Cargo-Bwjf7IkR.js → Cargo-M3382VZc.js} +163 -103
- package/dist/Cargo-M3382VZc.js.map +1 -0
- package/dist/api-types.d.ts +18 -2
- package/dist/assets/miden_client_web.wasm +0 -0
- package/dist/crates/miden_client_web.d.ts +96 -0
- package/dist/eager.js +2 -2
- package/dist/index.d.ts +7 -0
- package/dist/index.js +73 -8
- package/dist/index.js.map +1 -1
- package/dist/wasm.js +1 -1
- package/dist/workers/{Cargo-Bwjf7IkR-Cz54YuXA.js → Cargo-M3382VZc-Dfw4tXwh.js} +163 -103
- package/dist/workers/Cargo-M3382VZc-Dfw4tXwh.js.map +1 -0
- package/dist/workers/assets/miden_client_web.wasm +0 -0
- package/dist/workers/web-client-methods-worker.js +164 -104
- package/dist/workers/web-client-methods-worker.js.map +1 -1
- package/dist/workers/web-client-methods-worker.module.js +1 -1
- package/dist/workers/web-client-methods-worker.module.js.map +1 -1
- package/package.json +1 -1
- package/dist/Cargo-Bwjf7IkR.js.map +0 -1
- package/dist/workers/Cargo-Bwjf7IkR-Cz54YuXA.js.map +0 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
async function loadWasm() {
|
|
6
6
|
let wasmModule;
|
|
7
7
|
if (!undefined || (undefined && !undefined.SSR)) {
|
|
8
|
-
wasmModule = await Promise.resolve().then(function () { return
|
|
8
|
+
wasmModule = await Promise.resolve().then(function () { return CargoM3382VZc; });
|
|
9
9
|
// The Cargo glue's __wbg_init TLA is stripped by the rollup build to
|
|
10
10
|
// prevent blocking WKWebView module evaluation. Call it explicitly here
|
|
11
11
|
// with the WASM URL that the Cargo glue pre-resolves (relative to its
|
|
@@ -10514,13 +10514,18 @@ class AccountArray {
|
|
|
10514
10514
|
wasm.accountarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
10515
10515
|
}
|
|
10516
10516
|
/**
|
|
10517
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
10518
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
10519
|
+
* after the call. Without this borrow, passing `elem` by
|
|
10520
|
+
* value would move the underlying Rust value out of the
|
|
10521
|
+
* caller's JS handle and any subsequent method on it would
|
|
10522
|
+
* panic with `"null pointer passed to rust"`.
|
|
10517
10523
|
* @param {number} index
|
|
10518
10524
|
* @param {Account} elem
|
|
10519
10525
|
*/
|
|
10520
10526
|
replaceAt(index, elem) {
|
|
10521
10527
|
_assertClass(elem, Account);
|
|
10522
|
-
|
|
10523
|
-
const ret = wasm.accountarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
10528
|
+
const ret = wasm.accountarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
10524
10529
|
if (ret[1]) {
|
|
10525
10530
|
throw takeFromExternrefTable0(ret[0]);
|
|
10526
10531
|
}
|
|
@@ -11378,13 +11383,18 @@ class AccountIdArray {
|
|
|
11378
11383
|
wasm.accountidarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
11379
11384
|
}
|
|
11380
11385
|
/**
|
|
11386
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
11387
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
11388
|
+
* after the call. Without this borrow, passing `elem` by
|
|
11389
|
+
* value would move the underlying Rust value out of the
|
|
11390
|
+
* caller's JS handle and any subsequent method on it would
|
|
11391
|
+
* panic with `"null pointer passed to rust"`.
|
|
11381
11392
|
* @param {number} index
|
|
11382
11393
|
* @param {AccountId} elem
|
|
11383
11394
|
*/
|
|
11384
11395
|
replaceAt(index, elem) {
|
|
11385
11396
|
_assertClass(elem, AccountId);
|
|
11386
|
-
|
|
11387
|
-
const ret = wasm.accountidarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
11397
|
+
const ret = wasm.accountidarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
11388
11398
|
if (ret[1]) {
|
|
11389
11399
|
throw takeFromExternrefTable0(ret[0]);
|
|
11390
11400
|
}
|
|
@@ -13521,13 +13531,18 @@ class FeltArray {
|
|
|
13521
13531
|
wasm.feltarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
13522
13532
|
}
|
|
13523
13533
|
/**
|
|
13534
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
13535
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
13536
|
+
* after the call. Without this borrow, passing `elem` by
|
|
13537
|
+
* value would move the underlying Rust value out of the
|
|
13538
|
+
* caller's JS handle and any subsequent method on it would
|
|
13539
|
+
* panic with `"null pointer passed to rust"`.
|
|
13524
13540
|
* @param {number} index
|
|
13525
13541
|
* @param {Felt} elem
|
|
13526
13542
|
*/
|
|
13527
13543
|
replaceAt(index, elem) {
|
|
13528
13544
|
_assertClass(elem, Felt);
|
|
13529
|
-
|
|
13530
|
-
const ret = wasm.feltarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
13545
|
+
const ret = wasm.feltarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
13531
13546
|
if (ret[1]) {
|
|
13532
13547
|
throw takeFromExternrefTable0(ret[0]);
|
|
13533
13548
|
}
|
|
@@ -13895,13 +13910,18 @@ class ForeignAccountArray {
|
|
|
13895
13910
|
wasm.foreignaccountarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
13896
13911
|
}
|
|
13897
13912
|
/**
|
|
13913
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
13914
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
13915
|
+
* after the call. Without this borrow, passing `elem` by
|
|
13916
|
+
* value would move the underlying Rust value out of the
|
|
13917
|
+
* caller's JS handle and any subsequent method on it would
|
|
13918
|
+
* panic with `"null pointer passed to rust"`.
|
|
13898
13919
|
* @param {number} index
|
|
13899
13920
|
* @param {ForeignAccount} elem
|
|
13900
13921
|
*/
|
|
13901
13922
|
replaceAt(index, elem) {
|
|
13902
13923
|
_assertClass(elem, ForeignAccount);
|
|
13903
|
-
|
|
13904
|
-
const ret = wasm.foreignaccountarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
13924
|
+
const ret = wasm.foreignaccountarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
13905
13925
|
if (ret[1]) {
|
|
13906
13926
|
throw takeFromExternrefTable0(ret[0]);
|
|
13907
13927
|
}
|
|
@@ -15878,13 +15898,18 @@ class NoteAndArgsArray {
|
|
|
15878
15898
|
wasm.noteandargsarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
15879
15899
|
}
|
|
15880
15900
|
/**
|
|
15901
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
15902
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
15903
|
+
* after the call. Without this borrow, passing `elem` by
|
|
15904
|
+
* value would move the underlying Rust value out of the
|
|
15905
|
+
* caller's JS handle and any subsequent method on it would
|
|
15906
|
+
* panic with `"null pointer passed to rust"`.
|
|
15881
15907
|
* @param {number} index
|
|
15882
15908
|
* @param {NoteAndArgs} elem
|
|
15883
15909
|
*/
|
|
15884
15910
|
replaceAt(index, elem) {
|
|
15885
15911
|
_assertClass(elem, NoteAndArgs);
|
|
15886
|
-
|
|
15887
|
-
const ret = wasm.noteandargsarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
15912
|
+
const ret = wasm.noteandargsarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
15888
15913
|
if (ret[1]) {
|
|
15889
15914
|
throw takeFromExternrefTable0(ret[0]);
|
|
15890
15915
|
}
|
|
@@ -15948,13 +15973,18 @@ class NoteArray {
|
|
|
15948
15973
|
wasm.notearray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
15949
15974
|
}
|
|
15950
15975
|
/**
|
|
15976
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
15977
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
15978
|
+
* after the call. Without this borrow, passing `elem` by
|
|
15979
|
+
* value would move the underlying Rust value out of the
|
|
15980
|
+
* caller's JS handle and any subsequent method on it would
|
|
15981
|
+
* panic with `"null pointer passed to rust"`.
|
|
15951
15982
|
* @param {number} index
|
|
15952
15983
|
* @param {Note} elem
|
|
15953
15984
|
*/
|
|
15954
15985
|
replaceAt(index, elem) {
|
|
15955
15986
|
_assertClass(elem, Note);
|
|
15956
|
-
|
|
15957
|
-
const ret = wasm.notearray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
15987
|
+
const ret = wasm.notearray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
15958
15988
|
if (ret[1]) {
|
|
15959
15989
|
throw takeFromExternrefTable0(ret[0]);
|
|
15960
15990
|
}
|
|
@@ -16525,13 +16555,18 @@ class NoteDetailsAndTagArray {
|
|
|
16525
16555
|
wasm.notedetailsandtagarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
16526
16556
|
}
|
|
16527
16557
|
/**
|
|
16558
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
16559
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
16560
|
+
* after the call. Without this borrow, passing `elem` by
|
|
16561
|
+
* value would move the underlying Rust value out of the
|
|
16562
|
+
* caller's JS handle and any subsequent method on it would
|
|
16563
|
+
* panic with `"null pointer passed to rust"`.
|
|
16528
16564
|
* @param {number} index
|
|
16529
16565
|
* @param {NoteDetailsAndTag} elem
|
|
16530
16566
|
*/
|
|
16531
16567
|
replaceAt(index, elem) {
|
|
16532
16568
|
_assertClass(elem, NoteDetailsAndTag);
|
|
16533
|
-
|
|
16534
|
-
const ret = wasm.notedetailsandtagarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
16569
|
+
const ret = wasm.notedetailsandtagarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
16535
16570
|
if (ret[1]) {
|
|
16536
16571
|
throw takeFromExternrefTable0(ret[0]);
|
|
16537
16572
|
}
|
|
@@ -17091,13 +17126,18 @@ class NoteIdAndArgsArray {
|
|
|
17091
17126
|
wasm.noteidandargsarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
17092
17127
|
}
|
|
17093
17128
|
/**
|
|
17129
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
17130
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
17131
|
+
* after the call. Without this borrow, passing `elem` by
|
|
17132
|
+
* value would move the underlying Rust value out of the
|
|
17133
|
+
* caller's JS handle and any subsequent method on it would
|
|
17134
|
+
* panic with `"null pointer passed to rust"`.
|
|
17094
17135
|
* @param {number} index
|
|
17095
17136
|
* @param {NoteIdAndArgs} elem
|
|
17096
17137
|
*/
|
|
17097
17138
|
replaceAt(index, elem) {
|
|
17098
17139
|
_assertClass(elem, NoteIdAndArgs);
|
|
17099
|
-
|
|
17100
|
-
const ret = wasm.noteidandargsarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
17140
|
+
const ret = wasm.noteidandargsarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
17101
17141
|
if (ret[1]) {
|
|
17102
17142
|
throw takeFromExternrefTable0(ret[0]);
|
|
17103
17143
|
}
|
|
@@ -17423,13 +17463,18 @@ class NoteRecipientArray {
|
|
|
17423
17463
|
wasm.noterecipientarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
17424
17464
|
}
|
|
17425
17465
|
/**
|
|
17466
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
17467
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
17468
|
+
* after the call. Without this borrow, passing `elem` by
|
|
17469
|
+
* value would move the underlying Rust value out of the
|
|
17470
|
+
* caller's JS handle and any subsequent method on it would
|
|
17471
|
+
* panic with `"null pointer passed to rust"`.
|
|
17426
17472
|
* @param {number} index
|
|
17427
17473
|
* @param {NoteRecipient} elem
|
|
17428
17474
|
*/
|
|
17429
17475
|
replaceAt(index, elem) {
|
|
17430
17476
|
_assertClass(elem, NoteRecipient);
|
|
17431
|
-
|
|
17432
|
-
const ret = wasm.noterecipientarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
17477
|
+
const ret = wasm.noterecipientarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
17433
17478
|
if (ret[1]) {
|
|
17434
17479
|
throw takeFromExternrefTable0(ret[0]);
|
|
17435
17480
|
}
|
|
@@ -17964,13 +18009,18 @@ class OutputNoteArray {
|
|
|
17964
18009
|
wasm.outputnotearray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
17965
18010
|
}
|
|
17966
18011
|
/**
|
|
18012
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
18013
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
18014
|
+
* after the call. Without this borrow, passing `elem` by
|
|
18015
|
+
* value would move the underlying Rust value out of the
|
|
18016
|
+
* caller's JS handle and any subsequent method on it would
|
|
18017
|
+
* panic with `"null pointer passed to rust"`.
|
|
17967
18018
|
* @param {number} index
|
|
17968
18019
|
* @param {OutputNote} elem
|
|
17969
18020
|
*/
|
|
17970
18021
|
replaceAt(index, elem) {
|
|
17971
18022
|
_assertClass(elem, OutputNote);
|
|
17972
|
-
|
|
17973
|
-
const ret = wasm.outputnotearray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
18023
|
+
const ret = wasm.outputnotearray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
17974
18024
|
if (ret[1]) {
|
|
17975
18025
|
throw takeFromExternrefTable0(ret[0]);
|
|
17976
18026
|
}
|
|
@@ -20030,13 +20080,18 @@ class StorageSlotArray {
|
|
|
20030
20080
|
wasm.storageslotarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
20031
20081
|
}
|
|
20032
20082
|
/**
|
|
20083
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
20084
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
20085
|
+
* after the call. Without this borrow, passing `elem` by
|
|
20086
|
+
* value would move the underlying Rust value out of the
|
|
20087
|
+
* caller's JS handle and any subsequent method on it would
|
|
20088
|
+
* panic with `"null pointer passed to rust"`.
|
|
20033
20089
|
* @param {number} index
|
|
20034
20090
|
* @param {StorageSlot} elem
|
|
20035
20091
|
*/
|
|
20036
20092
|
replaceAt(index, elem) {
|
|
20037
20093
|
_assertClass(elem, StorageSlot);
|
|
20038
|
-
|
|
20039
|
-
const ret = wasm.storageslotarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
20094
|
+
const ret = wasm.storageslotarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
20040
20095
|
if (ret[1]) {
|
|
20041
20096
|
throw takeFromExternrefTable0(ret[0]);
|
|
20042
20097
|
}
|
|
@@ -21145,13 +21200,18 @@ class TransactionScriptInputPairArray {
|
|
|
21145
21200
|
wasm.transactionscriptinputpairarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
21146
21201
|
}
|
|
21147
21202
|
/**
|
|
21203
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
21204
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
21205
|
+
* after the call. Without this borrow, passing `elem` by
|
|
21206
|
+
* value would move the underlying Rust value out of the
|
|
21207
|
+
* caller's JS handle and any subsequent method on it would
|
|
21208
|
+
* panic with `"null pointer passed to rust"`.
|
|
21148
21209
|
* @param {number} index
|
|
21149
21210
|
* @param {TransactionScriptInputPair} elem
|
|
21150
21211
|
*/
|
|
21151
21212
|
replaceAt(index, elem) {
|
|
21152
21213
|
_assertClass(elem, TransactionScriptInputPair);
|
|
21153
|
-
|
|
21154
|
-
const ret = wasm.transactionscriptinputpairarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
21214
|
+
const ret = wasm.transactionscriptinputpairarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
21155
21215
|
if (ret[1]) {
|
|
21156
21216
|
throw takeFromExternrefTable0(ret[0]);
|
|
21157
21217
|
}
|
|
@@ -22712,7 +22772,7 @@ function __wbg_get_imports() {
|
|
|
22712
22772
|
const ret = AccountStorage.__wrap(arg0);
|
|
22713
22773
|
return ret;
|
|
22714
22774
|
},
|
|
22715
|
-
|
|
22775
|
+
__wbg_addNoteTag_973e2e4a9b348c78: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22716
22776
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22717
22777
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22718
22778
|
let v1;
|
|
@@ -22735,15 +22795,15 @@ function __wbg_get_imports() {
|
|
|
22735
22795
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
22736
22796
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
22737
22797
|
}, arguments); },
|
|
22738
|
-
|
|
22798
|
+
__wbg_applyFullAccountState_e742f2e18c9269eb: function(arg0, arg1, arg2) {
|
|
22739
22799
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
22740
22800
|
return ret;
|
|
22741
22801
|
},
|
|
22742
|
-
|
|
22802
|
+
__wbg_applyStateSync_11120f9db91440ca: function(arg0, arg1, arg2) {
|
|
22743
22803
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
22744
22804
|
return ret;
|
|
22745
22805
|
},
|
|
22746
|
-
|
|
22806
|
+
__wbg_applyTransactionDelta_06bf0e0618a0fbbc: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
22747
22807
|
let deferred0_0;
|
|
22748
22808
|
let deferred0_1;
|
|
22749
22809
|
let deferred1_0;
|
|
@@ -22878,7 +22938,7 @@ function __wbg_get_imports() {
|
|
|
22878
22938
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22879
22939
|
}
|
|
22880
22940
|
},
|
|
22881
|
-
|
|
22941
|
+
__wbg_exportStore_52bd7ea33e1e5d54: function(arg0, arg1) {
|
|
22882
22942
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
22883
22943
|
return ret;
|
|
22884
22944
|
},
|
|
@@ -22910,7 +22970,7 @@ function __wbg_get_imports() {
|
|
|
22910
22970
|
const ret = FetchedNote.__wrap(arg0);
|
|
22911
22971
|
return ret;
|
|
22912
22972
|
},
|
|
22913
|
-
|
|
22973
|
+
__wbg_forceImportStore_64d44c2df05ad10d: function(arg0, arg1, arg2) {
|
|
22914
22974
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
22915
22975
|
return ret;
|
|
22916
22976
|
},
|
|
@@ -22930,7 +22990,7 @@ function __wbg_get_imports() {
|
|
|
22930
22990
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
22931
22991
|
return ret;
|
|
22932
22992
|
},
|
|
22933
|
-
|
|
22993
|
+
__wbg_getAccountAddresses_5a86706a5bdd3c7a: function(arg0, arg1, arg2, arg3) {
|
|
22934
22994
|
let deferred0_0;
|
|
22935
22995
|
let deferred0_1;
|
|
22936
22996
|
try {
|
|
@@ -22942,7 +23002,7 @@ function __wbg_get_imports() {
|
|
|
22942
23002
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22943
23003
|
}
|
|
22944
23004
|
},
|
|
22945
|
-
|
|
23005
|
+
__wbg_getAccountAuthByPubKeyCommitment_0247d03650eada1a: function(arg0, arg1, arg2, arg3) {
|
|
22946
23006
|
let deferred0_0;
|
|
22947
23007
|
let deferred0_1;
|
|
22948
23008
|
try {
|
|
@@ -22954,7 +23014,7 @@ function __wbg_get_imports() {
|
|
|
22954
23014
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22955
23015
|
}
|
|
22956
23016
|
},
|
|
22957
|
-
|
|
23017
|
+
__wbg_getAccountCode_48a9c8a2971d2e92: function(arg0, arg1, arg2, arg3) {
|
|
22958
23018
|
let deferred0_0;
|
|
22959
23019
|
let deferred0_1;
|
|
22960
23020
|
try {
|
|
@@ -22966,7 +23026,7 @@ function __wbg_get_imports() {
|
|
|
22966
23026
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22967
23027
|
}
|
|
22968
23028
|
},
|
|
22969
|
-
|
|
23029
|
+
__wbg_getAccountHeaderByCommitment_b30143794295f784: function(arg0, arg1, arg2, arg3) {
|
|
22970
23030
|
let deferred0_0;
|
|
22971
23031
|
let deferred0_1;
|
|
22972
23032
|
try {
|
|
@@ -22978,7 +23038,7 @@ function __wbg_get_imports() {
|
|
|
22978
23038
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22979
23039
|
}
|
|
22980
23040
|
},
|
|
22981
|
-
|
|
23041
|
+
__wbg_getAccountHeader_c9940b3934df4673: function(arg0, arg1, arg2, arg3) {
|
|
22982
23042
|
let deferred0_0;
|
|
22983
23043
|
let deferred0_1;
|
|
22984
23044
|
try {
|
|
@@ -22990,7 +23050,7 @@ function __wbg_get_imports() {
|
|
|
22990
23050
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22991
23051
|
}
|
|
22992
23052
|
},
|
|
22993
|
-
|
|
23053
|
+
__wbg_getAccountIdByKeyCommitment_fe581761272afe1d: function(arg0, arg1, arg2, arg3) {
|
|
22994
23054
|
let deferred0_0;
|
|
22995
23055
|
let deferred0_1;
|
|
22996
23056
|
try {
|
|
@@ -23002,11 +23062,11 @@ function __wbg_get_imports() {
|
|
|
23002
23062
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23003
23063
|
}
|
|
23004
23064
|
},
|
|
23005
|
-
|
|
23065
|
+
__wbg_getAccountIds_c9d6a7a3dd28e48b: function(arg0, arg1) {
|
|
23006
23066
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
23007
23067
|
return ret;
|
|
23008
23068
|
},
|
|
23009
|
-
|
|
23069
|
+
__wbg_getAccountStorageMaps_6d8adf5a2b5dbc83: function(arg0, arg1, arg2, arg3) {
|
|
23010
23070
|
let deferred0_0;
|
|
23011
23071
|
let deferred0_1;
|
|
23012
23072
|
try {
|
|
@@ -23018,7 +23078,7 @@ function __wbg_get_imports() {
|
|
|
23018
23078
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23019
23079
|
}
|
|
23020
23080
|
},
|
|
23021
|
-
|
|
23081
|
+
__wbg_getAccountStorage_b342960a6c7336dd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23022
23082
|
let deferred0_0;
|
|
23023
23083
|
let deferred0_1;
|
|
23024
23084
|
try {
|
|
@@ -23032,7 +23092,7 @@ function __wbg_get_imports() {
|
|
|
23032
23092
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23033
23093
|
}
|
|
23034
23094
|
},
|
|
23035
|
-
|
|
23095
|
+
__wbg_getAccountVaultAssets_18d0ffa14548039c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23036
23096
|
let deferred0_0;
|
|
23037
23097
|
let deferred0_1;
|
|
23038
23098
|
try {
|
|
@@ -23046,23 +23106,23 @@ function __wbg_get_imports() {
|
|
|
23046
23106
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23047
23107
|
}
|
|
23048
23108
|
},
|
|
23049
|
-
|
|
23109
|
+
__wbg_getAllAccountHeaders_172e80227d0a3aa7: function(arg0, arg1) {
|
|
23050
23110
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
23051
23111
|
return ret;
|
|
23052
23112
|
},
|
|
23053
|
-
|
|
23113
|
+
__wbg_getBlockHeaders_e163d81e24b97494: function(arg0, arg1, arg2, arg3) {
|
|
23054
23114
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
23055
23115
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23056
23116
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
23057
23117
|
return ret;
|
|
23058
23118
|
},
|
|
23059
|
-
|
|
23119
|
+
__wbg_getForeignAccountCode_594181ed34b498da: function(arg0, arg1, arg2, arg3) {
|
|
23060
23120
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23061
23121
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23062
23122
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
23063
23123
|
return ret;
|
|
23064
23124
|
},
|
|
23065
|
-
|
|
23125
|
+
__wbg_getInputNoteByOffset_833996e034b6ec72: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
23066
23126
|
let deferred1_0;
|
|
23067
23127
|
let deferred1_1;
|
|
23068
23128
|
try {
|
|
@@ -23076,25 +23136,25 @@ function __wbg_get_imports() {
|
|
|
23076
23136
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23077
23137
|
}
|
|
23078
23138
|
},
|
|
23079
|
-
|
|
23139
|
+
__wbg_getInputNotesFromIds_56764ba02bfc0f58: function(arg0, arg1, arg2, arg3) {
|
|
23080
23140
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23081
23141
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23082
23142
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23083
23143
|
return ret;
|
|
23084
23144
|
},
|
|
23085
|
-
|
|
23145
|
+
__wbg_getInputNotesFromNullifiers_63c235a8ef0d1ed8: function(arg0, arg1, arg2, arg3) {
|
|
23086
23146
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23087
23147
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23088
23148
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23089
23149
|
return ret;
|
|
23090
23150
|
},
|
|
23091
|
-
|
|
23151
|
+
__wbg_getInputNotes_f31dd0359864fba4: function(arg0, arg1, arg2, arg3) {
|
|
23092
23152
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23093
23153
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23094
23154
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23095
23155
|
return ret;
|
|
23096
23156
|
},
|
|
23097
|
-
|
|
23157
|
+
__wbg_getKeyCommitmentsByAccountId_e0f8d3379c7cfd44: function(arg0, arg1, arg2, arg3) {
|
|
23098
23158
|
let deferred0_0;
|
|
23099
23159
|
let deferred0_1;
|
|
23100
23160
|
try {
|
|
@@ -23106,7 +23166,7 @@ function __wbg_get_imports() {
|
|
|
23106
23166
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23107
23167
|
}
|
|
23108
23168
|
},
|
|
23109
|
-
|
|
23169
|
+
__wbg_getNoteScript_7c840c12ece3407a: function(arg0, arg1, arg2, arg3) {
|
|
23110
23170
|
let deferred0_0;
|
|
23111
23171
|
let deferred0_1;
|
|
23112
23172
|
try {
|
|
@@ -23118,33 +23178,33 @@ function __wbg_get_imports() {
|
|
|
23118
23178
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23119
23179
|
}
|
|
23120
23180
|
},
|
|
23121
|
-
|
|
23181
|
+
__wbg_getNoteTags_3e534d0288cc279d: function(arg0, arg1) {
|
|
23122
23182
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
23123
23183
|
return ret;
|
|
23124
23184
|
},
|
|
23125
|
-
|
|
23185
|
+
__wbg_getOutputNotesFromIds_ca9334740d5ad794: function(arg0, arg1, arg2, arg3) {
|
|
23126
23186
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23127
23187
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23128
23188
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
23129
23189
|
return ret;
|
|
23130
23190
|
},
|
|
23131
|
-
|
|
23191
|
+
__wbg_getOutputNotesFromNullifiers_1b3743a61421690b: function(arg0, arg1, arg2, arg3) {
|
|
23132
23192
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23133
23193
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23134
23194
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
23135
23195
|
return ret;
|
|
23136
23196
|
},
|
|
23137
|
-
|
|
23197
|
+
__wbg_getOutputNotes_50cb1e0540aedca0: function(arg0, arg1, arg2, arg3) {
|
|
23138
23198
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23139
23199
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23140
23200
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
23141
23201
|
return ret;
|
|
23142
23202
|
},
|
|
23143
|
-
|
|
23203
|
+
__wbg_getPartialBlockchainNodesAll_fd7362a9062e367a: function(arg0, arg1) {
|
|
23144
23204
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
23145
23205
|
return ret;
|
|
23146
23206
|
},
|
|
23147
|
-
|
|
23207
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_b66e50c0ebf4e09c: function(arg0, arg1, arg2, arg3) {
|
|
23148
23208
|
let deferred0_0;
|
|
23149
23209
|
let deferred0_1;
|
|
23150
23210
|
try {
|
|
@@ -23156,13 +23216,13 @@ function __wbg_get_imports() {
|
|
|
23156
23216
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23157
23217
|
}
|
|
23158
23218
|
},
|
|
23159
|
-
|
|
23219
|
+
__wbg_getPartialBlockchainNodes_ba084ae0138e9b85: function(arg0, arg1, arg2, arg3) {
|
|
23160
23220
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23161
23221
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23162
23222
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
23163
23223
|
return ret;
|
|
23164
23224
|
},
|
|
23165
|
-
|
|
23225
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_a27d74f0afd8ebd5: function(arg0, arg1, arg2) {
|
|
23166
23226
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
23167
23227
|
return ret;
|
|
23168
23228
|
},
|
|
@@ -23173,7 +23233,7 @@ function __wbg_get_imports() {
|
|
|
23173
23233
|
const ret = arg0.getReader();
|
|
23174
23234
|
return ret;
|
|
23175
23235
|
}, arguments); },
|
|
23176
|
-
|
|
23236
|
+
__wbg_getSetting_d758a0c1a1ef754d: function(arg0, arg1, arg2, arg3) {
|
|
23177
23237
|
let deferred0_0;
|
|
23178
23238
|
let deferred0_1;
|
|
23179
23239
|
try {
|
|
@@ -23185,7 +23245,7 @@ function __wbg_get_imports() {
|
|
|
23185
23245
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23186
23246
|
}
|
|
23187
23247
|
},
|
|
23188
|
-
|
|
23248
|
+
__wbg_getSyncHeight_bc5e18a830512fb9: function(arg0, arg1) {
|
|
23189
23249
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
23190
23250
|
return ret;
|
|
23191
23251
|
},
|
|
@@ -23193,15 +23253,15 @@ function __wbg_get_imports() {
|
|
|
23193
23253
|
const ret = arg0.getTime();
|
|
23194
23254
|
return ret;
|
|
23195
23255
|
},
|
|
23196
|
-
|
|
23256
|
+
__wbg_getTrackedBlockHeaderNumbers_efa442cb6852b46a: function(arg0, arg1) {
|
|
23197
23257
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
23198
23258
|
return ret;
|
|
23199
23259
|
},
|
|
23200
|
-
|
|
23260
|
+
__wbg_getTrackedBlockHeaders_81a15d93c856de82: function(arg0, arg1) {
|
|
23201
23261
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
23202
23262
|
return ret;
|
|
23203
23263
|
},
|
|
23204
|
-
|
|
23264
|
+
__wbg_getTransactions_0d020f186d88801a: function(arg0, arg1, arg2, arg3) {
|
|
23205
23265
|
let deferred0_0;
|
|
23206
23266
|
let deferred0_1;
|
|
23207
23267
|
try {
|
|
@@ -23213,7 +23273,7 @@ function __wbg_get_imports() {
|
|
|
23213
23273
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23214
23274
|
}
|
|
23215
23275
|
},
|
|
23216
|
-
|
|
23276
|
+
__wbg_getUnspentInputNoteNullifiers_bc2801eb7f967f9e: function(arg0, arg1) {
|
|
23217
23277
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
23218
23278
|
return ret;
|
|
23219
23279
|
},
|
|
@@ -23257,7 +23317,7 @@ function __wbg_get_imports() {
|
|
|
23257
23317
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
23258
23318
|
return ret;
|
|
23259
23319
|
},
|
|
23260
|
-
|
|
23320
|
+
__wbg_insertAccountAddress_cad95e96d090ae37: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23261
23321
|
let deferred0_0;
|
|
23262
23322
|
let deferred0_1;
|
|
23263
23323
|
try {
|
|
@@ -23271,7 +23331,7 @@ function __wbg_get_imports() {
|
|
|
23271
23331
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23272
23332
|
}
|
|
23273
23333
|
},
|
|
23274
|
-
|
|
23334
|
+
__wbg_insertAccountAuth_3ccbf13a84d72de0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23275
23335
|
let deferred0_0;
|
|
23276
23336
|
let deferred0_1;
|
|
23277
23337
|
let deferred1_0;
|
|
@@ -23288,7 +23348,7 @@ function __wbg_get_imports() {
|
|
|
23288
23348
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23289
23349
|
}
|
|
23290
23350
|
},
|
|
23291
|
-
|
|
23351
|
+
__wbg_insertAccountKeyMapping_90521e58351da78b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23292
23352
|
let deferred0_0;
|
|
23293
23353
|
let deferred0_1;
|
|
23294
23354
|
let deferred1_0;
|
|
@@ -23305,7 +23365,7 @@ function __wbg_get_imports() {
|
|
|
23305
23365
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23306
23366
|
}
|
|
23307
23367
|
},
|
|
23308
|
-
|
|
23368
|
+
__wbg_insertBlockHeader_7e97a5f52e1d540c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23309
23369
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
23310
23370
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
23311
23371
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -23313,7 +23373,7 @@ function __wbg_get_imports() {
|
|
|
23313
23373
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
23314
23374
|
return ret;
|
|
23315
23375
|
},
|
|
23316
|
-
|
|
23376
|
+
__wbg_insertPartialBlockchainNodes_57d1b2a9ba469df0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23317
23377
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23318
23378
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23319
23379
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -23321,7 +23381,7 @@ function __wbg_get_imports() {
|
|
|
23321
23381
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
23322
23382
|
return ret;
|
|
23323
23383
|
},
|
|
23324
|
-
|
|
23384
|
+
__wbg_insertSetting_2d699abf72009fa1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23325
23385
|
let deferred0_0;
|
|
23326
23386
|
let deferred0_1;
|
|
23327
23387
|
try {
|
|
@@ -23335,7 +23395,7 @@ function __wbg_get_imports() {
|
|
|
23335
23395
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23336
23396
|
}
|
|
23337
23397
|
},
|
|
23338
|
-
|
|
23398
|
+
__wbg_insertTransactionScript_3bc666c70beb260f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23339
23399
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23340
23400
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23341
23401
|
let v1;
|
|
@@ -23428,11 +23488,11 @@ function __wbg_get_imports() {
|
|
|
23428
23488
|
const ret = arg0.length;
|
|
23429
23489
|
return ret;
|
|
23430
23490
|
},
|
|
23431
|
-
|
|
23491
|
+
__wbg_listSettingKeys_05dadafcb90c698b: function(arg0, arg1) {
|
|
23432
23492
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
23433
23493
|
return ret;
|
|
23434
23494
|
},
|
|
23435
|
-
|
|
23495
|
+
__wbg_lockAccount_8309529edb82c560: function(arg0, arg1, arg2, arg3) {
|
|
23436
23496
|
let deferred0_0;
|
|
23437
23497
|
let deferred0_1;
|
|
23438
23498
|
try {
|
|
@@ -23516,7 +23576,7 @@ function __wbg_get_imports() {
|
|
|
23516
23576
|
const a = state0.a;
|
|
23517
23577
|
state0.a = 0;
|
|
23518
23578
|
try {
|
|
23519
|
-
return
|
|
23579
|
+
return wasm_bindgen__convert__closures_____invoke__h2a46aa320c20015b(a, state0.b, arg0, arg1);
|
|
23520
23580
|
} finally {
|
|
23521
23581
|
state0.a = a;
|
|
23522
23582
|
}
|
|
@@ -23623,7 +23683,7 @@ function __wbg_get_imports() {
|
|
|
23623
23683
|
const ret = NoteTag.__unwrap(arg0);
|
|
23624
23684
|
return ret;
|
|
23625
23685
|
},
|
|
23626
|
-
|
|
23686
|
+
__wbg_openDatabase_4f68920e634e6a36: function(arg0, arg1, arg2, arg3) {
|
|
23627
23687
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
23628
23688
|
return ret;
|
|
23629
23689
|
},
|
|
@@ -23654,7 +23714,7 @@ function __wbg_get_imports() {
|
|
|
23654
23714
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
23655
23715
|
return ret;
|
|
23656
23716
|
},
|
|
23657
|
-
|
|
23717
|
+
__wbg_pruneAccountHistory_6d75f9da793c7146: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23658
23718
|
let deferred0_0;
|
|
23659
23719
|
let deferred0_1;
|
|
23660
23720
|
let deferred1_0;
|
|
@@ -23671,7 +23731,7 @@ function __wbg_get_imports() {
|
|
|
23671
23731
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23672
23732
|
}
|
|
23673
23733
|
},
|
|
23674
|
-
|
|
23734
|
+
__wbg_pruneIrrelevantBlocks_0c5e2996bdd4f34d: function(arg0, arg1) {
|
|
23675
23735
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
23676
23736
|
return ret;
|
|
23677
23737
|
},
|
|
@@ -23689,13 +23749,13 @@ function __wbg_get_imports() {
|
|
|
23689
23749
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
23690
23750
|
arg0.releaseLock();
|
|
23691
23751
|
},
|
|
23692
|
-
|
|
23752
|
+
__wbg_removeAccountAddress_e36699c690cbd226: function(arg0, arg1, arg2, arg3) {
|
|
23693
23753
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23694
23754
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23695
23755
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
23696
23756
|
return ret;
|
|
23697
23757
|
},
|
|
23698
|
-
|
|
23758
|
+
__wbg_removeAccountAuth_aaf80576b7268aa3: function(arg0, arg1, arg2, arg3) {
|
|
23699
23759
|
let deferred0_0;
|
|
23700
23760
|
let deferred0_1;
|
|
23701
23761
|
try {
|
|
@@ -23707,7 +23767,7 @@ function __wbg_get_imports() {
|
|
|
23707
23767
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23708
23768
|
}
|
|
23709
23769
|
},
|
|
23710
|
-
|
|
23770
|
+
__wbg_removeAllMappingsForKey_99333cc84402fb4f: function(arg0, arg1, arg2, arg3) {
|
|
23711
23771
|
let deferred0_0;
|
|
23712
23772
|
let deferred0_1;
|
|
23713
23773
|
try {
|
|
@@ -23719,7 +23779,7 @@ function __wbg_get_imports() {
|
|
|
23719
23779
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23720
23780
|
}
|
|
23721
23781
|
},
|
|
23722
|
-
|
|
23782
|
+
__wbg_removeNoteTag_2071bbe1e7694e38: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23723
23783
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23724
23784
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23725
23785
|
let v1;
|
|
@@ -23735,7 +23795,7 @@ function __wbg_get_imports() {
|
|
|
23735
23795
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
23736
23796
|
return ret;
|
|
23737
23797
|
},
|
|
23738
|
-
|
|
23798
|
+
__wbg_removeSetting_f68b70cf07c8883d: function(arg0, arg1, arg2, arg3) {
|
|
23739
23799
|
let deferred0_0;
|
|
23740
23800
|
let deferred0_1;
|
|
23741
23801
|
try {
|
|
@@ -23927,13 +23987,13 @@ function __wbg_get_imports() {
|
|
|
23927
23987
|
const ret = TransactionSummary.__wrap(arg0);
|
|
23928
23988
|
return ret;
|
|
23929
23989
|
},
|
|
23930
|
-
|
|
23990
|
+
__wbg_undoAccountStates_432ad1aabd2a3a26: function(arg0, arg1, arg2, arg3) {
|
|
23931
23991
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23932
23992
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23933
23993
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
23934
23994
|
return ret;
|
|
23935
23995
|
},
|
|
23936
|
-
|
|
23996
|
+
__wbg_upsertAccountCode_133dd03094e8974e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23937
23997
|
let deferred0_0;
|
|
23938
23998
|
let deferred0_1;
|
|
23939
23999
|
try {
|
|
@@ -23947,7 +24007,7 @@ function __wbg_get_imports() {
|
|
|
23947
24007
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23948
24008
|
}
|
|
23949
24009
|
},
|
|
23950
|
-
|
|
24010
|
+
__wbg_upsertAccountRecord_97ec9821e9bce90c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
23951
24011
|
let deferred0_0;
|
|
23952
24012
|
let deferred0_1;
|
|
23953
24013
|
let deferred1_0;
|
|
@@ -23989,7 +24049,7 @@ function __wbg_get_imports() {
|
|
|
23989
24049
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
23990
24050
|
}
|
|
23991
24051
|
},
|
|
23992
|
-
|
|
24052
|
+
__wbg_upsertAccountStorage_81db74f4cf6442f3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23993
24053
|
let deferred0_0;
|
|
23994
24054
|
let deferred0_1;
|
|
23995
24055
|
try {
|
|
@@ -24003,7 +24063,7 @@ function __wbg_get_imports() {
|
|
|
24003
24063
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24004
24064
|
}
|
|
24005
24065
|
},
|
|
24006
|
-
|
|
24066
|
+
__wbg_upsertForeignAccountCode_5070ddc08c0ee632: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
24007
24067
|
let deferred0_0;
|
|
24008
24068
|
let deferred0_1;
|
|
24009
24069
|
let deferred2_0;
|
|
@@ -24022,7 +24082,7 @@ function __wbg_get_imports() {
|
|
|
24022
24082
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24023
24083
|
}
|
|
24024
24084
|
},
|
|
24025
|
-
|
|
24085
|
+
__wbg_upsertInputNote_a1f3154ee7b601d7: 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) {
|
|
24026
24086
|
let deferred0_0;
|
|
24027
24087
|
let deferred0_1;
|
|
24028
24088
|
let deferred4_0;
|
|
@@ -24064,7 +24124,7 @@ function __wbg_get_imports() {
|
|
|
24064
24124
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
24065
24125
|
}
|
|
24066
24126
|
},
|
|
24067
|
-
|
|
24127
|
+
__wbg_upsertNoteScript_964eec397ad12e17: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24068
24128
|
let deferred0_0;
|
|
24069
24129
|
let deferred0_1;
|
|
24070
24130
|
try {
|
|
@@ -24078,7 +24138,7 @@ function __wbg_get_imports() {
|
|
|
24078
24138
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24079
24139
|
}
|
|
24080
24140
|
},
|
|
24081
|
-
|
|
24141
|
+
__wbg_upsertOutputNote_521c6dfb72b60b27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
24082
24142
|
let deferred0_0;
|
|
24083
24143
|
let deferred0_1;
|
|
24084
24144
|
let deferred2_0;
|
|
@@ -24106,7 +24166,7 @@ function __wbg_get_imports() {
|
|
|
24106
24166
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
24107
24167
|
}
|
|
24108
24168
|
},
|
|
24109
|
-
|
|
24169
|
+
__wbg_upsertStorageMapEntries_9342c8c7ec58eaf4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24110
24170
|
let deferred0_0;
|
|
24111
24171
|
let deferred0_1;
|
|
24112
24172
|
try {
|
|
@@ -24120,7 +24180,7 @@ function __wbg_get_imports() {
|
|
|
24120
24180
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24121
24181
|
}
|
|
24122
24182
|
},
|
|
24123
|
-
|
|
24183
|
+
__wbg_upsertTransactionRecord_d12d00e12478f16d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
24124
24184
|
let deferred0_0;
|
|
24125
24185
|
let deferred0_1;
|
|
24126
24186
|
try {
|
|
@@ -24141,7 +24201,7 @@ function __wbg_get_imports() {
|
|
|
24141
24201
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
24142
24202
|
}
|
|
24143
24203
|
},
|
|
24144
|
-
|
|
24204
|
+
__wbg_upsertVaultAssets_a0586701be2577a6: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
24145
24205
|
let deferred0_0;
|
|
24146
24206
|
let deferred0_1;
|
|
24147
24207
|
try {
|
|
@@ -24172,13 +24232,13 @@ function __wbg_get_imports() {
|
|
|
24172
24232
|
return ret;
|
|
24173
24233
|
},
|
|
24174
24234
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
24175
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
24176
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
24235
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 352, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
24236
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h59e0a062e9afff1a, wasm_bindgen__convert__closures_____invoke__h29d102b2fd2d683c);
|
|
24177
24237
|
return ret;
|
|
24178
24238
|
},
|
|
24179
24239
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
24180
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
24181
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
24240
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 352, function: Function { arguments: [], shim_idx: 353, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
24241
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h59e0a062e9afff1a, wasm_bindgen__convert__closures_____invoke__h134f6c798ed66cf8);
|
|
24182
24242
|
return ret;
|
|
24183
24243
|
},
|
|
24184
24244
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -24282,16 +24342,16 @@ function __wbg_get_imports() {
|
|
|
24282
24342
|
};
|
|
24283
24343
|
}
|
|
24284
24344
|
|
|
24285
|
-
function
|
|
24286
|
-
wasm.
|
|
24345
|
+
function wasm_bindgen__convert__closures_____invoke__h134f6c798ed66cf8(arg0, arg1) {
|
|
24346
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h134f6c798ed66cf8(arg0, arg1);
|
|
24287
24347
|
}
|
|
24288
24348
|
|
|
24289
|
-
function
|
|
24290
|
-
wasm.
|
|
24349
|
+
function wasm_bindgen__convert__closures_____invoke__h29d102b2fd2d683c(arg0, arg1, arg2) {
|
|
24350
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h29d102b2fd2d683c(arg0, arg1, arg2);
|
|
24291
24351
|
}
|
|
24292
24352
|
|
|
24293
|
-
function
|
|
24294
|
-
wasm.
|
|
24353
|
+
function wasm_bindgen__convert__closures_____invoke__h2a46aa320c20015b(arg0, arg1, arg2, arg3) {
|
|
24354
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2a46aa320c20015b(arg0, arg1, arg2, arg3);
|
|
24295
24355
|
}
|
|
24296
24356
|
|
|
24297
24357
|
|
|
@@ -25094,7 +25154,7 @@ async function __wbg_init(module_or_path) {
|
|
|
25094
25154
|
|
|
25095
25155
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
25096
25156
|
|
|
25097
|
-
var
|
|
25157
|
+
var CargoM3382VZc = /*#__PURE__*/Object.freeze({
|
|
25098
25158
|
__proto__: null,
|
|
25099
25159
|
Account: Account,
|
|
25100
25160
|
AccountArray: AccountArray,
|