@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
|
@@ -9958,13 +9958,18 @@ class AccountArray {
|
|
|
9958
9958
|
wasm.accountarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
9959
9959
|
}
|
|
9960
9960
|
/**
|
|
9961
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
9962
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
9963
|
+
* after the call. Without this borrow, passing `elem` by
|
|
9964
|
+
* value would move the underlying Rust value out of the
|
|
9965
|
+
* caller's JS handle and any subsequent method on it would
|
|
9966
|
+
* panic with `"null pointer passed to rust"`.
|
|
9961
9967
|
* @param {number} index
|
|
9962
9968
|
* @param {Account} elem
|
|
9963
9969
|
*/
|
|
9964
9970
|
replaceAt(index, elem) {
|
|
9965
9971
|
_assertClass(elem, Account);
|
|
9966
|
-
|
|
9967
|
-
const ret = wasm.accountarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
9972
|
+
const ret = wasm.accountarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
9968
9973
|
if (ret[1]) {
|
|
9969
9974
|
throw takeFromExternrefTable0(ret[0]);
|
|
9970
9975
|
}
|
|
@@ -10822,13 +10827,18 @@ class AccountIdArray {
|
|
|
10822
10827
|
wasm.accountidarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
10823
10828
|
}
|
|
10824
10829
|
/**
|
|
10830
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
10831
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
10832
|
+
* after the call. Without this borrow, passing `elem` by
|
|
10833
|
+
* value would move the underlying Rust value out of the
|
|
10834
|
+
* caller's JS handle and any subsequent method on it would
|
|
10835
|
+
* panic with `"null pointer passed to rust"`.
|
|
10825
10836
|
* @param {number} index
|
|
10826
10837
|
* @param {AccountId} elem
|
|
10827
10838
|
*/
|
|
10828
10839
|
replaceAt(index, elem) {
|
|
10829
10840
|
_assertClass(elem, AccountId);
|
|
10830
|
-
|
|
10831
|
-
const ret = wasm.accountidarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
10841
|
+
const ret = wasm.accountidarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
10832
10842
|
if (ret[1]) {
|
|
10833
10843
|
throw takeFromExternrefTable0(ret[0]);
|
|
10834
10844
|
}
|
|
@@ -12965,13 +12975,18 @@ class FeltArray {
|
|
|
12965
12975
|
wasm.feltarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
12966
12976
|
}
|
|
12967
12977
|
/**
|
|
12978
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
12979
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
12980
|
+
* after the call. Without this borrow, passing `elem` by
|
|
12981
|
+
* value would move the underlying Rust value out of the
|
|
12982
|
+
* caller's JS handle and any subsequent method on it would
|
|
12983
|
+
* panic with `"null pointer passed to rust"`.
|
|
12968
12984
|
* @param {number} index
|
|
12969
12985
|
* @param {Felt} elem
|
|
12970
12986
|
*/
|
|
12971
12987
|
replaceAt(index, elem) {
|
|
12972
12988
|
_assertClass(elem, Felt);
|
|
12973
|
-
|
|
12974
|
-
const ret = wasm.feltarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
12989
|
+
const ret = wasm.feltarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
12975
12990
|
if (ret[1]) {
|
|
12976
12991
|
throw takeFromExternrefTable0(ret[0]);
|
|
12977
12992
|
}
|
|
@@ -13339,13 +13354,18 @@ class ForeignAccountArray {
|
|
|
13339
13354
|
wasm.foreignaccountarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
13340
13355
|
}
|
|
13341
13356
|
/**
|
|
13357
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
13358
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
13359
|
+
* after the call. Without this borrow, passing `elem` by
|
|
13360
|
+
* value would move the underlying Rust value out of the
|
|
13361
|
+
* caller's JS handle and any subsequent method on it would
|
|
13362
|
+
* panic with `"null pointer passed to rust"`.
|
|
13342
13363
|
* @param {number} index
|
|
13343
13364
|
* @param {ForeignAccount} elem
|
|
13344
13365
|
*/
|
|
13345
13366
|
replaceAt(index, elem) {
|
|
13346
13367
|
_assertClass(elem, ForeignAccount);
|
|
13347
|
-
|
|
13348
|
-
const ret = wasm.foreignaccountarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
13368
|
+
const ret = wasm.foreignaccountarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
13349
13369
|
if (ret[1]) {
|
|
13350
13370
|
throw takeFromExternrefTable0(ret[0]);
|
|
13351
13371
|
}
|
|
@@ -15322,13 +15342,18 @@ class NoteAndArgsArray {
|
|
|
15322
15342
|
wasm.noteandargsarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
15323
15343
|
}
|
|
15324
15344
|
/**
|
|
15345
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
15346
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
15347
|
+
* after the call. Without this borrow, passing `elem` by
|
|
15348
|
+
* value would move the underlying Rust value out of the
|
|
15349
|
+
* caller's JS handle and any subsequent method on it would
|
|
15350
|
+
* panic with `"null pointer passed to rust"`.
|
|
15325
15351
|
* @param {number} index
|
|
15326
15352
|
* @param {NoteAndArgs} elem
|
|
15327
15353
|
*/
|
|
15328
15354
|
replaceAt(index, elem) {
|
|
15329
15355
|
_assertClass(elem, NoteAndArgs);
|
|
15330
|
-
|
|
15331
|
-
const ret = wasm.noteandargsarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
15356
|
+
const ret = wasm.noteandargsarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
15332
15357
|
if (ret[1]) {
|
|
15333
15358
|
throw takeFromExternrefTable0(ret[0]);
|
|
15334
15359
|
}
|
|
@@ -15392,13 +15417,18 @@ class NoteArray {
|
|
|
15392
15417
|
wasm.notearray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
15393
15418
|
}
|
|
15394
15419
|
/**
|
|
15420
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
15421
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
15422
|
+
* after the call. Without this borrow, passing `elem` by
|
|
15423
|
+
* value would move the underlying Rust value out of the
|
|
15424
|
+
* caller's JS handle and any subsequent method on it would
|
|
15425
|
+
* panic with `"null pointer passed to rust"`.
|
|
15395
15426
|
* @param {number} index
|
|
15396
15427
|
* @param {Note} elem
|
|
15397
15428
|
*/
|
|
15398
15429
|
replaceAt(index, elem) {
|
|
15399
15430
|
_assertClass(elem, Note);
|
|
15400
|
-
|
|
15401
|
-
const ret = wasm.notearray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
15431
|
+
const ret = wasm.notearray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
15402
15432
|
if (ret[1]) {
|
|
15403
15433
|
throw takeFromExternrefTable0(ret[0]);
|
|
15404
15434
|
}
|
|
@@ -15969,13 +15999,18 @@ class NoteDetailsAndTagArray {
|
|
|
15969
15999
|
wasm.notedetailsandtagarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
15970
16000
|
}
|
|
15971
16001
|
/**
|
|
16002
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
16003
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
16004
|
+
* after the call. Without this borrow, passing `elem` by
|
|
16005
|
+
* value would move the underlying Rust value out of the
|
|
16006
|
+
* caller's JS handle and any subsequent method on it would
|
|
16007
|
+
* panic with `"null pointer passed to rust"`.
|
|
15972
16008
|
* @param {number} index
|
|
15973
16009
|
* @param {NoteDetailsAndTag} elem
|
|
15974
16010
|
*/
|
|
15975
16011
|
replaceAt(index, elem) {
|
|
15976
16012
|
_assertClass(elem, NoteDetailsAndTag);
|
|
15977
|
-
|
|
15978
|
-
const ret = wasm.notedetailsandtagarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
16013
|
+
const ret = wasm.notedetailsandtagarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
15979
16014
|
if (ret[1]) {
|
|
15980
16015
|
throw takeFromExternrefTable0(ret[0]);
|
|
15981
16016
|
}
|
|
@@ -16535,13 +16570,18 @@ class NoteIdAndArgsArray {
|
|
|
16535
16570
|
wasm.noteidandargsarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
16536
16571
|
}
|
|
16537
16572
|
/**
|
|
16573
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
16574
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
16575
|
+
* after the call. Without this borrow, passing `elem` by
|
|
16576
|
+
* value would move the underlying Rust value out of the
|
|
16577
|
+
* caller's JS handle and any subsequent method on it would
|
|
16578
|
+
* panic with `"null pointer passed to rust"`.
|
|
16538
16579
|
* @param {number} index
|
|
16539
16580
|
* @param {NoteIdAndArgs} elem
|
|
16540
16581
|
*/
|
|
16541
16582
|
replaceAt(index, elem) {
|
|
16542
16583
|
_assertClass(elem, NoteIdAndArgs);
|
|
16543
|
-
|
|
16544
|
-
const ret = wasm.noteidandargsarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
16584
|
+
const ret = wasm.noteidandargsarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
16545
16585
|
if (ret[1]) {
|
|
16546
16586
|
throw takeFromExternrefTable0(ret[0]);
|
|
16547
16587
|
}
|
|
@@ -16867,13 +16907,18 @@ class NoteRecipientArray {
|
|
|
16867
16907
|
wasm.noterecipientarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
16868
16908
|
}
|
|
16869
16909
|
/**
|
|
16910
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
16911
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
16912
|
+
* after the call. Without this borrow, passing `elem` by
|
|
16913
|
+
* value would move the underlying Rust value out of the
|
|
16914
|
+
* caller's JS handle and any subsequent method on it would
|
|
16915
|
+
* panic with `"null pointer passed to rust"`.
|
|
16870
16916
|
* @param {number} index
|
|
16871
16917
|
* @param {NoteRecipient} elem
|
|
16872
16918
|
*/
|
|
16873
16919
|
replaceAt(index, elem) {
|
|
16874
16920
|
_assertClass(elem, NoteRecipient);
|
|
16875
|
-
|
|
16876
|
-
const ret = wasm.noterecipientarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
16921
|
+
const ret = wasm.noterecipientarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
16877
16922
|
if (ret[1]) {
|
|
16878
16923
|
throw takeFromExternrefTable0(ret[0]);
|
|
16879
16924
|
}
|
|
@@ -17408,13 +17453,18 @@ class OutputNoteArray {
|
|
|
17408
17453
|
wasm.outputnotearray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
17409
17454
|
}
|
|
17410
17455
|
/**
|
|
17456
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
17457
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
17458
|
+
* after the call. Without this borrow, passing `elem` by
|
|
17459
|
+
* value would move the underlying Rust value out of the
|
|
17460
|
+
* caller's JS handle and any subsequent method on it would
|
|
17461
|
+
* panic with `"null pointer passed to rust"`.
|
|
17411
17462
|
* @param {number} index
|
|
17412
17463
|
* @param {OutputNote} elem
|
|
17413
17464
|
*/
|
|
17414
17465
|
replaceAt(index, elem) {
|
|
17415
17466
|
_assertClass(elem, OutputNote);
|
|
17416
|
-
|
|
17417
|
-
const ret = wasm.outputnotearray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
17467
|
+
const ret = wasm.outputnotearray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
17418
17468
|
if (ret[1]) {
|
|
17419
17469
|
throw takeFromExternrefTable0(ret[0]);
|
|
17420
17470
|
}
|
|
@@ -19474,13 +19524,18 @@ class StorageSlotArray {
|
|
|
19474
19524
|
wasm.storageslotarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
19475
19525
|
}
|
|
19476
19526
|
/**
|
|
19527
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
19528
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
19529
|
+
* after the call. Without this borrow, passing `elem` by
|
|
19530
|
+
* value would move the underlying Rust value out of the
|
|
19531
|
+
* caller's JS handle and any subsequent method on it would
|
|
19532
|
+
* panic with `"null pointer passed to rust"`.
|
|
19477
19533
|
* @param {number} index
|
|
19478
19534
|
* @param {StorageSlot} elem
|
|
19479
19535
|
*/
|
|
19480
19536
|
replaceAt(index, elem) {
|
|
19481
19537
|
_assertClass(elem, StorageSlot);
|
|
19482
|
-
|
|
19483
|
-
const ret = wasm.storageslotarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
19538
|
+
const ret = wasm.storageslotarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
19484
19539
|
if (ret[1]) {
|
|
19485
19540
|
throw takeFromExternrefTable0(ret[0]);
|
|
19486
19541
|
}
|
|
@@ -20589,13 +20644,18 @@ class TransactionScriptInputPairArray {
|
|
|
20589
20644
|
wasm.transactionscriptinputpairarray_push(this.__wbg_ptr, element.__wbg_ptr);
|
|
20590
20645
|
}
|
|
20591
20646
|
/**
|
|
20647
|
+
* Replace the element at `index`. Borrows + clones the input
|
|
20648
|
+
* (mirrors `push`), so the caller's JS handle remains valid
|
|
20649
|
+
* after the call. Without this borrow, passing `elem` by
|
|
20650
|
+
* value would move the underlying Rust value out of the
|
|
20651
|
+
* caller's JS handle and any subsequent method on it would
|
|
20652
|
+
* panic with `"null pointer passed to rust"`.
|
|
20592
20653
|
* @param {number} index
|
|
20593
20654
|
* @param {TransactionScriptInputPair} elem
|
|
20594
20655
|
*/
|
|
20595
20656
|
replaceAt(index, elem) {
|
|
20596
20657
|
_assertClass(elem, TransactionScriptInputPair);
|
|
20597
|
-
|
|
20598
|
-
const ret = wasm.transactionscriptinputpairarray_replaceAt(this.__wbg_ptr, index, ptr0);
|
|
20658
|
+
const ret = wasm.transactionscriptinputpairarray_replaceAt(this.__wbg_ptr, index, elem.__wbg_ptr);
|
|
20599
20659
|
if (ret[1]) {
|
|
20600
20660
|
throw takeFromExternrefTable0(ret[0]);
|
|
20601
20661
|
}
|
|
@@ -22156,7 +22216,7 @@ function __wbg_get_imports() {
|
|
|
22156
22216
|
const ret = AccountStorage.__wrap(arg0);
|
|
22157
22217
|
return ret;
|
|
22158
22218
|
},
|
|
22159
|
-
|
|
22219
|
+
__wbg_addNoteTag_973e2e4a9b348c78: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22160
22220
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22161
22221
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22162
22222
|
let v1;
|
|
@@ -22179,15 +22239,15 @@ function __wbg_get_imports() {
|
|
|
22179
22239
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
22180
22240
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
22181
22241
|
}, arguments); },
|
|
22182
|
-
|
|
22242
|
+
__wbg_applyFullAccountState_e742f2e18c9269eb: function(arg0, arg1, arg2) {
|
|
22183
22243
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
22184
22244
|
return ret;
|
|
22185
22245
|
},
|
|
22186
|
-
|
|
22246
|
+
__wbg_applyStateSync_11120f9db91440ca: function(arg0, arg1, arg2) {
|
|
22187
22247
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
22188
22248
|
return ret;
|
|
22189
22249
|
},
|
|
22190
|
-
|
|
22250
|
+
__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) {
|
|
22191
22251
|
let deferred0_0;
|
|
22192
22252
|
let deferred0_1;
|
|
22193
22253
|
let deferred1_0;
|
|
@@ -22322,7 +22382,7 @@ function __wbg_get_imports() {
|
|
|
22322
22382
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22323
22383
|
}
|
|
22324
22384
|
},
|
|
22325
|
-
|
|
22385
|
+
__wbg_exportStore_52bd7ea33e1e5d54: function(arg0, arg1) {
|
|
22326
22386
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
22327
22387
|
return ret;
|
|
22328
22388
|
},
|
|
@@ -22354,7 +22414,7 @@ function __wbg_get_imports() {
|
|
|
22354
22414
|
const ret = FetchedNote.__wrap(arg0);
|
|
22355
22415
|
return ret;
|
|
22356
22416
|
},
|
|
22357
|
-
|
|
22417
|
+
__wbg_forceImportStore_64d44c2df05ad10d: function(arg0, arg1, arg2) {
|
|
22358
22418
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
22359
22419
|
return ret;
|
|
22360
22420
|
},
|
|
@@ -22374,7 +22434,7 @@ function __wbg_get_imports() {
|
|
|
22374
22434
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
22375
22435
|
return ret;
|
|
22376
22436
|
},
|
|
22377
|
-
|
|
22437
|
+
__wbg_getAccountAddresses_5a86706a5bdd3c7a: function(arg0, arg1, arg2, arg3) {
|
|
22378
22438
|
let deferred0_0;
|
|
22379
22439
|
let deferred0_1;
|
|
22380
22440
|
try {
|
|
@@ -22386,7 +22446,7 @@ function __wbg_get_imports() {
|
|
|
22386
22446
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22387
22447
|
}
|
|
22388
22448
|
},
|
|
22389
|
-
|
|
22449
|
+
__wbg_getAccountAuthByPubKeyCommitment_0247d03650eada1a: function(arg0, arg1, arg2, arg3) {
|
|
22390
22450
|
let deferred0_0;
|
|
22391
22451
|
let deferred0_1;
|
|
22392
22452
|
try {
|
|
@@ -22398,7 +22458,7 @@ function __wbg_get_imports() {
|
|
|
22398
22458
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22399
22459
|
}
|
|
22400
22460
|
},
|
|
22401
|
-
|
|
22461
|
+
__wbg_getAccountCode_48a9c8a2971d2e92: function(arg0, arg1, arg2, arg3) {
|
|
22402
22462
|
let deferred0_0;
|
|
22403
22463
|
let deferred0_1;
|
|
22404
22464
|
try {
|
|
@@ -22410,7 +22470,7 @@ function __wbg_get_imports() {
|
|
|
22410
22470
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22411
22471
|
}
|
|
22412
22472
|
},
|
|
22413
|
-
|
|
22473
|
+
__wbg_getAccountHeaderByCommitment_b30143794295f784: function(arg0, arg1, arg2, arg3) {
|
|
22414
22474
|
let deferred0_0;
|
|
22415
22475
|
let deferred0_1;
|
|
22416
22476
|
try {
|
|
@@ -22422,7 +22482,7 @@ function __wbg_get_imports() {
|
|
|
22422
22482
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22423
22483
|
}
|
|
22424
22484
|
},
|
|
22425
|
-
|
|
22485
|
+
__wbg_getAccountHeader_c9940b3934df4673: function(arg0, arg1, arg2, arg3) {
|
|
22426
22486
|
let deferred0_0;
|
|
22427
22487
|
let deferred0_1;
|
|
22428
22488
|
try {
|
|
@@ -22434,7 +22494,7 @@ function __wbg_get_imports() {
|
|
|
22434
22494
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22435
22495
|
}
|
|
22436
22496
|
},
|
|
22437
|
-
|
|
22497
|
+
__wbg_getAccountIdByKeyCommitment_fe581761272afe1d: function(arg0, arg1, arg2, arg3) {
|
|
22438
22498
|
let deferred0_0;
|
|
22439
22499
|
let deferred0_1;
|
|
22440
22500
|
try {
|
|
@@ -22446,11 +22506,11 @@ function __wbg_get_imports() {
|
|
|
22446
22506
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22447
22507
|
}
|
|
22448
22508
|
},
|
|
22449
|
-
|
|
22509
|
+
__wbg_getAccountIds_c9d6a7a3dd28e48b: function(arg0, arg1) {
|
|
22450
22510
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
22451
22511
|
return ret;
|
|
22452
22512
|
},
|
|
22453
|
-
|
|
22513
|
+
__wbg_getAccountStorageMaps_6d8adf5a2b5dbc83: function(arg0, arg1, arg2, arg3) {
|
|
22454
22514
|
let deferred0_0;
|
|
22455
22515
|
let deferred0_1;
|
|
22456
22516
|
try {
|
|
@@ -22462,7 +22522,7 @@ function __wbg_get_imports() {
|
|
|
22462
22522
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22463
22523
|
}
|
|
22464
22524
|
},
|
|
22465
|
-
|
|
22525
|
+
__wbg_getAccountStorage_b342960a6c7336dd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22466
22526
|
let deferred0_0;
|
|
22467
22527
|
let deferred0_1;
|
|
22468
22528
|
try {
|
|
@@ -22476,7 +22536,7 @@ function __wbg_get_imports() {
|
|
|
22476
22536
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22477
22537
|
}
|
|
22478
22538
|
},
|
|
22479
|
-
|
|
22539
|
+
__wbg_getAccountVaultAssets_18d0ffa14548039c: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22480
22540
|
let deferred0_0;
|
|
22481
22541
|
let deferred0_1;
|
|
22482
22542
|
try {
|
|
@@ -22490,23 +22550,23 @@ function __wbg_get_imports() {
|
|
|
22490
22550
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22491
22551
|
}
|
|
22492
22552
|
},
|
|
22493
|
-
|
|
22553
|
+
__wbg_getAllAccountHeaders_172e80227d0a3aa7: function(arg0, arg1) {
|
|
22494
22554
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
22495
22555
|
return ret;
|
|
22496
22556
|
},
|
|
22497
|
-
|
|
22557
|
+
__wbg_getBlockHeaders_e163d81e24b97494: function(arg0, arg1, arg2, arg3) {
|
|
22498
22558
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
22499
22559
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22500
22560
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
22501
22561
|
return ret;
|
|
22502
22562
|
},
|
|
22503
|
-
|
|
22563
|
+
__wbg_getForeignAccountCode_594181ed34b498da: function(arg0, arg1, arg2, arg3) {
|
|
22504
22564
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22505
22565
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22506
22566
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
22507
22567
|
return ret;
|
|
22508
22568
|
},
|
|
22509
|
-
|
|
22569
|
+
__wbg_getInputNoteByOffset_833996e034b6ec72: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
22510
22570
|
let deferred1_0;
|
|
22511
22571
|
let deferred1_1;
|
|
22512
22572
|
try {
|
|
@@ -22520,25 +22580,25 @@ function __wbg_get_imports() {
|
|
|
22520
22580
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22521
22581
|
}
|
|
22522
22582
|
},
|
|
22523
|
-
|
|
22583
|
+
__wbg_getInputNotesFromIds_56764ba02bfc0f58: function(arg0, arg1, arg2, arg3) {
|
|
22524
22584
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22525
22585
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22526
22586
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22527
22587
|
return ret;
|
|
22528
22588
|
},
|
|
22529
|
-
|
|
22589
|
+
__wbg_getInputNotesFromNullifiers_63c235a8ef0d1ed8: function(arg0, arg1, arg2, arg3) {
|
|
22530
22590
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22531
22591
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22532
22592
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22533
22593
|
return ret;
|
|
22534
22594
|
},
|
|
22535
|
-
|
|
22595
|
+
__wbg_getInputNotes_f31dd0359864fba4: function(arg0, arg1, arg2, arg3) {
|
|
22536
22596
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22537
22597
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22538
22598
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22539
22599
|
return ret;
|
|
22540
22600
|
},
|
|
22541
|
-
|
|
22601
|
+
__wbg_getKeyCommitmentsByAccountId_e0f8d3379c7cfd44: function(arg0, arg1, arg2, arg3) {
|
|
22542
22602
|
let deferred0_0;
|
|
22543
22603
|
let deferred0_1;
|
|
22544
22604
|
try {
|
|
@@ -22550,7 +22610,7 @@ function __wbg_get_imports() {
|
|
|
22550
22610
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22551
22611
|
}
|
|
22552
22612
|
},
|
|
22553
|
-
|
|
22613
|
+
__wbg_getNoteScript_7c840c12ece3407a: function(arg0, arg1, arg2, arg3) {
|
|
22554
22614
|
let deferred0_0;
|
|
22555
22615
|
let deferred0_1;
|
|
22556
22616
|
try {
|
|
@@ -22562,33 +22622,33 @@ function __wbg_get_imports() {
|
|
|
22562
22622
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22563
22623
|
}
|
|
22564
22624
|
},
|
|
22565
|
-
|
|
22625
|
+
__wbg_getNoteTags_3e534d0288cc279d: function(arg0, arg1) {
|
|
22566
22626
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
22567
22627
|
return ret;
|
|
22568
22628
|
},
|
|
22569
|
-
|
|
22629
|
+
__wbg_getOutputNotesFromIds_ca9334740d5ad794: function(arg0, arg1, arg2, arg3) {
|
|
22570
22630
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22571
22631
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22572
22632
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22573
22633
|
return ret;
|
|
22574
22634
|
},
|
|
22575
|
-
|
|
22635
|
+
__wbg_getOutputNotesFromNullifiers_1b3743a61421690b: function(arg0, arg1, arg2, arg3) {
|
|
22576
22636
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22577
22637
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22578
22638
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22579
22639
|
return ret;
|
|
22580
22640
|
},
|
|
22581
|
-
|
|
22641
|
+
__wbg_getOutputNotes_50cb1e0540aedca0: function(arg0, arg1, arg2, arg3) {
|
|
22582
22642
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22583
22643
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22584
22644
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22585
22645
|
return ret;
|
|
22586
22646
|
},
|
|
22587
|
-
|
|
22647
|
+
__wbg_getPartialBlockchainNodesAll_fd7362a9062e367a: function(arg0, arg1) {
|
|
22588
22648
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
22589
22649
|
return ret;
|
|
22590
22650
|
},
|
|
22591
|
-
|
|
22651
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_b66e50c0ebf4e09c: function(arg0, arg1, arg2, arg3) {
|
|
22592
22652
|
let deferred0_0;
|
|
22593
22653
|
let deferred0_1;
|
|
22594
22654
|
try {
|
|
@@ -22600,13 +22660,13 @@ function __wbg_get_imports() {
|
|
|
22600
22660
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22601
22661
|
}
|
|
22602
22662
|
},
|
|
22603
|
-
|
|
22663
|
+
__wbg_getPartialBlockchainNodes_ba084ae0138e9b85: function(arg0, arg1, arg2, arg3) {
|
|
22604
22664
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22605
22665
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22606
22666
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
22607
22667
|
return ret;
|
|
22608
22668
|
},
|
|
22609
|
-
|
|
22669
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_a27d74f0afd8ebd5: function(arg0, arg1, arg2) {
|
|
22610
22670
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
22611
22671
|
return ret;
|
|
22612
22672
|
},
|
|
@@ -22617,7 +22677,7 @@ function __wbg_get_imports() {
|
|
|
22617
22677
|
const ret = arg0.getReader();
|
|
22618
22678
|
return ret;
|
|
22619
22679
|
}, arguments); },
|
|
22620
|
-
|
|
22680
|
+
__wbg_getSetting_d758a0c1a1ef754d: function(arg0, arg1, arg2, arg3) {
|
|
22621
22681
|
let deferred0_0;
|
|
22622
22682
|
let deferred0_1;
|
|
22623
22683
|
try {
|
|
@@ -22629,7 +22689,7 @@ function __wbg_get_imports() {
|
|
|
22629
22689
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22630
22690
|
}
|
|
22631
22691
|
},
|
|
22632
|
-
|
|
22692
|
+
__wbg_getSyncHeight_bc5e18a830512fb9: function(arg0, arg1) {
|
|
22633
22693
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
22634
22694
|
return ret;
|
|
22635
22695
|
},
|
|
@@ -22637,15 +22697,15 @@ function __wbg_get_imports() {
|
|
|
22637
22697
|
const ret = arg0.getTime();
|
|
22638
22698
|
return ret;
|
|
22639
22699
|
},
|
|
22640
|
-
|
|
22700
|
+
__wbg_getTrackedBlockHeaderNumbers_efa442cb6852b46a: function(arg0, arg1) {
|
|
22641
22701
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
22642
22702
|
return ret;
|
|
22643
22703
|
},
|
|
22644
|
-
|
|
22704
|
+
__wbg_getTrackedBlockHeaders_81a15d93c856de82: function(arg0, arg1) {
|
|
22645
22705
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
22646
22706
|
return ret;
|
|
22647
22707
|
},
|
|
22648
|
-
|
|
22708
|
+
__wbg_getTransactions_0d020f186d88801a: function(arg0, arg1, arg2, arg3) {
|
|
22649
22709
|
let deferred0_0;
|
|
22650
22710
|
let deferred0_1;
|
|
22651
22711
|
try {
|
|
@@ -22657,7 +22717,7 @@ function __wbg_get_imports() {
|
|
|
22657
22717
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22658
22718
|
}
|
|
22659
22719
|
},
|
|
22660
|
-
|
|
22720
|
+
__wbg_getUnspentInputNoteNullifiers_bc2801eb7f967f9e: function(arg0, arg1) {
|
|
22661
22721
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
22662
22722
|
return ret;
|
|
22663
22723
|
},
|
|
@@ -22701,7 +22761,7 @@ function __wbg_get_imports() {
|
|
|
22701
22761
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
22702
22762
|
return ret;
|
|
22703
22763
|
},
|
|
22704
|
-
|
|
22764
|
+
__wbg_insertAccountAddress_cad95e96d090ae37: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22705
22765
|
let deferred0_0;
|
|
22706
22766
|
let deferred0_1;
|
|
22707
22767
|
try {
|
|
@@ -22715,7 +22775,7 @@ function __wbg_get_imports() {
|
|
|
22715
22775
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22716
22776
|
}
|
|
22717
22777
|
},
|
|
22718
|
-
|
|
22778
|
+
__wbg_insertAccountAuth_3ccbf13a84d72de0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22719
22779
|
let deferred0_0;
|
|
22720
22780
|
let deferred0_1;
|
|
22721
22781
|
let deferred1_0;
|
|
@@ -22732,7 +22792,7 @@ function __wbg_get_imports() {
|
|
|
22732
22792
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22733
22793
|
}
|
|
22734
22794
|
},
|
|
22735
|
-
|
|
22795
|
+
__wbg_insertAccountKeyMapping_90521e58351da78b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22736
22796
|
let deferred0_0;
|
|
22737
22797
|
let deferred0_1;
|
|
22738
22798
|
let deferred1_0;
|
|
@@ -22749,7 +22809,7 @@ function __wbg_get_imports() {
|
|
|
22749
22809
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22750
22810
|
}
|
|
22751
22811
|
},
|
|
22752
|
-
|
|
22812
|
+
__wbg_insertBlockHeader_7e97a5f52e1d540c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22753
22813
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
22754
22814
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
22755
22815
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -22757,7 +22817,7 @@ function __wbg_get_imports() {
|
|
|
22757
22817
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
22758
22818
|
return ret;
|
|
22759
22819
|
},
|
|
22760
|
-
|
|
22820
|
+
__wbg_insertPartialBlockchainNodes_57d1b2a9ba469df0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22761
22821
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22762
22822
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22763
22823
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -22765,7 +22825,7 @@ function __wbg_get_imports() {
|
|
|
22765
22825
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
22766
22826
|
return ret;
|
|
22767
22827
|
},
|
|
22768
|
-
|
|
22828
|
+
__wbg_insertSetting_2d699abf72009fa1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22769
22829
|
let deferred0_0;
|
|
22770
22830
|
let deferred0_1;
|
|
22771
22831
|
try {
|
|
@@ -22779,7 +22839,7 @@ function __wbg_get_imports() {
|
|
|
22779
22839
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22780
22840
|
}
|
|
22781
22841
|
},
|
|
22782
|
-
|
|
22842
|
+
__wbg_insertTransactionScript_3bc666c70beb260f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22783
22843
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22784
22844
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22785
22845
|
let v1;
|
|
@@ -22872,11 +22932,11 @@ function __wbg_get_imports() {
|
|
|
22872
22932
|
const ret = arg0.length;
|
|
22873
22933
|
return ret;
|
|
22874
22934
|
},
|
|
22875
|
-
|
|
22935
|
+
__wbg_listSettingKeys_05dadafcb90c698b: function(arg0, arg1) {
|
|
22876
22936
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
22877
22937
|
return ret;
|
|
22878
22938
|
},
|
|
22879
|
-
|
|
22939
|
+
__wbg_lockAccount_8309529edb82c560: function(arg0, arg1, arg2, arg3) {
|
|
22880
22940
|
let deferred0_0;
|
|
22881
22941
|
let deferred0_1;
|
|
22882
22942
|
try {
|
|
@@ -22960,7 +23020,7 @@ function __wbg_get_imports() {
|
|
|
22960
23020
|
const a = state0.a;
|
|
22961
23021
|
state0.a = 0;
|
|
22962
23022
|
try {
|
|
22963
|
-
return
|
|
23023
|
+
return wasm_bindgen__convert__closures_____invoke__h2a46aa320c20015b(a, state0.b, arg0, arg1);
|
|
22964
23024
|
} finally {
|
|
22965
23025
|
state0.a = a;
|
|
22966
23026
|
}
|
|
@@ -23067,7 +23127,7 @@ function __wbg_get_imports() {
|
|
|
23067
23127
|
const ret = NoteTag.__unwrap(arg0);
|
|
23068
23128
|
return ret;
|
|
23069
23129
|
},
|
|
23070
|
-
|
|
23130
|
+
__wbg_openDatabase_4f68920e634e6a36: function(arg0, arg1, arg2, arg3) {
|
|
23071
23131
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
23072
23132
|
return ret;
|
|
23073
23133
|
},
|
|
@@ -23098,7 +23158,7 @@ function __wbg_get_imports() {
|
|
|
23098
23158
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
23099
23159
|
return ret;
|
|
23100
23160
|
},
|
|
23101
|
-
|
|
23161
|
+
__wbg_pruneAccountHistory_6d75f9da793c7146: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23102
23162
|
let deferred0_0;
|
|
23103
23163
|
let deferred0_1;
|
|
23104
23164
|
let deferred1_0;
|
|
@@ -23115,7 +23175,7 @@ function __wbg_get_imports() {
|
|
|
23115
23175
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23116
23176
|
}
|
|
23117
23177
|
},
|
|
23118
|
-
|
|
23178
|
+
__wbg_pruneIrrelevantBlocks_0c5e2996bdd4f34d: function(arg0, arg1) {
|
|
23119
23179
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
23120
23180
|
return ret;
|
|
23121
23181
|
},
|
|
@@ -23133,13 +23193,13 @@ function __wbg_get_imports() {
|
|
|
23133
23193
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
23134
23194
|
arg0.releaseLock();
|
|
23135
23195
|
},
|
|
23136
|
-
|
|
23196
|
+
__wbg_removeAccountAddress_e36699c690cbd226: function(arg0, arg1, arg2, arg3) {
|
|
23137
23197
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23138
23198
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23139
23199
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
23140
23200
|
return ret;
|
|
23141
23201
|
},
|
|
23142
|
-
|
|
23202
|
+
__wbg_removeAccountAuth_aaf80576b7268aa3: function(arg0, arg1, arg2, arg3) {
|
|
23143
23203
|
let deferred0_0;
|
|
23144
23204
|
let deferred0_1;
|
|
23145
23205
|
try {
|
|
@@ -23151,7 +23211,7 @@ function __wbg_get_imports() {
|
|
|
23151
23211
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23152
23212
|
}
|
|
23153
23213
|
},
|
|
23154
|
-
|
|
23214
|
+
__wbg_removeAllMappingsForKey_99333cc84402fb4f: function(arg0, arg1, arg2, arg3) {
|
|
23155
23215
|
let deferred0_0;
|
|
23156
23216
|
let deferred0_1;
|
|
23157
23217
|
try {
|
|
@@ -23163,7 +23223,7 @@ function __wbg_get_imports() {
|
|
|
23163
23223
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23164
23224
|
}
|
|
23165
23225
|
},
|
|
23166
|
-
|
|
23226
|
+
__wbg_removeNoteTag_2071bbe1e7694e38: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23167
23227
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23168
23228
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23169
23229
|
let v1;
|
|
@@ -23179,7 +23239,7 @@ function __wbg_get_imports() {
|
|
|
23179
23239
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
23180
23240
|
return ret;
|
|
23181
23241
|
},
|
|
23182
|
-
|
|
23242
|
+
__wbg_removeSetting_f68b70cf07c8883d: function(arg0, arg1, arg2, arg3) {
|
|
23183
23243
|
let deferred0_0;
|
|
23184
23244
|
let deferred0_1;
|
|
23185
23245
|
try {
|
|
@@ -23371,13 +23431,13 @@ function __wbg_get_imports() {
|
|
|
23371
23431
|
const ret = TransactionSummary.__wrap(arg0);
|
|
23372
23432
|
return ret;
|
|
23373
23433
|
},
|
|
23374
|
-
|
|
23434
|
+
__wbg_undoAccountStates_432ad1aabd2a3a26: function(arg0, arg1, arg2, arg3) {
|
|
23375
23435
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23376
23436
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23377
23437
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
23378
23438
|
return ret;
|
|
23379
23439
|
},
|
|
23380
|
-
|
|
23440
|
+
__wbg_upsertAccountCode_133dd03094e8974e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23381
23441
|
let deferred0_0;
|
|
23382
23442
|
let deferred0_1;
|
|
23383
23443
|
try {
|
|
@@ -23391,7 +23451,7 @@ function __wbg_get_imports() {
|
|
|
23391
23451
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23392
23452
|
}
|
|
23393
23453
|
},
|
|
23394
|
-
|
|
23454
|
+
__wbg_upsertAccountRecord_97ec9821e9bce90c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
23395
23455
|
let deferred0_0;
|
|
23396
23456
|
let deferred0_1;
|
|
23397
23457
|
let deferred1_0;
|
|
@@ -23433,7 +23493,7 @@ function __wbg_get_imports() {
|
|
|
23433
23493
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
23434
23494
|
}
|
|
23435
23495
|
},
|
|
23436
|
-
|
|
23496
|
+
__wbg_upsertAccountStorage_81db74f4cf6442f3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23437
23497
|
let deferred0_0;
|
|
23438
23498
|
let deferred0_1;
|
|
23439
23499
|
try {
|
|
@@ -23447,7 +23507,7 @@ function __wbg_get_imports() {
|
|
|
23447
23507
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23448
23508
|
}
|
|
23449
23509
|
},
|
|
23450
|
-
|
|
23510
|
+
__wbg_upsertForeignAccountCode_5070ddc08c0ee632: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23451
23511
|
let deferred0_0;
|
|
23452
23512
|
let deferred0_1;
|
|
23453
23513
|
let deferred2_0;
|
|
@@ -23466,7 +23526,7 @@ function __wbg_get_imports() {
|
|
|
23466
23526
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23467
23527
|
}
|
|
23468
23528
|
},
|
|
23469
|
-
|
|
23529
|
+
__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) {
|
|
23470
23530
|
let deferred0_0;
|
|
23471
23531
|
let deferred0_1;
|
|
23472
23532
|
let deferred4_0;
|
|
@@ -23508,7 +23568,7 @@ function __wbg_get_imports() {
|
|
|
23508
23568
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
23509
23569
|
}
|
|
23510
23570
|
},
|
|
23511
|
-
|
|
23571
|
+
__wbg_upsertNoteScript_964eec397ad12e17: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23512
23572
|
let deferred0_0;
|
|
23513
23573
|
let deferred0_1;
|
|
23514
23574
|
try {
|
|
@@ -23522,7 +23582,7 @@ function __wbg_get_imports() {
|
|
|
23522
23582
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23523
23583
|
}
|
|
23524
23584
|
},
|
|
23525
|
-
|
|
23585
|
+
__wbg_upsertOutputNote_521c6dfb72b60b27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
23526
23586
|
let deferred0_0;
|
|
23527
23587
|
let deferred0_1;
|
|
23528
23588
|
let deferred2_0;
|
|
@@ -23550,7 +23610,7 @@ function __wbg_get_imports() {
|
|
|
23550
23610
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23551
23611
|
}
|
|
23552
23612
|
},
|
|
23553
|
-
|
|
23613
|
+
__wbg_upsertStorageMapEntries_9342c8c7ec58eaf4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23554
23614
|
let deferred0_0;
|
|
23555
23615
|
let deferred0_1;
|
|
23556
23616
|
try {
|
|
@@ -23564,7 +23624,7 @@ function __wbg_get_imports() {
|
|
|
23564
23624
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23565
23625
|
}
|
|
23566
23626
|
},
|
|
23567
|
-
|
|
23627
|
+
__wbg_upsertTransactionRecord_d12d00e12478f16d: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
23568
23628
|
let deferred0_0;
|
|
23569
23629
|
let deferred0_1;
|
|
23570
23630
|
try {
|
|
@@ -23585,7 +23645,7 @@ function __wbg_get_imports() {
|
|
|
23585
23645
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23586
23646
|
}
|
|
23587
23647
|
},
|
|
23588
|
-
|
|
23648
|
+
__wbg_upsertVaultAssets_a0586701be2577a6: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23589
23649
|
let deferred0_0;
|
|
23590
23650
|
let deferred0_1;
|
|
23591
23651
|
try {
|
|
@@ -23616,13 +23676,13 @@ function __wbg_get_imports() {
|
|
|
23616
23676
|
return ret;
|
|
23617
23677
|
},
|
|
23618
23678
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
23619
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23620
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23679
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 352, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23680
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h59e0a062e9afff1a, wasm_bindgen__convert__closures_____invoke__h29d102b2fd2d683c);
|
|
23621
23681
|
return ret;
|
|
23622
23682
|
},
|
|
23623
23683
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
23624
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23625
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23684
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 352, function: Function { arguments: [], shim_idx: 353, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23685
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h59e0a062e9afff1a, wasm_bindgen__convert__closures_____invoke__h134f6c798ed66cf8);
|
|
23626
23686
|
return ret;
|
|
23627
23687
|
},
|
|
23628
23688
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -23726,16 +23786,16 @@ function __wbg_get_imports() {
|
|
|
23726
23786
|
};
|
|
23727
23787
|
}
|
|
23728
23788
|
|
|
23729
|
-
function
|
|
23730
|
-
wasm.
|
|
23789
|
+
function wasm_bindgen__convert__closures_____invoke__h134f6c798ed66cf8(arg0, arg1) {
|
|
23790
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h134f6c798ed66cf8(arg0, arg1);
|
|
23731
23791
|
}
|
|
23732
23792
|
|
|
23733
|
-
function
|
|
23734
|
-
wasm.
|
|
23793
|
+
function wasm_bindgen__convert__closures_____invoke__h29d102b2fd2d683c(arg0, arg1, arg2) {
|
|
23794
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h29d102b2fd2d683c(arg0, arg1, arg2);
|
|
23735
23795
|
}
|
|
23736
23796
|
|
|
23737
|
-
function
|
|
23738
|
-
wasm.
|
|
23797
|
+
function wasm_bindgen__convert__closures_____invoke__h2a46aa320c20015b(arg0, arg1, arg2, arg3) {
|
|
23798
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2a46aa320c20015b(arg0, arg1, arg2, arg3);
|
|
23739
23799
|
}
|
|
23740
23800
|
|
|
23741
23801
|
|
|
@@ -24538,4 +24598,4 @@ async function __wbg_init(module_or_path) {
|
|
|
24538
24598
|
|
|
24539
24599
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
24540
24600
|
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, ExecutedTransaction, Felt, FeltArray, FetchedAccount, FetchedNote, FlattenedU8Vec, ForeignAccount, ForeignAccountArray, FungibleAsset, FungibleAssetDelta, FungibleAssetDeltaItem, GetProceduresResultItem, InputNote, InputNoteRecord, InputNoteState, InputNotes, IntoUnderlyingByteSource, IntoUnderlyingSink, IntoUnderlyingSource, JsAccountUpdate, JsStateSyncUpdate, JsStorageMapEntry, JsStorageSlot, JsVaultAsset, Library, MerklePath, NetworkId, NetworkType, Note, NoteAndArgs, NoteAndArgsArray, NoteArray, NoteAssets, NoteAttachment, NoteAttachmentKind, 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, PublicKey, RpcClient, Rpo256, SerializedInputNoteData, SerializedOutputNoteData, SerializedTransactionData, Signature, SigningInputs, SigningInputsType, SlotAndKeys, SparseMerklePath, StorageMap, StorageMapEntry, 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, setupLogging , __wbg_init, module$1 as __wasm_url };
|
|
24541
|
-
//# sourceMappingURL=Cargo-
|
|
24601
|
+
//# sourceMappingURL=Cargo-M3382VZc.js.map
|