@miden-sdk/miden-sdk 0.14.0 → 0.14.1
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-M1xGvXNQ.js → Cargo-BZOulF0S.js} +114 -125
- package/dist/{Cargo-M1xGvXNQ.js.map → Cargo-BZOulF0S.js.map} +1 -1
- package/dist/assets/miden_client_web.wasm +0 -0
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/dist/wasm.js +11 -1
- package/dist/wasm.js.map +1 -1
- package/dist/workers/assets/miden_client_web.wasm +0 -0
- package/dist/workers/web-client-methods-worker.js +24621 -3
- package/dist/workers/web-client-methods-worker.js.map +1 -1
- package/package.json +2 -1
- package/dist/workers/Cargo-M1xGvXNQ-M1xGvXNQ.js +0 -24462
- package/dist/workers/Cargo-M1xGvXNQ-M1xGvXNQ.js.map +0 -1
|
@@ -6644,55 +6644,47 @@ var cmp_1 = cmp;
|
|
|
6644
6644
|
|
|
6645
6645
|
const { safeRe: re, t } = reExports;
|
|
6646
6646
|
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
hasRequiredLrucache = 1;
|
|
6653
|
-
class LRUCache {
|
|
6654
|
-
constructor () {
|
|
6655
|
-
this.max = 1000;
|
|
6656
|
-
this.map = new Map();
|
|
6657
|
-
}
|
|
6647
|
+
class LRUCache {
|
|
6648
|
+
constructor () {
|
|
6649
|
+
this.max = 1000;
|
|
6650
|
+
this.map = new Map();
|
|
6651
|
+
}
|
|
6658
6652
|
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6653
|
+
get (key) {
|
|
6654
|
+
const value = this.map.get(key);
|
|
6655
|
+
if (value === undefined) {
|
|
6656
|
+
return undefined
|
|
6657
|
+
} else {
|
|
6658
|
+
// Remove the key from the map and add it to the end
|
|
6659
|
+
this.map.delete(key);
|
|
6660
|
+
this.map.set(key, value);
|
|
6661
|
+
return value
|
|
6662
|
+
}
|
|
6663
|
+
}
|
|
6670
6664
|
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6665
|
+
delete (key) {
|
|
6666
|
+
return this.map.delete(key)
|
|
6667
|
+
}
|
|
6674
6668
|
|
|
6675
|
-
|
|
6676
|
-
|
|
6669
|
+
set (key, value) {
|
|
6670
|
+
const deleted = this.delete(key);
|
|
6677
6671
|
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
this.map.set(key, value);
|
|
6686
|
-
}
|
|
6672
|
+
if (!deleted && value !== undefined) {
|
|
6673
|
+
// If cache is full, delete the least recently used item
|
|
6674
|
+
if (this.map.size >= this.max) {
|
|
6675
|
+
const firstKey = this.map.keys().next().value;
|
|
6676
|
+
this.delete(firstKey);
|
|
6677
|
+
}
|
|
6687
6678
|
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
}
|
|
6679
|
+
this.map.set(key, value);
|
|
6680
|
+
}
|
|
6691
6681
|
|
|
6692
|
-
|
|
6693
|
-
|
|
6682
|
+
return this
|
|
6683
|
+
}
|
|
6694
6684
|
}
|
|
6695
6685
|
|
|
6686
|
+
var lrucache = LRUCache;
|
|
6687
|
+
|
|
6696
6688
|
var range;
|
|
6697
6689
|
var hasRequiredRange;
|
|
6698
6690
|
|
|
@@ -6913,7 +6905,7 @@ function requireRange () {
|
|
|
6913
6905
|
|
|
6914
6906
|
range = Range;
|
|
6915
6907
|
|
|
6916
|
-
const LRU =
|
|
6908
|
+
const LRU = lrucache;
|
|
6917
6909
|
const cache = new LRU();
|
|
6918
6910
|
|
|
6919
6911
|
const parseOptions = parseOptions_1;
|
|
@@ -22074,7 +22066,7 @@ function __wbg_get_imports() {
|
|
|
22074
22066
|
const ret = AccountStorage.__wrap(arg0);
|
|
22075
22067
|
return ret;
|
|
22076
22068
|
},
|
|
22077
|
-
|
|
22069
|
+
__wbg_addNoteTag_63799a9478c87a90: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22078
22070
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22079
22071
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22080
22072
|
let v1;
|
|
@@ -22097,15 +22089,15 @@ function __wbg_get_imports() {
|
|
|
22097
22089
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
22098
22090
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
22099
22091
|
}, arguments); },
|
|
22100
|
-
|
|
22092
|
+
__wbg_applyFullAccountState_f1ff4a1d13811963: function(arg0, arg1, arg2) {
|
|
22101
22093
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
22102
22094
|
return ret;
|
|
22103
22095
|
},
|
|
22104
|
-
|
|
22096
|
+
__wbg_applyStateSync_24ad223fd10a4973: function(arg0, arg1, arg2) {
|
|
22105
22097
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
22106
22098
|
return ret;
|
|
22107
22099
|
},
|
|
22108
|
-
|
|
22100
|
+
__wbg_applyTransactionDelta_6041c5f076d8405c: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
22109
22101
|
let deferred0_0;
|
|
22110
22102
|
let deferred0_1;
|
|
22111
22103
|
let deferred1_0;
|
|
@@ -22240,7 +22232,7 @@ function __wbg_get_imports() {
|
|
|
22240
22232
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22241
22233
|
}
|
|
22242
22234
|
},
|
|
22243
|
-
|
|
22235
|
+
__wbg_exportStore_961eb403ce6401e7: function(arg0, arg1) {
|
|
22244
22236
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
22245
22237
|
return ret;
|
|
22246
22238
|
},
|
|
@@ -22272,7 +22264,7 @@ function __wbg_get_imports() {
|
|
|
22272
22264
|
const ret = FetchedNote.__wrap(arg0);
|
|
22273
22265
|
return ret;
|
|
22274
22266
|
},
|
|
22275
|
-
|
|
22267
|
+
__wbg_forceImportStore_7ec9187226bc64a6: function(arg0, arg1, arg2) {
|
|
22276
22268
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
22277
22269
|
return ret;
|
|
22278
22270
|
},
|
|
@@ -22292,7 +22284,7 @@ function __wbg_get_imports() {
|
|
|
22292
22284
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
22293
22285
|
return ret;
|
|
22294
22286
|
},
|
|
22295
|
-
|
|
22287
|
+
__wbg_getAccountAddresses_ce9cbae0dbe8d488: function(arg0, arg1, arg2, arg3) {
|
|
22296
22288
|
let deferred0_0;
|
|
22297
22289
|
let deferred0_1;
|
|
22298
22290
|
try {
|
|
@@ -22304,7 +22296,7 @@ function __wbg_get_imports() {
|
|
|
22304
22296
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22305
22297
|
}
|
|
22306
22298
|
},
|
|
22307
|
-
|
|
22299
|
+
__wbg_getAccountAuthByPubKeyCommitment_9108bcc540b259f8: function(arg0, arg1, arg2, arg3) {
|
|
22308
22300
|
let deferred0_0;
|
|
22309
22301
|
let deferred0_1;
|
|
22310
22302
|
try {
|
|
@@ -22316,7 +22308,7 @@ function __wbg_get_imports() {
|
|
|
22316
22308
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22317
22309
|
}
|
|
22318
22310
|
},
|
|
22319
|
-
|
|
22311
|
+
__wbg_getAccountCode_d6a66dc4c8bcd0fb: function(arg0, arg1, arg2, arg3) {
|
|
22320
22312
|
let deferred0_0;
|
|
22321
22313
|
let deferred0_1;
|
|
22322
22314
|
try {
|
|
@@ -22328,7 +22320,7 @@ function __wbg_get_imports() {
|
|
|
22328
22320
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22329
22321
|
}
|
|
22330
22322
|
},
|
|
22331
|
-
|
|
22323
|
+
__wbg_getAccountHeaderByCommitment_5a38a4f46714ab0c: function(arg0, arg1, arg2, arg3) {
|
|
22332
22324
|
let deferred0_0;
|
|
22333
22325
|
let deferred0_1;
|
|
22334
22326
|
try {
|
|
@@ -22340,7 +22332,7 @@ function __wbg_get_imports() {
|
|
|
22340
22332
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22341
22333
|
}
|
|
22342
22334
|
},
|
|
22343
|
-
|
|
22335
|
+
__wbg_getAccountHeader_2fc7d24bb322f741: function(arg0, arg1, arg2, arg3) {
|
|
22344
22336
|
let deferred0_0;
|
|
22345
22337
|
let deferred0_1;
|
|
22346
22338
|
try {
|
|
@@ -22352,7 +22344,7 @@ function __wbg_get_imports() {
|
|
|
22352
22344
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22353
22345
|
}
|
|
22354
22346
|
},
|
|
22355
|
-
|
|
22347
|
+
__wbg_getAccountIdByKeyCommitment_cd45cb20eb4179c6: function(arg0, arg1, arg2, arg3) {
|
|
22356
22348
|
let deferred0_0;
|
|
22357
22349
|
let deferred0_1;
|
|
22358
22350
|
try {
|
|
@@ -22364,11 +22356,11 @@ function __wbg_get_imports() {
|
|
|
22364
22356
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22365
22357
|
}
|
|
22366
22358
|
},
|
|
22367
|
-
|
|
22359
|
+
__wbg_getAccountIds_011f27983158f415: function(arg0, arg1) {
|
|
22368
22360
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
22369
22361
|
return ret;
|
|
22370
22362
|
},
|
|
22371
|
-
|
|
22363
|
+
__wbg_getAccountStorageMaps_e66cd035c5bbb97b: function(arg0, arg1, arg2, arg3) {
|
|
22372
22364
|
let deferred0_0;
|
|
22373
22365
|
let deferred0_1;
|
|
22374
22366
|
try {
|
|
@@ -22380,7 +22372,7 @@ function __wbg_get_imports() {
|
|
|
22380
22372
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22381
22373
|
}
|
|
22382
22374
|
},
|
|
22383
|
-
|
|
22375
|
+
__wbg_getAccountStorage_ec182807a0c17c91: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22384
22376
|
let deferred0_0;
|
|
22385
22377
|
let deferred0_1;
|
|
22386
22378
|
try {
|
|
@@ -22394,7 +22386,7 @@ function __wbg_get_imports() {
|
|
|
22394
22386
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22395
22387
|
}
|
|
22396
22388
|
},
|
|
22397
|
-
|
|
22389
|
+
__wbg_getAccountVaultAssets_bccdee600be89096: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22398
22390
|
let deferred0_0;
|
|
22399
22391
|
let deferred0_1;
|
|
22400
22392
|
try {
|
|
@@ -22408,23 +22400,23 @@ function __wbg_get_imports() {
|
|
|
22408
22400
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22409
22401
|
}
|
|
22410
22402
|
},
|
|
22411
|
-
|
|
22403
|
+
__wbg_getAllAccountHeaders_74acd216317a5f87: function(arg0, arg1) {
|
|
22412
22404
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
22413
22405
|
return ret;
|
|
22414
22406
|
},
|
|
22415
|
-
|
|
22407
|
+
__wbg_getBlockHeaders_05b30aae935a1a7d: function(arg0, arg1, arg2, arg3) {
|
|
22416
22408
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
22417
22409
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22418
22410
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
22419
22411
|
return ret;
|
|
22420
22412
|
},
|
|
22421
|
-
|
|
22413
|
+
__wbg_getForeignAccountCode_213f3c8e7e729c1a: function(arg0, arg1, arg2, arg3) {
|
|
22422
22414
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22423
22415
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22424
22416
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
22425
22417
|
return ret;
|
|
22426
22418
|
},
|
|
22427
|
-
|
|
22419
|
+
__wbg_getInputNoteByOffset_0bee418c75072b27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
22428
22420
|
let deferred1_0;
|
|
22429
22421
|
let deferred1_1;
|
|
22430
22422
|
try {
|
|
@@ -22438,25 +22430,25 @@ function __wbg_get_imports() {
|
|
|
22438
22430
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22439
22431
|
}
|
|
22440
22432
|
},
|
|
22441
|
-
|
|
22433
|
+
__wbg_getInputNotesFromIds_721daab430964ba8: function(arg0, arg1, arg2, arg3) {
|
|
22442
22434
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22443
22435
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22444
22436
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22445
22437
|
return ret;
|
|
22446
22438
|
},
|
|
22447
|
-
|
|
22439
|
+
__wbg_getInputNotesFromNullifiers_f3bab786cefda999: function(arg0, arg1, arg2, arg3) {
|
|
22448
22440
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22449
22441
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22450
22442
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22451
22443
|
return ret;
|
|
22452
22444
|
},
|
|
22453
|
-
|
|
22445
|
+
__wbg_getInputNotes_eb7302d670b898b8: function(arg0, arg1, arg2, arg3) {
|
|
22454
22446
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22455
22447
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22456
22448
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22457
22449
|
return ret;
|
|
22458
22450
|
},
|
|
22459
|
-
|
|
22451
|
+
__wbg_getKeyCommitmentsByAccountId_39dba15570f24593: function(arg0, arg1, arg2, arg3) {
|
|
22460
22452
|
let deferred0_0;
|
|
22461
22453
|
let deferred0_1;
|
|
22462
22454
|
try {
|
|
@@ -22468,7 +22460,7 @@ function __wbg_get_imports() {
|
|
|
22468
22460
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22469
22461
|
}
|
|
22470
22462
|
},
|
|
22471
|
-
|
|
22463
|
+
__wbg_getNoteScript_efda320e2c0fccf7: function(arg0, arg1, arg2, arg3) {
|
|
22472
22464
|
let deferred0_0;
|
|
22473
22465
|
let deferred0_1;
|
|
22474
22466
|
try {
|
|
@@ -22480,33 +22472,33 @@ function __wbg_get_imports() {
|
|
|
22480
22472
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22481
22473
|
}
|
|
22482
22474
|
},
|
|
22483
|
-
|
|
22475
|
+
__wbg_getNoteTags_d6b8022f9b4859e8: function(arg0, arg1) {
|
|
22484
22476
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
22485
22477
|
return ret;
|
|
22486
22478
|
},
|
|
22487
|
-
|
|
22479
|
+
__wbg_getOutputNotesFromIds_fa5c634a82cd6bff: function(arg0, arg1, arg2, arg3) {
|
|
22488
22480
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22489
22481
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22490
22482
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22491
22483
|
return ret;
|
|
22492
22484
|
},
|
|
22493
|
-
|
|
22485
|
+
__wbg_getOutputNotesFromNullifiers_91fb57f239d4ca70: function(arg0, arg1, arg2, arg3) {
|
|
22494
22486
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22495
22487
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22496
22488
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22497
22489
|
return ret;
|
|
22498
22490
|
},
|
|
22499
|
-
|
|
22491
|
+
__wbg_getOutputNotes_a1065157d0831b01: function(arg0, arg1, arg2, arg3) {
|
|
22500
22492
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22501
22493
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22502
22494
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22503
22495
|
return ret;
|
|
22504
22496
|
},
|
|
22505
|
-
|
|
22497
|
+
__wbg_getPartialBlockchainNodesAll_ddea8ea03a56c531: function(arg0, arg1) {
|
|
22506
22498
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
22507
22499
|
return ret;
|
|
22508
22500
|
},
|
|
22509
|
-
|
|
22501
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_959b31301df8c438: function(arg0, arg1, arg2, arg3) {
|
|
22510
22502
|
let deferred0_0;
|
|
22511
22503
|
let deferred0_1;
|
|
22512
22504
|
try {
|
|
@@ -22518,13 +22510,13 @@ function __wbg_get_imports() {
|
|
|
22518
22510
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22519
22511
|
}
|
|
22520
22512
|
},
|
|
22521
|
-
|
|
22513
|
+
__wbg_getPartialBlockchainNodes_09bd2967864c4c45: function(arg0, arg1, arg2, arg3) {
|
|
22522
22514
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22523
22515
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22524
22516
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
22525
22517
|
return ret;
|
|
22526
22518
|
},
|
|
22527
|
-
|
|
22519
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_b5b9e95f32003e32: function(arg0, arg1, arg2) {
|
|
22528
22520
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
22529
22521
|
return ret;
|
|
22530
22522
|
},
|
|
@@ -22535,7 +22527,7 @@ function __wbg_get_imports() {
|
|
|
22535
22527
|
const ret = arg0.getReader();
|
|
22536
22528
|
return ret;
|
|
22537
22529
|
}, arguments); },
|
|
22538
|
-
|
|
22530
|
+
__wbg_getSetting_ba46bcae2e2b7d6c: function(arg0, arg1, arg2, arg3) {
|
|
22539
22531
|
let deferred0_0;
|
|
22540
22532
|
let deferred0_1;
|
|
22541
22533
|
try {
|
|
@@ -22547,7 +22539,7 @@ function __wbg_get_imports() {
|
|
|
22547
22539
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22548
22540
|
}
|
|
22549
22541
|
},
|
|
22550
|
-
|
|
22542
|
+
__wbg_getSyncHeight_b986a41f20a4c60f: function(arg0, arg1) {
|
|
22551
22543
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
22552
22544
|
return ret;
|
|
22553
22545
|
},
|
|
@@ -22555,15 +22547,15 @@ function __wbg_get_imports() {
|
|
|
22555
22547
|
const ret = arg0.getTime();
|
|
22556
22548
|
return ret;
|
|
22557
22549
|
},
|
|
22558
|
-
|
|
22550
|
+
__wbg_getTrackedBlockHeaderNumbers_13758201e4acf879: function(arg0, arg1) {
|
|
22559
22551
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
22560
22552
|
return ret;
|
|
22561
22553
|
},
|
|
22562
|
-
|
|
22554
|
+
__wbg_getTrackedBlockHeaders_e01f9f3411d5db34: function(arg0, arg1) {
|
|
22563
22555
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
22564
22556
|
return ret;
|
|
22565
22557
|
},
|
|
22566
|
-
|
|
22558
|
+
__wbg_getTransactions_39cdbadf132e2cbd: function(arg0, arg1, arg2, arg3) {
|
|
22567
22559
|
let deferred0_0;
|
|
22568
22560
|
let deferred0_1;
|
|
22569
22561
|
try {
|
|
@@ -22575,7 +22567,7 @@ function __wbg_get_imports() {
|
|
|
22575
22567
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22576
22568
|
}
|
|
22577
22569
|
},
|
|
22578
|
-
|
|
22570
|
+
__wbg_getUnspentInputNoteNullifiers_454a694b1712e5cb: function(arg0, arg1) {
|
|
22579
22571
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
22580
22572
|
return ret;
|
|
22581
22573
|
},
|
|
@@ -22619,7 +22611,7 @@ function __wbg_get_imports() {
|
|
|
22619
22611
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
22620
22612
|
return ret;
|
|
22621
22613
|
},
|
|
22622
|
-
|
|
22614
|
+
__wbg_insertAccountAddress_964930c0efd3f292: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22623
22615
|
let deferred0_0;
|
|
22624
22616
|
let deferred0_1;
|
|
22625
22617
|
try {
|
|
@@ -22633,7 +22625,7 @@ function __wbg_get_imports() {
|
|
|
22633
22625
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22634
22626
|
}
|
|
22635
22627
|
},
|
|
22636
|
-
|
|
22628
|
+
__wbg_insertAccountAuth_15db742f3171bda3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22637
22629
|
let deferred0_0;
|
|
22638
22630
|
let deferred0_1;
|
|
22639
22631
|
let deferred1_0;
|
|
@@ -22650,7 +22642,7 @@ function __wbg_get_imports() {
|
|
|
22650
22642
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22651
22643
|
}
|
|
22652
22644
|
},
|
|
22653
|
-
|
|
22645
|
+
__wbg_insertAccountKeyMapping_9c49660f1ec7399f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22654
22646
|
let deferred0_0;
|
|
22655
22647
|
let deferred0_1;
|
|
22656
22648
|
let deferred1_0;
|
|
@@ -22667,7 +22659,7 @@ function __wbg_get_imports() {
|
|
|
22667
22659
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22668
22660
|
}
|
|
22669
22661
|
},
|
|
22670
|
-
|
|
22662
|
+
__wbg_insertBlockHeader_060e7f46d4ec35e7: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22671
22663
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
22672
22664
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
22673
22665
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -22675,7 +22667,7 @@ function __wbg_get_imports() {
|
|
|
22675
22667
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
22676
22668
|
return ret;
|
|
22677
22669
|
},
|
|
22678
|
-
|
|
22670
|
+
__wbg_insertPartialBlockchainNodes_04f374dbb1ca7e77: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22679
22671
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22680
22672
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22681
22673
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -22683,7 +22675,7 @@ function __wbg_get_imports() {
|
|
|
22683
22675
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
22684
22676
|
return ret;
|
|
22685
22677
|
},
|
|
22686
|
-
|
|
22678
|
+
__wbg_insertSetting_e8fb47c1a72a54c4: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22687
22679
|
let deferred0_0;
|
|
22688
22680
|
let deferred0_1;
|
|
22689
22681
|
try {
|
|
@@ -22697,7 +22689,7 @@ function __wbg_get_imports() {
|
|
|
22697
22689
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22698
22690
|
}
|
|
22699
22691
|
},
|
|
22700
|
-
|
|
22692
|
+
__wbg_insertTransactionScript_ba6a81a76d47a2d3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22701
22693
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22702
22694
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22703
22695
|
let v1;
|
|
@@ -22790,11 +22782,11 @@ function __wbg_get_imports() {
|
|
|
22790
22782
|
const ret = arg0.length;
|
|
22791
22783
|
return ret;
|
|
22792
22784
|
},
|
|
22793
|
-
|
|
22785
|
+
__wbg_listSettingKeys_bd877420952aabcf: function(arg0, arg1) {
|
|
22794
22786
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
22795
22787
|
return ret;
|
|
22796
22788
|
},
|
|
22797
|
-
|
|
22789
|
+
__wbg_lockAccount_b4469b288371ce1b: function(arg0, arg1, arg2, arg3) {
|
|
22798
22790
|
let deferred0_0;
|
|
22799
22791
|
let deferred0_1;
|
|
22800
22792
|
try {
|
|
@@ -22878,7 +22870,7 @@ function __wbg_get_imports() {
|
|
|
22878
22870
|
const a = state0.a;
|
|
22879
22871
|
state0.a = 0;
|
|
22880
22872
|
try {
|
|
22881
|
-
return
|
|
22873
|
+
return wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(a, state0.b, arg0, arg1);
|
|
22882
22874
|
} finally {
|
|
22883
22875
|
state0.a = a;
|
|
22884
22876
|
}
|
|
@@ -22985,7 +22977,7 @@ function __wbg_get_imports() {
|
|
|
22985
22977
|
const ret = NoteTag.__unwrap(arg0);
|
|
22986
22978
|
return ret;
|
|
22987
22979
|
},
|
|
22988
|
-
|
|
22980
|
+
__wbg_openDatabase_2b359f6f1c11112f: function(arg0, arg1, arg2, arg3) {
|
|
22989
22981
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
22990
22982
|
return ret;
|
|
22991
22983
|
},
|
|
@@ -23016,7 +23008,7 @@ function __wbg_get_imports() {
|
|
|
23016
23008
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
23017
23009
|
return ret;
|
|
23018
23010
|
},
|
|
23019
|
-
|
|
23011
|
+
__wbg_pruneAccountHistory_f6d2c239f5188516: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23020
23012
|
let deferred0_0;
|
|
23021
23013
|
let deferred0_1;
|
|
23022
23014
|
let deferred1_0;
|
|
@@ -23033,7 +23025,7 @@ function __wbg_get_imports() {
|
|
|
23033
23025
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23034
23026
|
}
|
|
23035
23027
|
},
|
|
23036
|
-
|
|
23028
|
+
__wbg_pruneIrrelevantBlocks_2634ac68b91e6214: function(arg0, arg1) {
|
|
23037
23029
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
23038
23030
|
return ret;
|
|
23039
23031
|
},
|
|
@@ -23051,13 +23043,13 @@ function __wbg_get_imports() {
|
|
|
23051
23043
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
23052
23044
|
arg0.releaseLock();
|
|
23053
23045
|
},
|
|
23054
|
-
|
|
23046
|
+
__wbg_removeAccountAddress_9378ec2111cfd073: function(arg0, arg1, arg2, arg3) {
|
|
23055
23047
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23056
23048
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23057
23049
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
23058
23050
|
return ret;
|
|
23059
23051
|
},
|
|
23060
|
-
|
|
23052
|
+
__wbg_removeAccountAuth_1b38ce482f3a2a01: function(arg0, arg1, arg2, arg3) {
|
|
23061
23053
|
let deferred0_0;
|
|
23062
23054
|
let deferred0_1;
|
|
23063
23055
|
try {
|
|
@@ -23069,7 +23061,7 @@ function __wbg_get_imports() {
|
|
|
23069
23061
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23070
23062
|
}
|
|
23071
23063
|
},
|
|
23072
|
-
|
|
23064
|
+
__wbg_removeAllMappingsForKey_8e731aa44d99defa: function(arg0, arg1, arg2, arg3) {
|
|
23073
23065
|
let deferred0_0;
|
|
23074
23066
|
let deferred0_1;
|
|
23075
23067
|
try {
|
|
@@ -23081,7 +23073,7 @@ function __wbg_get_imports() {
|
|
|
23081
23073
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23082
23074
|
}
|
|
23083
23075
|
},
|
|
23084
|
-
|
|
23076
|
+
__wbg_removeNoteTag_66b88893678278ff: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23085
23077
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23086
23078
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23087
23079
|
let v1;
|
|
@@ -23097,7 +23089,7 @@ function __wbg_get_imports() {
|
|
|
23097
23089
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
23098
23090
|
return ret;
|
|
23099
23091
|
},
|
|
23100
|
-
|
|
23092
|
+
__wbg_removeSetting_09bade6bd24dd314: function(arg0, arg1, arg2, arg3) {
|
|
23101
23093
|
let deferred0_0;
|
|
23102
23094
|
let deferred0_1;
|
|
23103
23095
|
try {
|
|
@@ -23289,13 +23281,13 @@ function __wbg_get_imports() {
|
|
|
23289
23281
|
const ret = TransactionSummary.__wrap(arg0);
|
|
23290
23282
|
return ret;
|
|
23291
23283
|
},
|
|
23292
|
-
|
|
23284
|
+
__wbg_undoAccountStates_a9bb97fcb6ee8a5b: function(arg0, arg1, arg2, arg3) {
|
|
23293
23285
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23294
23286
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23295
23287
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
23296
23288
|
return ret;
|
|
23297
23289
|
},
|
|
23298
|
-
|
|
23290
|
+
__wbg_upsertAccountCode_9f6c4b97ffdc2a70: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23299
23291
|
let deferred0_0;
|
|
23300
23292
|
let deferred0_1;
|
|
23301
23293
|
try {
|
|
@@ -23309,7 +23301,7 @@ function __wbg_get_imports() {
|
|
|
23309
23301
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23310
23302
|
}
|
|
23311
23303
|
},
|
|
23312
|
-
|
|
23304
|
+
__wbg_upsertAccountRecord_871acd6aa086e68f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
23313
23305
|
let deferred0_0;
|
|
23314
23306
|
let deferred0_1;
|
|
23315
23307
|
let deferred1_0;
|
|
@@ -23351,7 +23343,7 @@ function __wbg_get_imports() {
|
|
|
23351
23343
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
23352
23344
|
}
|
|
23353
23345
|
},
|
|
23354
|
-
|
|
23346
|
+
__wbg_upsertAccountStorage_a50e64183e253d97: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23355
23347
|
let deferred0_0;
|
|
23356
23348
|
let deferred0_1;
|
|
23357
23349
|
try {
|
|
@@ -23365,7 +23357,7 @@ function __wbg_get_imports() {
|
|
|
23365
23357
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23366
23358
|
}
|
|
23367
23359
|
},
|
|
23368
|
-
|
|
23360
|
+
__wbg_upsertForeignAccountCode_9e93abdae6f4c0c7: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23369
23361
|
let deferred0_0;
|
|
23370
23362
|
let deferred0_1;
|
|
23371
23363
|
let deferred2_0;
|
|
@@ -23384,7 +23376,7 @@ function __wbg_get_imports() {
|
|
|
23384
23376
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23385
23377
|
}
|
|
23386
23378
|
},
|
|
23387
|
-
|
|
23379
|
+
__wbg_upsertInputNote_ebefca636604089b: 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) {
|
|
23388
23380
|
let deferred0_0;
|
|
23389
23381
|
let deferred0_1;
|
|
23390
23382
|
let deferred4_0;
|
|
@@ -23426,7 +23418,7 @@ function __wbg_get_imports() {
|
|
|
23426
23418
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
23427
23419
|
}
|
|
23428
23420
|
},
|
|
23429
|
-
|
|
23421
|
+
__wbg_upsertNoteScript_19e8fc1a041edf85: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23430
23422
|
let deferred0_0;
|
|
23431
23423
|
let deferred0_1;
|
|
23432
23424
|
try {
|
|
@@ -23440,7 +23432,7 @@ function __wbg_get_imports() {
|
|
|
23440
23432
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23441
23433
|
}
|
|
23442
23434
|
},
|
|
23443
|
-
|
|
23435
|
+
__wbg_upsertOutputNote_fc6f81a8309ef41b: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
23444
23436
|
let deferred0_0;
|
|
23445
23437
|
let deferred0_1;
|
|
23446
23438
|
let deferred2_0;
|
|
@@ -23468,7 +23460,7 @@ function __wbg_get_imports() {
|
|
|
23468
23460
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23469
23461
|
}
|
|
23470
23462
|
},
|
|
23471
|
-
|
|
23463
|
+
__wbg_upsertStorageMapEntries_a39827348033fe1a: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23472
23464
|
let deferred0_0;
|
|
23473
23465
|
let deferred0_1;
|
|
23474
23466
|
try {
|
|
@@ -23482,7 +23474,7 @@ function __wbg_get_imports() {
|
|
|
23482
23474
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23483
23475
|
}
|
|
23484
23476
|
},
|
|
23485
|
-
|
|
23477
|
+
__wbg_upsertTransactionRecord_01aaa20c21552b32: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
23486
23478
|
let deferred0_0;
|
|
23487
23479
|
let deferred0_1;
|
|
23488
23480
|
try {
|
|
@@ -23503,7 +23495,7 @@ function __wbg_get_imports() {
|
|
|
23503
23495
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23504
23496
|
}
|
|
23505
23497
|
},
|
|
23506
|
-
|
|
23498
|
+
__wbg_upsertVaultAssets_fa65d63a2d8af8de: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23507
23499
|
let deferred0_0;
|
|
23508
23500
|
let deferred0_1;
|
|
23509
23501
|
try {
|
|
@@ -23534,13 +23526,13 @@ function __wbg_get_imports() {
|
|
|
23534
23526
|
return ret;
|
|
23535
23527
|
},
|
|
23536
23528
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
23537
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23538
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23529
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 373, function: Function { arguments: [Externref], shim_idx: 695, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23530
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h391391dffb6a09df, wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2);
|
|
23539
23531
|
return ret;
|
|
23540
23532
|
},
|
|
23541
23533
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
23542
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23543
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23534
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 373, function: Function { arguments: [], shim_idx: 374, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23535
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h391391dffb6a09df, wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864);
|
|
23544
23536
|
return ret;
|
|
23545
23537
|
},
|
|
23546
23538
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -23644,16 +23636,16 @@ function __wbg_get_imports() {
|
|
|
23644
23636
|
};
|
|
23645
23637
|
}
|
|
23646
23638
|
|
|
23647
|
-
function
|
|
23648
|
-
wasm.
|
|
23639
|
+
function wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864(arg0, arg1) {
|
|
23640
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h53c1e1d8115a3864(arg0, arg1);
|
|
23649
23641
|
}
|
|
23650
23642
|
|
|
23651
|
-
function
|
|
23652
|
-
wasm.
|
|
23643
|
+
function wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2(arg0, arg1, arg2) {
|
|
23644
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2a909b4e7ff298f2(arg0, arg1, arg2);
|
|
23653
23645
|
}
|
|
23654
23646
|
|
|
23655
|
-
function
|
|
23656
|
-
wasm.
|
|
23647
|
+
function wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(arg0, arg1, arg2, arg3) {
|
|
23648
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h5e71136c5fac87ef(arg0, arg1, arg2, arg3);
|
|
23657
23649
|
}
|
|
23658
23650
|
|
|
23659
23651
|
|
|
@@ -24455,8 +24447,5 @@ async function __wbg_init(module_or_path) {
|
|
|
24455
24447
|
}
|
|
24456
24448
|
|
|
24457
24449
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
24458
|
-
|
|
24459
|
-
|
|
24460
|
-
|
|
24461
|
-
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 };
|
|
24462
|
-
//# sourceMappingURL=Cargo-M1xGvXNQ.js.map
|
|
24450
|
+
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-BZOulF0S.js.map
|