@miden-sdk/miden-sdk 0.14.1 → 0.14.3
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-BZOulF0S.js → Cargo-DanGI-a8.js} +150 -114
- package/dist/Cargo-DanGI-a8.js.map +1 -0
- package/dist/api-types.d.ts +65 -7
- package/dist/assets/miden_client_web.wasm +0 -0
- package/dist/index.js +112 -25
- package/dist/index.js.map +1 -1
- package/dist/wasm.js +1 -1
- package/dist/workers/Cargo-DanGI-a8-DD61BgkT.js +24488 -0
- package/dist/workers/Cargo-DanGI-a8-DD61BgkT.js.map +1 -0
- package/dist/workers/assets/miden_client_web.wasm +0 -0
- package/dist/workers/web-client-methods-worker.js +151 -115
- package/dist/workers/web-client-methods-worker.js.map +1 -1
- package/dist/workers/web-client-methods-worker.module.js +551 -0
- package/dist/workers/web-client-methods-worker.module.js.map +1 -0
- package/package.json +2 -1
- package/dist/Cargo-BZOulF0S.js.map +0 -1
|
@@ -6644,46 +6644,54 @@ var cmp_1 = cmp;
|
|
|
6644
6644
|
|
|
6645
6645
|
const { safeRe: re, t } = reExports;
|
|
6646
6646
|
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6647
|
+
var lrucache;
|
|
6648
|
+
var hasRequiredLrucache;
|
|
6649
|
+
|
|
6650
|
+
function requireLrucache () {
|
|
6651
|
+
if (hasRequiredLrucache) return lrucache;
|
|
6652
|
+
hasRequiredLrucache = 1;
|
|
6653
|
+
class LRUCache {
|
|
6654
|
+
constructor () {
|
|
6655
|
+
this.max = 1000;
|
|
6656
|
+
this.map = new Map();
|
|
6657
|
+
}
|
|
6652
6658
|
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6659
|
+
get (key) {
|
|
6660
|
+
const value = this.map.get(key);
|
|
6661
|
+
if (value === undefined) {
|
|
6662
|
+
return undefined
|
|
6663
|
+
} else {
|
|
6664
|
+
// Remove the key from the map and add it to the end
|
|
6665
|
+
this.map.delete(key);
|
|
6666
|
+
this.map.set(key, value);
|
|
6667
|
+
return value
|
|
6668
|
+
}
|
|
6669
|
+
}
|
|
6664
6670
|
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6671
|
+
delete (key) {
|
|
6672
|
+
return this.map.delete(key)
|
|
6673
|
+
}
|
|
6668
6674
|
|
|
6669
|
-
|
|
6670
|
-
|
|
6675
|
+
set (key, value) {
|
|
6676
|
+
const deleted = this.delete(key);
|
|
6671
6677
|
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
+
if (!deleted && value !== undefined) {
|
|
6679
|
+
// If cache is full, delete the least recently used item
|
|
6680
|
+
if (this.map.size >= this.max) {
|
|
6681
|
+
const firstKey = this.map.keys().next().value;
|
|
6682
|
+
this.delete(firstKey);
|
|
6683
|
+
}
|
|
6678
6684
|
|
|
6679
|
-
|
|
6680
|
-
|
|
6685
|
+
this.map.set(key, value);
|
|
6686
|
+
}
|
|
6681
6687
|
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
}
|
|
6688
|
+
return this
|
|
6689
|
+
}
|
|
6690
|
+
}
|
|
6685
6691
|
|
|
6686
|
-
|
|
6692
|
+
lrucache = LRUCache;
|
|
6693
|
+
return lrucache;
|
|
6694
|
+
}
|
|
6687
6695
|
|
|
6688
6696
|
var range;
|
|
6689
6697
|
var hasRequiredRange;
|
|
@@ -6905,7 +6913,7 @@ function requireRange () {
|
|
|
6905
6913
|
|
|
6906
6914
|
range = Range;
|
|
6907
6915
|
|
|
6908
|
-
const LRU =
|
|
6916
|
+
const LRU = requireLrucache();
|
|
6909
6917
|
const cache = new LRU();
|
|
6910
6918
|
|
|
6911
6919
|
const parseOptions = parseOptions_1;
|
|
@@ -8758,12 +8766,40 @@ async function insertBlockHeader(dbId, blockNum, header, partialBlockchainPeaks,
|
|
|
8758
8766
|
partialBlockchainPeaks,
|
|
8759
8767
|
hasClientNotes: hasClientNotes.toString(),
|
|
8760
8768
|
};
|
|
8761
|
-
|
|
8769
|
+
// Mirror SQLite's `insert_block_header_tx`: do an INSERT OR IGNORE on the
|
|
8770
|
+
// row, then explicitly upgrade `has_client_notes` to true if the caller
|
|
8771
|
+
// says so. Two callers hit this:
|
|
8772
|
+
// - Genesis flow — no existing row; the add succeeds.
|
|
8773
|
+
// - `get_and_store_authenticated_block` for a past block — a row
|
|
8774
|
+
// written by `applyStateSync` typically already exists. Overwriting
|
|
8775
|
+
// it would clobber the correct historical peaks (popcount ==
|
|
8776
|
+
// block_num) with peaks from the caller's current `PartialMmr`
|
|
8777
|
+
// forest (popcount == current sync height). Later reads of those
|
|
8778
|
+
// peaks trip `MmrPeaks::new`'s InvalidPeaks validation and wedge
|
|
8779
|
+
// sync for the rest of the session.
|
|
8780
|
+
//
|
|
8781
|
+
// The `has_client_notes` upgrade is load-bearing: `get_tracked_block_
|
|
8782
|
+
// header_numbers` filters by this flag to seed `tracked_leaves`, which
|
|
8783
|
+
// `get_partial_blockchain_nodes(Forest)` relies on. A private-note
|
|
8784
|
+
// import at a block previously synced as irrelevant must flip the flag
|
|
8785
|
+
// to true or the auth paths won't be tracked.
|
|
8786
|
+
await db.blockHeaders.add(data).catch(async (err) => {
|
|
8787
|
+
if (!isConstraintError(err))
|
|
8788
|
+
throw err;
|
|
8789
|
+
if (hasClientNotes) {
|
|
8790
|
+
await db.blockHeaders.update(blockNum, { hasClientNotes: "true" });
|
|
8791
|
+
}
|
|
8792
|
+
});
|
|
8762
8793
|
}
|
|
8763
8794
|
catch (err) {
|
|
8764
8795
|
logWebStoreError(err);
|
|
8765
8796
|
}
|
|
8766
8797
|
}
|
|
8798
|
+
/** Detect Dexie's primary-key collision error across sync + bulk wrappings. */
|
|
8799
|
+
function isConstraintError(err) {
|
|
8800
|
+
const e = err;
|
|
8801
|
+
return e?.name === "ConstraintError" || e?.inner?.name === "ConstraintError";
|
|
8802
|
+
}
|
|
8767
8803
|
async function insertPartialBlockchainNodes(dbId, ids, nodes) {
|
|
8768
8804
|
try {
|
|
8769
8805
|
const db = getDatabase(dbId);
|
|
@@ -22066,7 +22102,7 @@ function __wbg_get_imports() {
|
|
|
22066
22102
|
const ret = AccountStorage.__wrap(arg0);
|
|
22067
22103
|
return ret;
|
|
22068
22104
|
},
|
|
22069
|
-
|
|
22105
|
+
__wbg_addNoteTag_11ef04a2021426ef: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22070
22106
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22071
22107
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22072
22108
|
let v1;
|
|
@@ -22089,15 +22125,15 @@ function __wbg_get_imports() {
|
|
|
22089
22125
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
22090
22126
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
22091
22127
|
}, arguments); },
|
|
22092
|
-
|
|
22128
|
+
__wbg_applyFullAccountState_06104a9f7cd6301c: function(arg0, arg1, arg2) {
|
|
22093
22129
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
22094
22130
|
return ret;
|
|
22095
22131
|
},
|
|
22096
|
-
|
|
22132
|
+
__wbg_applyStateSync_f03ce7a14d83ae1a: function(arg0, arg1, arg2) {
|
|
22097
22133
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
22098
22134
|
return ret;
|
|
22099
22135
|
},
|
|
22100
|
-
|
|
22136
|
+
__wbg_applyTransactionDelta_45aa0540549a17a5: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
22101
22137
|
let deferred0_0;
|
|
22102
22138
|
let deferred0_1;
|
|
22103
22139
|
let deferred1_0;
|
|
@@ -22232,7 +22268,7 @@ function __wbg_get_imports() {
|
|
|
22232
22268
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22233
22269
|
}
|
|
22234
22270
|
},
|
|
22235
|
-
|
|
22271
|
+
__wbg_exportStore_1d052c59453b2e6b: function(arg0, arg1) {
|
|
22236
22272
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
22237
22273
|
return ret;
|
|
22238
22274
|
},
|
|
@@ -22264,7 +22300,7 @@ function __wbg_get_imports() {
|
|
|
22264
22300
|
const ret = FetchedNote.__wrap(arg0);
|
|
22265
22301
|
return ret;
|
|
22266
22302
|
},
|
|
22267
|
-
|
|
22303
|
+
__wbg_forceImportStore_40b29b3a8e166d8f: function(arg0, arg1, arg2) {
|
|
22268
22304
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
22269
22305
|
return ret;
|
|
22270
22306
|
},
|
|
@@ -22284,7 +22320,7 @@ function __wbg_get_imports() {
|
|
|
22284
22320
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
22285
22321
|
return ret;
|
|
22286
22322
|
},
|
|
22287
|
-
|
|
22323
|
+
__wbg_getAccountAddresses_926ab3560c2a9431: function(arg0, arg1, arg2, arg3) {
|
|
22288
22324
|
let deferred0_0;
|
|
22289
22325
|
let deferred0_1;
|
|
22290
22326
|
try {
|
|
@@ -22296,7 +22332,7 @@ function __wbg_get_imports() {
|
|
|
22296
22332
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22297
22333
|
}
|
|
22298
22334
|
},
|
|
22299
|
-
|
|
22335
|
+
__wbg_getAccountAuthByPubKeyCommitment_6180aad0a5b10e89: function(arg0, arg1, arg2, arg3) {
|
|
22300
22336
|
let deferred0_0;
|
|
22301
22337
|
let deferred0_1;
|
|
22302
22338
|
try {
|
|
@@ -22308,7 +22344,7 @@ function __wbg_get_imports() {
|
|
|
22308
22344
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22309
22345
|
}
|
|
22310
22346
|
},
|
|
22311
|
-
|
|
22347
|
+
__wbg_getAccountCode_7282ed4c1b060f31: function(arg0, arg1, arg2, arg3) {
|
|
22312
22348
|
let deferred0_0;
|
|
22313
22349
|
let deferred0_1;
|
|
22314
22350
|
try {
|
|
@@ -22320,7 +22356,7 @@ function __wbg_get_imports() {
|
|
|
22320
22356
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22321
22357
|
}
|
|
22322
22358
|
},
|
|
22323
|
-
|
|
22359
|
+
__wbg_getAccountHeaderByCommitment_c7ead40688213791: function(arg0, arg1, arg2, arg3) {
|
|
22324
22360
|
let deferred0_0;
|
|
22325
22361
|
let deferred0_1;
|
|
22326
22362
|
try {
|
|
@@ -22332,7 +22368,7 @@ function __wbg_get_imports() {
|
|
|
22332
22368
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22333
22369
|
}
|
|
22334
22370
|
},
|
|
22335
|
-
|
|
22371
|
+
__wbg_getAccountHeader_33832f0bcfdb6862: function(arg0, arg1, arg2, arg3) {
|
|
22336
22372
|
let deferred0_0;
|
|
22337
22373
|
let deferred0_1;
|
|
22338
22374
|
try {
|
|
@@ -22344,7 +22380,7 @@ function __wbg_get_imports() {
|
|
|
22344
22380
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22345
22381
|
}
|
|
22346
22382
|
},
|
|
22347
|
-
|
|
22383
|
+
__wbg_getAccountIdByKeyCommitment_c6133713d0d915a2: function(arg0, arg1, arg2, arg3) {
|
|
22348
22384
|
let deferred0_0;
|
|
22349
22385
|
let deferred0_1;
|
|
22350
22386
|
try {
|
|
@@ -22356,11 +22392,11 @@ function __wbg_get_imports() {
|
|
|
22356
22392
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22357
22393
|
}
|
|
22358
22394
|
},
|
|
22359
|
-
|
|
22395
|
+
__wbg_getAccountIds_cee939c57cc6b89e: function(arg0, arg1) {
|
|
22360
22396
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
22361
22397
|
return ret;
|
|
22362
22398
|
},
|
|
22363
|
-
|
|
22399
|
+
__wbg_getAccountStorageMaps_e0d0a1db17eec3dc: function(arg0, arg1, arg2, arg3) {
|
|
22364
22400
|
let deferred0_0;
|
|
22365
22401
|
let deferred0_1;
|
|
22366
22402
|
try {
|
|
@@ -22372,7 +22408,7 @@ function __wbg_get_imports() {
|
|
|
22372
22408
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22373
22409
|
}
|
|
22374
22410
|
},
|
|
22375
|
-
|
|
22411
|
+
__wbg_getAccountStorage_c167b8bb7e6786e9: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22376
22412
|
let deferred0_0;
|
|
22377
22413
|
let deferred0_1;
|
|
22378
22414
|
try {
|
|
@@ -22386,7 +22422,7 @@ function __wbg_get_imports() {
|
|
|
22386
22422
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22387
22423
|
}
|
|
22388
22424
|
},
|
|
22389
|
-
|
|
22425
|
+
__wbg_getAccountVaultAssets_deebdbadff97833e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22390
22426
|
let deferred0_0;
|
|
22391
22427
|
let deferred0_1;
|
|
22392
22428
|
try {
|
|
@@ -22400,23 +22436,23 @@ function __wbg_get_imports() {
|
|
|
22400
22436
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22401
22437
|
}
|
|
22402
22438
|
},
|
|
22403
|
-
|
|
22439
|
+
__wbg_getAllAccountHeaders_8ee29c6d72075e33: function(arg0, arg1) {
|
|
22404
22440
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
22405
22441
|
return ret;
|
|
22406
22442
|
},
|
|
22407
|
-
|
|
22443
|
+
__wbg_getBlockHeaders_249b6687b100f621: function(arg0, arg1, arg2, arg3) {
|
|
22408
22444
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
22409
22445
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22410
22446
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
22411
22447
|
return ret;
|
|
22412
22448
|
},
|
|
22413
|
-
|
|
22449
|
+
__wbg_getForeignAccountCode_5e4e8d9037c06238: function(arg0, arg1, arg2, arg3) {
|
|
22414
22450
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22415
22451
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22416
22452
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
22417
22453
|
return ret;
|
|
22418
22454
|
},
|
|
22419
|
-
|
|
22455
|
+
__wbg_getInputNoteByOffset_a6c99499b09a1b98: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
22420
22456
|
let deferred1_0;
|
|
22421
22457
|
let deferred1_1;
|
|
22422
22458
|
try {
|
|
@@ -22430,25 +22466,25 @@ function __wbg_get_imports() {
|
|
|
22430
22466
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22431
22467
|
}
|
|
22432
22468
|
},
|
|
22433
|
-
|
|
22469
|
+
__wbg_getInputNotesFromIds_f17b728faada1f3c: function(arg0, arg1, arg2, arg3) {
|
|
22434
22470
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22435
22471
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22436
22472
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22437
22473
|
return ret;
|
|
22438
22474
|
},
|
|
22439
|
-
|
|
22475
|
+
__wbg_getInputNotesFromNullifiers_f562e855551c6d5d: function(arg0, arg1, arg2, arg3) {
|
|
22440
22476
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22441
22477
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22442
22478
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22443
22479
|
return ret;
|
|
22444
22480
|
},
|
|
22445
|
-
|
|
22481
|
+
__wbg_getInputNotes_3678c3a165fe6fb7: function(arg0, arg1, arg2, arg3) {
|
|
22446
22482
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22447
22483
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22448
22484
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22449
22485
|
return ret;
|
|
22450
22486
|
},
|
|
22451
|
-
|
|
22487
|
+
__wbg_getKeyCommitmentsByAccountId_62a1ded159bb6e85: function(arg0, arg1, arg2, arg3) {
|
|
22452
22488
|
let deferred0_0;
|
|
22453
22489
|
let deferred0_1;
|
|
22454
22490
|
try {
|
|
@@ -22460,7 +22496,7 @@ function __wbg_get_imports() {
|
|
|
22460
22496
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22461
22497
|
}
|
|
22462
22498
|
},
|
|
22463
|
-
|
|
22499
|
+
__wbg_getNoteScript_61487cdb7895a70f: function(arg0, arg1, arg2, arg3) {
|
|
22464
22500
|
let deferred0_0;
|
|
22465
22501
|
let deferred0_1;
|
|
22466
22502
|
try {
|
|
@@ -22472,33 +22508,33 @@ function __wbg_get_imports() {
|
|
|
22472
22508
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22473
22509
|
}
|
|
22474
22510
|
},
|
|
22475
|
-
|
|
22511
|
+
__wbg_getNoteTags_0c26db177ae89c88: function(arg0, arg1) {
|
|
22476
22512
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
22477
22513
|
return ret;
|
|
22478
22514
|
},
|
|
22479
|
-
|
|
22515
|
+
__wbg_getOutputNotesFromIds_9051d7dc5189798a: function(arg0, arg1, arg2, arg3) {
|
|
22480
22516
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22481
22517
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22482
22518
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22483
22519
|
return ret;
|
|
22484
22520
|
},
|
|
22485
|
-
|
|
22521
|
+
__wbg_getOutputNotesFromNullifiers_1e5c4da17a47cf06: function(arg0, arg1, arg2, arg3) {
|
|
22486
22522
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22487
22523
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22488
22524
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22489
22525
|
return ret;
|
|
22490
22526
|
},
|
|
22491
|
-
|
|
22527
|
+
__wbg_getOutputNotes_9e17595e613f9c01: function(arg0, arg1, arg2, arg3) {
|
|
22492
22528
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22493
22529
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22494
22530
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22495
22531
|
return ret;
|
|
22496
22532
|
},
|
|
22497
|
-
|
|
22533
|
+
__wbg_getPartialBlockchainNodesAll_9014a51f02bbd53d: function(arg0, arg1) {
|
|
22498
22534
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
22499
22535
|
return ret;
|
|
22500
22536
|
},
|
|
22501
|
-
|
|
22537
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_0254610e7caf6ed7: function(arg0, arg1, arg2, arg3) {
|
|
22502
22538
|
let deferred0_0;
|
|
22503
22539
|
let deferred0_1;
|
|
22504
22540
|
try {
|
|
@@ -22510,13 +22546,13 @@ function __wbg_get_imports() {
|
|
|
22510
22546
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22511
22547
|
}
|
|
22512
22548
|
},
|
|
22513
|
-
|
|
22549
|
+
__wbg_getPartialBlockchainNodes_216afeff33c3f62a: function(arg0, arg1, arg2, arg3) {
|
|
22514
22550
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22515
22551
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22516
22552
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
22517
22553
|
return ret;
|
|
22518
22554
|
},
|
|
22519
|
-
|
|
22555
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_1d5f843144fafd89: function(arg0, arg1, arg2) {
|
|
22520
22556
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
22521
22557
|
return ret;
|
|
22522
22558
|
},
|
|
@@ -22527,7 +22563,7 @@ function __wbg_get_imports() {
|
|
|
22527
22563
|
const ret = arg0.getReader();
|
|
22528
22564
|
return ret;
|
|
22529
22565
|
}, arguments); },
|
|
22530
|
-
|
|
22566
|
+
__wbg_getSetting_6042192ea6a1bf9d: function(arg0, arg1, arg2, arg3) {
|
|
22531
22567
|
let deferred0_0;
|
|
22532
22568
|
let deferred0_1;
|
|
22533
22569
|
try {
|
|
@@ -22539,7 +22575,7 @@ function __wbg_get_imports() {
|
|
|
22539
22575
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22540
22576
|
}
|
|
22541
22577
|
},
|
|
22542
|
-
|
|
22578
|
+
__wbg_getSyncHeight_e6eb57509633e416: function(arg0, arg1) {
|
|
22543
22579
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
22544
22580
|
return ret;
|
|
22545
22581
|
},
|
|
@@ -22547,15 +22583,15 @@ function __wbg_get_imports() {
|
|
|
22547
22583
|
const ret = arg0.getTime();
|
|
22548
22584
|
return ret;
|
|
22549
22585
|
},
|
|
22550
|
-
|
|
22586
|
+
__wbg_getTrackedBlockHeaderNumbers_10c6744062bd7dbd: function(arg0, arg1) {
|
|
22551
22587
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
22552
22588
|
return ret;
|
|
22553
22589
|
},
|
|
22554
|
-
|
|
22590
|
+
__wbg_getTrackedBlockHeaders_95c6dcc2ffd76496: function(arg0, arg1) {
|
|
22555
22591
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
22556
22592
|
return ret;
|
|
22557
22593
|
},
|
|
22558
|
-
|
|
22594
|
+
__wbg_getTransactions_5bae4cee1f2f5d61: function(arg0, arg1, arg2, arg3) {
|
|
22559
22595
|
let deferred0_0;
|
|
22560
22596
|
let deferred0_1;
|
|
22561
22597
|
try {
|
|
@@ -22567,7 +22603,7 @@ function __wbg_get_imports() {
|
|
|
22567
22603
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22568
22604
|
}
|
|
22569
22605
|
},
|
|
22570
|
-
|
|
22606
|
+
__wbg_getUnspentInputNoteNullifiers_c8d95cbd1b29253b: function(arg0, arg1) {
|
|
22571
22607
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
22572
22608
|
return ret;
|
|
22573
22609
|
},
|
|
@@ -22611,7 +22647,7 @@ function __wbg_get_imports() {
|
|
|
22611
22647
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
22612
22648
|
return ret;
|
|
22613
22649
|
},
|
|
22614
|
-
|
|
22650
|
+
__wbg_insertAccountAddress_de3f0be5aade3edb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22615
22651
|
let deferred0_0;
|
|
22616
22652
|
let deferred0_1;
|
|
22617
22653
|
try {
|
|
@@ -22625,7 +22661,7 @@ function __wbg_get_imports() {
|
|
|
22625
22661
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22626
22662
|
}
|
|
22627
22663
|
},
|
|
22628
|
-
|
|
22664
|
+
__wbg_insertAccountAuth_8d37e0d14f5d22b1: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22629
22665
|
let deferred0_0;
|
|
22630
22666
|
let deferred0_1;
|
|
22631
22667
|
let deferred1_0;
|
|
@@ -22642,7 +22678,7 @@ function __wbg_get_imports() {
|
|
|
22642
22678
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22643
22679
|
}
|
|
22644
22680
|
},
|
|
22645
|
-
|
|
22681
|
+
__wbg_insertAccountKeyMapping_1e78156f0d9819cc: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22646
22682
|
let deferred0_0;
|
|
22647
22683
|
let deferred0_1;
|
|
22648
22684
|
let deferred1_0;
|
|
@@ -22659,7 +22695,7 @@ function __wbg_get_imports() {
|
|
|
22659
22695
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22660
22696
|
}
|
|
22661
22697
|
},
|
|
22662
|
-
|
|
22698
|
+
__wbg_insertBlockHeader_b2f6b48025b26202: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22663
22699
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
22664
22700
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
22665
22701
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -22667,7 +22703,7 @@ function __wbg_get_imports() {
|
|
|
22667
22703
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
22668
22704
|
return ret;
|
|
22669
22705
|
},
|
|
22670
|
-
|
|
22706
|
+
__wbg_insertPartialBlockchainNodes_b3da456780837be0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22671
22707
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22672
22708
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22673
22709
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -22675,7 +22711,7 @@ function __wbg_get_imports() {
|
|
|
22675
22711
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
22676
22712
|
return ret;
|
|
22677
22713
|
},
|
|
22678
|
-
|
|
22714
|
+
__wbg_insertSetting_327278750a8e8389: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22679
22715
|
let deferred0_0;
|
|
22680
22716
|
let deferred0_1;
|
|
22681
22717
|
try {
|
|
@@ -22689,7 +22725,7 @@ function __wbg_get_imports() {
|
|
|
22689
22725
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22690
22726
|
}
|
|
22691
22727
|
},
|
|
22692
|
-
|
|
22728
|
+
__wbg_insertTransactionScript_4289837b45dd2e6b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22693
22729
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22694
22730
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22695
22731
|
let v1;
|
|
@@ -22782,11 +22818,11 @@ function __wbg_get_imports() {
|
|
|
22782
22818
|
const ret = arg0.length;
|
|
22783
22819
|
return ret;
|
|
22784
22820
|
},
|
|
22785
|
-
|
|
22821
|
+
__wbg_listSettingKeys_c697458b11d26274: function(arg0, arg1) {
|
|
22786
22822
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
22787
22823
|
return ret;
|
|
22788
22824
|
},
|
|
22789
|
-
|
|
22825
|
+
__wbg_lockAccount_7e4b2eaef4b9c0ae: function(arg0, arg1, arg2, arg3) {
|
|
22790
22826
|
let deferred0_0;
|
|
22791
22827
|
let deferred0_1;
|
|
22792
22828
|
try {
|
|
@@ -22870,7 +22906,7 @@ function __wbg_get_imports() {
|
|
|
22870
22906
|
const a = state0.a;
|
|
22871
22907
|
state0.a = 0;
|
|
22872
22908
|
try {
|
|
22873
|
-
return
|
|
22909
|
+
return wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(a, state0.b, arg0, arg1);
|
|
22874
22910
|
} finally {
|
|
22875
22911
|
state0.a = a;
|
|
22876
22912
|
}
|
|
@@ -22977,7 +23013,7 @@ function __wbg_get_imports() {
|
|
|
22977
23013
|
const ret = NoteTag.__unwrap(arg0);
|
|
22978
23014
|
return ret;
|
|
22979
23015
|
},
|
|
22980
|
-
|
|
23016
|
+
__wbg_openDatabase_f82f982d13ff7823: function(arg0, arg1, arg2, arg3) {
|
|
22981
23017
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
22982
23018
|
return ret;
|
|
22983
23019
|
},
|
|
@@ -23008,7 +23044,7 @@ function __wbg_get_imports() {
|
|
|
23008
23044
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
23009
23045
|
return ret;
|
|
23010
23046
|
},
|
|
23011
|
-
|
|
23047
|
+
__wbg_pruneAccountHistory_17467a4cfcb3099b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23012
23048
|
let deferred0_0;
|
|
23013
23049
|
let deferred0_1;
|
|
23014
23050
|
let deferred1_0;
|
|
@@ -23025,7 +23061,7 @@ function __wbg_get_imports() {
|
|
|
23025
23061
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23026
23062
|
}
|
|
23027
23063
|
},
|
|
23028
|
-
|
|
23064
|
+
__wbg_pruneIrrelevantBlocks_2fe3ae3b6757dae5: function(arg0, arg1) {
|
|
23029
23065
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
23030
23066
|
return ret;
|
|
23031
23067
|
},
|
|
@@ -23043,13 +23079,13 @@ function __wbg_get_imports() {
|
|
|
23043
23079
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
23044
23080
|
arg0.releaseLock();
|
|
23045
23081
|
},
|
|
23046
|
-
|
|
23082
|
+
__wbg_removeAccountAddress_a099b08cd765b1fe: function(arg0, arg1, arg2, arg3) {
|
|
23047
23083
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23048
23084
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23049
23085
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
23050
23086
|
return ret;
|
|
23051
23087
|
},
|
|
23052
|
-
|
|
23088
|
+
__wbg_removeAccountAuth_c3eba3ecad64781a: function(arg0, arg1, arg2, arg3) {
|
|
23053
23089
|
let deferred0_0;
|
|
23054
23090
|
let deferred0_1;
|
|
23055
23091
|
try {
|
|
@@ -23061,7 +23097,7 @@ function __wbg_get_imports() {
|
|
|
23061
23097
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23062
23098
|
}
|
|
23063
23099
|
},
|
|
23064
|
-
|
|
23100
|
+
__wbg_removeAllMappingsForKey_c1d444d71e38a4b4: function(arg0, arg1, arg2, arg3) {
|
|
23065
23101
|
let deferred0_0;
|
|
23066
23102
|
let deferred0_1;
|
|
23067
23103
|
try {
|
|
@@ -23073,7 +23109,7 @@ function __wbg_get_imports() {
|
|
|
23073
23109
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23074
23110
|
}
|
|
23075
23111
|
},
|
|
23076
|
-
|
|
23112
|
+
__wbg_removeNoteTag_07746f6aa221d3c6: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23077
23113
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23078
23114
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23079
23115
|
let v1;
|
|
@@ -23089,7 +23125,7 @@ function __wbg_get_imports() {
|
|
|
23089
23125
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
23090
23126
|
return ret;
|
|
23091
23127
|
},
|
|
23092
|
-
|
|
23128
|
+
__wbg_removeSetting_ed28cefbd3c96fdb: function(arg0, arg1, arg2, arg3) {
|
|
23093
23129
|
let deferred0_0;
|
|
23094
23130
|
let deferred0_1;
|
|
23095
23131
|
try {
|
|
@@ -23281,13 +23317,13 @@ function __wbg_get_imports() {
|
|
|
23281
23317
|
const ret = TransactionSummary.__wrap(arg0);
|
|
23282
23318
|
return ret;
|
|
23283
23319
|
},
|
|
23284
|
-
|
|
23320
|
+
__wbg_undoAccountStates_f537fe1c071a86ac: function(arg0, arg1, arg2, arg3) {
|
|
23285
23321
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23286
23322
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23287
23323
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
23288
23324
|
return ret;
|
|
23289
23325
|
},
|
|
23290
|
-
|
|
23326
|
+
__wbg_upsertAccountCode_cc05c6891e7d67cc: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23291
23327
|
let deferred0_0;
|
|
23292
23328
|
let deferred0_1;
|
|
23293
23329
|
try {
|
|
@@ -23301,7 +23337,7 @@ function __wbg_get_imports() {
|
|
|
23301
23337
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23302
23338
|
}
|
|
23303
23339
|
},
|
|
23304
|
-
|
|
23340
|
+
__wbg_upsertAccountRecord_cf92f5b6aa4078a0: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
23305
23341
|
let deferred0_0;
|
|
23306
23342
|
let deferred0_1;
|
|
23307
23343
|
let deferred1_0;
|
|
@@ -23343,7 +23379,7 @@ function __wbg_get_imports() {
|
|
|
23343
23379
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
23344
23380
|
}
|
|
23345
23381
|
},
|
|
23346
|
-
|
|
23382
|
+
__wbg_upsertAccountStorage_8afbfc3a0abe8fb8: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23347
23383
|
let deferred0_0;
|
|
23348
23384
|
let deferred0_1;
|
|
23349
23385
|
try {
|
|
@@ -23357,7 +23393,7 @@ function __wbg_get_imports() {
|
|
|
23357
23393
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23358
23394
|
}
|
|
23359
23395
|
},
|
|
23360
|
-
|
|
23396
|
+
__wbg_upsertForeignAccountCode_84c9acf06fa513ab: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23361
23397
|
let deferred0_0;
|
|
23362
23398
|
let deferred0_1;
|
|
23363
23399
|
let deferred2_0;
|
|
@@ -23376,7 +23412,7 @@ function __wbg_get_imports() {
|
|
|
23376
23412
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23377
23413
|
}
|
|
23378
23414
|
},
|
|
23379
|
-
|
|
23415
|
+
__wbg_upsertInputNote_f2059d78cbceeb16: 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) {
|
|
23380
23416
|
let deferred0_0;
|
|
23381
23417
|
let deferred0_1;
|
|
23382
23418
|
let deferred4_0;
|
|
@@ -23418,7 +23454,7 @@ function __wbg_get_imports() {
|
|
|
23418
23454
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
23419
23455
|
}
|
|
23420
23456
|
},
|
|
23421
|
-
|
|
23457
|
+
__wbg_upsertNoteScript_64659c0e516bb6eb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23422
23458
|
let deferred0_0;
|
|
23423
23459
|
let deferred0_1;
|
|
23424
23460
|
try {
|
|
@@ -23432,7 +23468,7 @@ function __wbg_get_imports() {
|
|
|
23432
23468
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23433
23469
|
}
|
|
23434
23470
|
},
|
|
23435
|
-
|
|
23471
|
+
__wbg_upsertOutputNote_5b4fc218cd85a558: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
23436
23472
|
let deferred0_0;
|
|
23437
23473
|
let deferred0_1;
|
|
23438
23474
|
let deferred2_0;
|
|
@@ -23460,7 +23496,7 @@ function __wbg_get_imports() {
|
|
|
23460
23496
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23461
23497
|
}
|
|
23462
23498
|
},
|
|
23463
|
-
|
|
23499
|
+
__wbg_upsertStorageMapEntries_78d89c536a6ba418: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23464
23500
|
let deferred0_0;
|
|
23465
23501
|
let deferred0_1;
|
|
23466
23502
|
try {
|
|
@@ -23474,7 +23510,7 @@ function __wbg_get_imports() {
|
|
|
23474
23510
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23475
23511
|
}
|
|
23476
23512
|
},
|
|
23477
|
-
|
|
23513
|
+
__wbg_upsertTransactionRecord_fb53cbffc8f38bd3: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
23478
23514
|
let deferred0_0;
|
|
23479
23515
|
let deferred0_1;
|
|
23480
23516
|
try {
|
|
@@ -23495,7 +23531,7 @@ function __wbg_get_imports() {
|
|
|
23495
23531
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23496
23532
|
}
|
|
23497
23533
|
},
|
|
23498
|
-
|
|
23534
|
+
__wbg_upsertVaultAssets_7369708ff470bcda: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23499
23535
|
let deferred0_0;
|
|
23500
23536
|
let deferred0_1;
|
|
23501
23537
|
try {
|
|
@@ -23526,13 +23562,13 @@ function __wbg_get_imports() {
|
|
|
23526
23562
|
return ret;
|
|
23527
23563
|
},
|
|
23528
23564
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
23529
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23530
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23565
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 354, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23566
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a);
|
|
23531
23567
|
return ret;
|
|
23532
23568
|
},
|
|
23533
23569
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
23534
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23535
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23570
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 354, function: Function { arguments: [], shim_idx: 355, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23571
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9);
|
|
23536
23572
|
return ret;
|
|
23537
23573
|
},
|
|
23538
23574
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -23636,16 +23672,16 @@ function __wbg_get_imports() {
|
|
|
23636
23672
|
};
|
|
23637
23673
|
}
|
|
23638
23674
|
|
|
23639
|
-
function
|
|
23640
|
-
wasm.
|
|
23675
|
+
function wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1) {
|
|
23676
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1);
|
|
23641
23677
|
}
|
|
23642
23678
|
|
|
23643
|
-
function
|
|
23644
|
-
wasm.
|
|
23679
|
+
function wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2) {
|
|
23680
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2);
|
|
23645
23681
|
}
|
|
23646
23682
|
|
|
23647
|
-
function
|
|
23648
|
-
wasm.
|
|
23683
|
+
function wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3) {
|
|
23684
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3);
|
|
23649
23685
|
}
|
|
23650
23686
|
|
|
23651
23687
|
|
|
@@ -24448,4 +24484,4 @@ async function __wbg_init(module_or_path) {
|
|
|
24448
24484
|
|
|
24449
24485
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
24450
24486
|
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 };
|
|
24451
|
-
//# sourceMappingURL=Cargo-
|
|
24487
|
+
//# sourceMappingURL=Cargo-DanGI-a8.js.map
|