@miden-sdk/miden-sdk 0.14.2 → 0.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +86 -0
- package/dist/{Cargo-D44KIErf.js → Cargo-Bwjf7IkR.js} +143 -89
- package/dist/Cargo-Bwjf7IkR.js.map +1 -0
- package/dist/api-types.d.ts +33 -0
- package/dist/assets/miden_client_web.wasm +0 -0
- package/dist/crates/miden_client_web.d.ts +47 -3
- package/dist/eager.js +35 -0
- package/dist/eager.js.map +1 -0
- package/dist/index.js +327 -126
- package/dist/index.js.map +1 -1
- package/dist/wasm.js +1 -1
- package/dist/workers/{Cargo-D44KIErf-BV9FX7WD.js → Cargo-Bwjf7IkR-Cz54YuXA.js} +143 -89
- package/dist/workers/Cargo-Bwjf7IkR-Cz54YuXA.js.map +1 -0
- package/dist/workers/assets/miden_client_web.wasm +0 -0
- package/dist/workers/web-client-methods-worker.js +156 -98
- package/dist/workers/web-client-methods-worker.js.map +1 -1
- package/dist/workers/web-client-methods-worker.module.js +13 -9
- package/dist/workers/web-client-methods-worker.module.js.map +1 -1
- package/package.json +11 -4
- package/dist/Cargo-D44KIErf.js.map +0 -1
- package/dist/workers/Cargo-D44KIErf-BV9FX7WD.js.map +0 -1
|
@@ -12218,6 +12218,19 @@ class BlockHeader {
|
|
|
12218
12218
|
const ret = wasm.blockheader_commitment(this.__wbg_ptr);
|
|
12219
12219
|
return Word.__wrap(ret);
|
|
12220
12220
|
}
|
|
12221
|
+
/**
|
|
12222
|
+
* Returns the account ID of the fungible faucet whose assets are accepted as the native
|
|
12223
|
+
* asset of the blockchain (i.e. the asset used for paying transaction verification fees).
|
|
12224
|
+
*
|
|
12225
|
+
* This is stored on-chain as part of the block's fee parameters, which means consumers can
|
|
12226
|
+
* discover the native faucet by reading any block header rather than hardcoding it per
|
|
12227
|
+
* network.
|
|
12228
|
+
* @returns {AccountId}
|
|
12229
|
+
*/
|
|
12230
|
+
nativeAssetId() {
|
|
12231
|
+
const ret = wasm.blockheader_nativeAssetId(this.__wbg_ptr);
|
|
12232
|
+
return AccountId.__wrap(ret);
|
|
12233
|
+
}
|
|
12221
12234
|
/**
|
|
12222
12235
|
* Returns the note commitment root.
|
|
12223
12236
|
* @returns {Word}
|
|
@@ -21334,6 +21347,35 @@ class WebClient {
|
|
|
21334
21347
|
}
|
|
21335
21348
|
return WebKeystoreApi.__wrap(ret[0]);
|
|
21336
21349
|
}
|
|
21350
|
+
/**
|
|
21351
|
+
* Returns the raw JS value that the most recent sign-callback invocation
|
|
21352
|
+
* threw, or `null` if the last sign call succeeded (or no call has
|
|
21353
|
+
* happened yet).
|
|
21354
|
+
*
|
|
21355
|
+
* Combined with the serialized-call discipline enforced at the JS
|
|
21356
|
+
* `WebClient` wrapper, this lets a caller that caught a failed
|
|
21357
|
+
* `executeTransaction` / `submitNewTransaction` recover the original
|
|
21358
|
+
* JS error the signing callback threw — preserving any structured
|
|
21359
|
+
* metadata (e.g. a `reason: 'locked'` property) that the kernel-level
|
|
21360
|
+
* `auth::request` diagnostic would otherwise have erased.
|
|
21361
|
+
*
|
|
21362
|
+
* # Usage (TS)
|
|
21363
|
+
* ```ts
|
|
21364
|
+
* try {
|
|
21365
|
+
* await client.submitNewTransaction(acc, req);
|
|
21366
|
+
* } catch (e) {
|
|
21367
|
+
* const authErr = client.lastAuthError();
|
|
21368
|
+
* if (authErr && authErr.reason === 'locked') {
|
|
21369
|
+
* // wait for unlock, then retry
|
|
21370
|
+
* }
|
|
21371
|
+
* }
|
|
21372
|
+
* ```
|
|
21373
|
+
* @returns {any}
|
|
21374
|
+
*/
|
|
21375
|
+
lastAuthError() {
|
|
21376
|
+
const ret = wasm.webclient_lastAuthError(this.__wbg_ptr);
|
|
21377
|
+
return ret;
|
|
21378
|
+
}
|
|
21337
21379
|
/**
|
|
21338
21380
|
* Returns all the existing setting keys from the store.
|
|
21339
21381
|
* @returns {Promise<string[]>}
|
|
@@ -21486,20 +21528,32 @@ class WebClient {
|
|
|
21486
21528
|
}
|
|
21487
21529
|
}
|
|
21488
21530
|
/**
|
|
21489
|
-
* Generates a transaction proof using
|
|
21490
|
-
* prover if none is supplied.
|
|
21531
|
+
* Generates a transaction proof using the client's default (local) prover.
|
|
21491
21532
|
* @param {TransactionResult} transaction_result
|
|
21492
|
-
* @param {TransactionProver | null} [prover]
|
|
21493
21533
|
* @returns {Promise<ProvenTransaction>}
|
|
21494
21534
|
*/
|
|
21495
|
-
proveTransaction(transaction_result
|
|
21535
|
+
proveTransaction(transaction_result) {
|
|
21496
21536
|
_assertClass(transaction_result, TransactionResult);
|
|
21497
|
-
|
|
21498
|
-
|
|
21499
|
-
|
|
21500
|
-
|
|
21501
|
-
|
|
21502
|
-
|
|
21537
|
+
const ret = wasm.webclient_proveTransaction(this.__wbg_ptr, transaction_result.__wbg_ptr);
|
|
21538
|
+
return ret;
|
|
21539
|
+
}
|
|
21540
|
+
/**
|
|
21541
|
+
* Generates a transaction proof using the provided prover.
|
|
21542
|
+
*
|
|
21543
|
+
* Takes the prover by reference so the JS-side handle is NOT consumed
|
|
21544
|
+
* by wasm-bindgen. Taking `TransactionProver` by value would transfer
|
|
21545
|
+
* ownership on each call, invalidating the JS object's internal WASM
|
|
21546
|
+
* handle; after one use, subsequent calls from JS would pass a dangling
|
|
21547
|
+
* handle that wasm-bindgen interprets as `None`, silently falling back
|
|
21548
|
+
* to the local prover.
|
|
21549
|
+
* @param {TransactionResult} transaction_result
|
|
21550
|
+
* @param {TransactionProver} prover
|
|
21551
|
+
* @returns {Promise<ProvenTransaction>}
|
|
21552
|
+
*/
|
|
21553
|
+
proveTransactionWithProver(transaction_result, prover) {
|
|
21554
|
+
_assertClass(transaction_result, TransactionResult);
|
|
21555
|
+
_assertClass(prover, TransactionProver);
|
|
21556
|
+
const ret = wasm.webclient_proveTransactionWithProver(this.__wbg_ptr, transaction_result.__wbg_ptr, prover.__wbg_ptr);
|
|
21503
21557
|
return ret;
|
|
21504
21558
|
}
|
|
21505
21559
|
/**
|
|
@@ -22102,7 +22156,7 @@ function __wbg_get_imports() {
|
|
|
22102
22156
|
const ret = AccountStorage.__wrap(arg0);
|
|
22103
22157
|
return ret;
|
|
22104
22158
|
},
|
|
22105
|
-
|
|
22159
|
+
__wbg_addNoteTag_698909ab9460b85a: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22106
22160
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22107
22161
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22108
22162
|
let v1;
|
|
@@ -22125,15 +22179,15 @@ function __wbg_get_imports() {
|
|
|
22125
22179
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
22126
22180
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
22127
22181
|
}, arguments); },
|
|
22128
|
-
|
|
22182
|
+
__wbg_applyFullAccountState_eade9faa19596125: function(arg0, arg1, arg2) {
|
|
22129
22183
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
22130
22184
|
return ret;
|
|
22131
22185
|
},
|
|
22132
|
-
|
|
22186
|
+
__wbg_applyStateSync_9564c858a70c99b8: function(arg0, arg1, arg2) {
|
|
22133
22187
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
22134
22188
|
return ret;
|
|
22135
22189
|
},
|
|
22136
|
-
|
|
22190
|
+
__wbg_applyTransactionDelta_9628eb6590c0ceb1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
22137
22191
|
let deferred0_0;
|
|
22138
22192
|
let deferred0_1;
|
|
22139
22193
|
let deferred1_0;
|
|
@@ -22268,7 +22322,7 @@ function __wbg_get_imports() {
|
|
|
22268
22322
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22269
22323
|
}
|
|
22270
22324
|
},
|
|
22271
|
-
|
|
22325
|
+
__wbg_exportStore_a67b45413c960e8c: function(arg0, arg1) {
|
|
22272
22326
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
22273
22327
|
return ret;
|
|
22274
22328
|
},
|
|
@@ -22300,7 +22354,7 @@ function __wbg_get_imports() {
|
|
|
22300
22354
|
const ret = FetchedNote.__wrap(arg0);
|
|
22301
22355
|
return ret;
|
|
22302
22356
|
},
|
|
22303
|
-
|
|
22357
|
+
__wbg_forceImportStore_eb9f85ecf3af7d43: function(arg0, arg1, arg2) {
|
|
22304
22358
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
22305
22359
|
return ret;
|
|
22306
22360
|
},
|
|
@@ -22320,7 +22374,7 @@ function __wbg_get_imports() {
|
|
|
22320
22374
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
22321
22375
|
return ret;
|
|
22322
22376
|
},
|
|
22323
|
-
|
|
22377
|
+
__wbg_getAccountAddresses_51afaacf9f52c77a: function(arg0, arg1, arg2, arg3) {
|
|
22324
22378
|
let deferred0_0;
|
|
22325
22379
|
let deferred0_1;
|
|
22326
22380
|
try {
|
|
@@ -22332,7 +22386,7 @@ function __wbg_get_imports() {
|
|
|
22332
22386
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22333
22387
|
}
|
|
22334
22388
|
},
|
|
22335
|
-
|
|
22389
|
+
__wbg_getAccountAuthByPubKeyCommitment_3d1eeae52f97e127: function(arg0, arg1, arg2, arg3) {
|
|
22336
22390
|
let deferred0_0;
|
|
22337
22391
|
let deferred0_1;
|
|
22338
22392
|
try {
|
|
@@ -22344,7 +22398,7 @@ function __wbg_get_imports() {
|
|
|
22344
22398
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22345
22399
|
}
|
|
22346
22400
|
},
|
|
22347
|
-
|
|
22401
|
+
__wbg_getAccountCode_84b1542a2d9efa6e: function(arg0, arg1, arg2, arg3) {
|
|
22348
22402
|
let deferred0_0;
|
|
22349
22403
|
let deferred0_1;
|
|
22350
22404
|
try {
|
|
@@ -22356,7 +22410,7 @@ function __wbg_get_imports() {
|
|
|
22356
22410
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22357
22411
|
}
|
|
22358
22412
|
},
|
|
22359
|
-
|
|
22413
|
+
__wbg_getAccountHeaderByCommitment_5be294a0512143cb: function(arg0, arg1, arg2, arg3) {
|
|
22360
22414
|
let deferred0_0;
|
|
22361
22415
|
let deferred0_1;
|
|
22362
22416
|
try {
|
|
@@ -22368,7 +22422,7 @@ function __wbg_get_imports() {
|
|
|
22368
22422
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22369
22423
|
}
|
|
22370
22424
|
},
|
|
22371
|
-
|
|
22425
|
+
__wbg_getAccountHeader_a9304a0079f4e254: function(arg0, arg1, arg2, arg3) {
|
|
22372
22426
|
let deferred0_0;
|
|
22373
22427
|
let deferred0_1;
|
|
22374
22428
|
try {
|
|
@@ -22380,7 +22434,7 @@ function __wbg_get_imports() {
|
|
|
22380
22434
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22381
22435
|
}
|
|
22382
22436
|
},
|
|
22383
|
-
|
|
22437
|
+
__wbg_getAccountIdByKeyCommitment_adfd1a18dc9eff3d: function(arg0, arg1, arg2, arg3) {
|
|
22384
22438
|
let deferred0_0;
|
|
22385
22439
|
let deferred0_1;
|
|
22386
22440
|
try {
|
|
@@ -22392,11 +22446,11 @@ function __wbg_get_imports() {
|
|
|
22392
22446
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22393
22447
|
}
|
|
22394
22448
|
},
|
|
22395
|
-
|
|
22449
|
+
__wbg_getAccountIds_2b769482d9d22c91: function(arg0, arg1) {
|
|
22396
22450
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
22397
22451
|
return ret;
|
|
22398
22452
|
},
|
|
22399
|
-
|
|
22453
|
+
__wbg_getAccountStorageMaps_8315b00d0eb2f171: function(arg0, arg1, arg2, arg3) {
|
|
22400
22454
|
let deferred0_0;
|
|
22401
22455
|
let deferred0_1;
|
|
22402
22456
|
try {
|
|
@@ -22408,7 +22462,7 @@ function __wbg_get_imports() {
|
|
|
22408
22462
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22409
22463
|
}
|
|
22410
22464
|
},
|
|
22411
|
-
|
|
22465
|
+
__wbg_getAccountStorage_15977a4f6e04fd64: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22412
22466
|
let deferred0_0;
|
|
22413
22467
|
let deferred0_1;
|
|
22414
22468
|
try {
|
|
@@ -22422,7 +22476,7 @@ function __wbg_get_imports() {
|
|
|
22422
22476
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22423
22477
|
}
|
|
22424
22478
|
},
|
|
22425
|
-
|
|
22479
|
+
__wbg_getAccountVaultAssets_a97760310afd4d4b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22426
22480
|
let deferred0_0;
|
|
22427
22481
|
let deferred0_1;
|
|
22428
22482
|
try {
|
|
@@ -22436,23 +22490,23 @@ function __wbg_get_imports() {
|
|
|
22436
22490
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22437
22491
|
}
|
|
22438
22492
|
},
|
|
22439
|
-
|
|
22493
|
+
__wbg_getAllAccountHeaders_be49e1d4ba8290ab: function(arg0, arg1) {
|
|
22440
22494
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
22441
22495
|
return ret;
|
|
22442
22496
|
},
|
|
22443
|
-
|
|
22497
|
+
__wbg_getBlockHeaders_17f4a78b0b73a04f: function(arg0, arg1, arg2, arg3) {
|
|
22444
22498
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
22445
22499
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22446
22500
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
22447
22501
|
return ret;
|
|
22448
22502
|
},
|
|
22449
|
-
|
|
22503
|
+
__wbg_getForeignAccountCode_1b334242465029b9: function(arg0, arg1, arg2, arg3) {
|
|
22450
22504
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22451
22505
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22452
22506
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
22453
22507
|
return ret;
|
|
22454
22508
|
},
|
|
22455
|
-
|
|
22509
|
+
__wbg_getInputNoteByOffset_b159a98e6585d580: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
22456
22510
|
let deferred1_0;
|
|
22457
22511
|
let deferred1_1;
|
|
22458
22512
|
try {
|
|
@@ -22466,25 +22520,25 @@ function __wbg_get_imports() {
|
|
|
22466
22520
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22467
22521
|
}
|
|
22468
22522
|
},
|
|
22469
|
-
|
|
22523
|
+
__wbg_getInputNotesFromIds_9244d0972946d1e9: function(arg0, arg1, arg2, arg3) {
|
|
22470
22524
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22471
22525
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22472
22526
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22473
22527
|
return ret;
|
|
22474
22528
|
},
|
|
22475
|
-
|
|
22529
|
+
__wbg_getInputNotesFromNullifiers_20a275b6054e2675: function(arg0, arg1, arg2, arg3) {
|
|
22476
22530
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22477
22531
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22478
22532
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22479
22533
|
return ret;
|
|
22480
22534
|
},
|
|
22481
|
-
|
|
22535
|
+
__wbg_getInputNotes_3c02639073a27a1b: function(arg0, arg1, arg2, arg3) {
|
|
22482
22536
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22483
22537
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22484
22538
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22485
22539
|
return ret;
|
|
22486
22540
|
},
|
|
22487
|
-
|
|
22541
|
+
__wbg_getKeyCommitmentsByAccountId_b0f7dfe5f184268b: function(arg0, arg1, arg2, arg3) {
|
|
22488
22542
|
let deferred0_0;
|
|
22489
22543
|
let deferred0_1;
|
|
22490
22544
|
try {
|
|
@@ -22496,7 +22550,7 @@ function __wbg_get_imports() {
|
|
|
22496
22550
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22497
22551
|
}
|
|
22498
22552
|
},
|
|
22499
|
-
|
|
22553
|
+
__wbg_getNoteScript_867d54f06c81e941: function(arg0, arg1, arg2, arg3) {
|
|
22500
22554
|
let deferred0_0;
|
|
22501
22555
|
let deferred0_1;
|
|
22502
22556
|
try {
|
|
@@ -22508,33 +22562,33 @@ function __wbg_get_imports() {
|
|
|
22508
22562
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22509
22563
|
}
|
|
22510
22564
|
},
|
|
22511
|
-
|
|
22565
|
+
__wbg_getNoteTags_9873a6e080e3852e: function(arg0, arg1) {
|
|
22512
22566
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
22513
22567
|
return ret;
|
|
22514
22568
|
},
|
|
22515
|
-
|
|
22569
|
+
__wbg_getOutputNotesFromIds_39d02b7c705b516a: function(arg0, arg1, arg2, arg3) {
|
|
22516
22570
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22517
22571
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22518
22572
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
22519
22573
|
return ret;
|
|
22520
22574
|
},
|
|
22521
|
-
|
|
22575
|
+
__wbg_getOutputNotesFromNullifiers_d1ae3200c43e2f6c: function(arg0, arg1, arg2, arg3) {
|
|
22522
22576
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22523
22577
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22524
22578
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
22525
22579
|
return ret;
|
|
22526
22580
|
},
|
|
22527
|
-
|
|
22581
|
+
__wbg_getOutputNotes_bb6846291f45a6d5: function(arg0, arg1, arg2, arg3) {
|
|
22528
22582
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22529
22583
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22530
22584
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
22531
22585
|
return ret;
|
|
22532
22586
|
},
|
|
22533
|
-
|
|
22587
|
+
__wbg_getPartialBlockchainNodesAll_94c7cf9fe9cbfce1: function(arg0, arg1) {
|
|
22534
22588
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
22535
22589
|
return ret;
|
|
22536
22590
|
},
|
|
22537
|
-
|
|
22591
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_4f5ca17c3f5dc6d6: function(arg0, arg1, arg2, arg3) {
|
|
22538
22592
|
let deferred0_0;
|
|
22539
22593
|
let deferred0_1;
|
|
22540
22594
|
try {
|
|
@@ -22546,13 +22600,13 @@ function __wbg_get_imports() {
|
|
|
22546
22600
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22547
22601
|
}
|
|
22548
22602
|
},
|
|
22549
|
-
|
|
22603
|
+
__wbg_getPartialBlockchainNodes_ae379fc78bb9f182: function(arg0, arg1, arg2, arg3) {
|
|
22550
22604
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22551
22605
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22552
22606
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
22553
22607
|
return ret;
|
|
22554
22608
|
},
|
|
22555
|
-
|
|
22609
|
+
__wbg_getPartialBlockchainPeaksByBlockNum_3aabada7ce71eee3: function(arg0, arg1, arg2) {
|
|
22556
22610
|
const ret = getPartialBlockchainPeaksByBlockNum(getStringFromWasm0(arg0, arg1), arg2 >>> 0);
|
|
22557
22611
|
return ret;
|
|
22558
22612
|
},
|
|
@@ -22563,7 +22617,7 @@ function __wbg_get_imports() {
|
|
|
22563
22617
|
const ret = arg0.getReader();
|
|
22564
22618
|
return ret;
|
|
22565
22619
|
}, arguments); },
|
|
22566
|
-
|
|
22620
|
+
__wbg_getSetting_186df2c955123498: function(arg0, arg1, arg2, arg3) {
|
|
22567
22621
|
let deferred0_0;
|
|
22568
22622
|
let deferred0_1;
|
|
22569
22623
|
try {
|
|
@@ -22575,7 +22629,7 @@ function __wbg_get_imports() {
|
|
|
22575
22629
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22576
22630
|
}
|
|
22577
22631
|
},
|
|
22578
|
-
|
|
22632
|
+
__wbg_getSyncHeight_bb8554ff55ffbf9f: function(arg0, arg1) {
|
|
22579
22633
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
22580
22634
|
return ret;
|
|
22581
22635
|
},
|
|
@@ -22583,15 +22637,15 @@ function __wbg_get_imports() {
|
|
|
22583
22637
|
const ret = arg0.getTime();
|
|
22584
22638
|
return ret;
|
|
22585
22639
|
},
|
|
22586
|
-
|
|
22640
|
+
__wbg_getTrackedBlockHeaderNumbers_f816d2d4d27342c3: function(arg0, arg1) {
|
|
22587
22641
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
22588
22642
|
return ret;
|
|
22589
22643
|
},
|
|
22590
|
-
|
|
22644
|
+
__wbg_getTrackedBlockHeaders_f283e0da82bfc822: function(arg0, arg1) {
|
|
22591
22645
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
22592
22646
|
return ret;
|
|
22593
22647
|
},
|
|
22594
|
-
|
|
22648
|
+
__wbg_getTransactions_1bd61b628e179d02: function(arg0, arg1, arg2, arg3) {
|
|
22595
22649
|
let deferred0_0;
|
|
22596
22650
|
let deferred0_1;
|
|
22597
22651
|
try {
|
|
@@ -22603,7 +22657,7 @@ function __wbg_get_imports() {
|
|
|
22603
22657
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22604
22658
|
}
|
|
22605
22659
|
},
|
|
22606
|
-
|
|
22660
|
+
__wbg_getUnspentInputNoteNullifiers_d62daa144f0c3fe5: function(arg0, arg1) {
|
|
22607
22661
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
22608
22662
|
return ret;
|
|
22609
22663
|
},
|
|
@@ -22647,7 +22701,7 @@ function __wbg_get_imports() {
|
|
|
22647
22701
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
22648
22702
|
return ret;
|
|
22649
22703
|
},
|
|
22650
|
-
|
|
22704
|
+
__wbg_insertAccountAddress_74f0e4c7a639254e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22651
22705
|
let deferred0_0;
|
|
22652
22706
|
let deferred0_1;
|
|
22653
22707
|
try {
|
|
@@ -22661,7 +22715,7 @@ function __wbg_get_imports() {
|
|
|
22661
22715
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22662
22716
|
}
|
|
22663
22717
|
},
|
|
22664
|
-
|
|
22718
|
+
__wbg_insertAccountAuth_3c33b553fe5c8c05: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22665
22719
|
let deferred0_0;
|
|
22666
22720
|
let deferred0_1;
|
|
22667
22721
|
let deferred1_0;
|
|
@@ -22678,7 +22732,7 @@ function __wbg_get_imports() {
|
|
|
22678
22732
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22679
22733
|
}
|
|
22680
22734
|
},
|
|
22681
|
-
|
|
22735
|
+
__wbg_insertAccountKeyMapping_d2a0b817a8140e6e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22682
22736
|
let deferred0_0;
|
|
22683
22737
|
let deferred0_1;
|
|
22684
22738
|
let deferred1_0;
|
|
@@ -22695,7 +22749,7 @@ function __wbg_get_imports() {
|
|
|
22695
22749
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
22696
22750
|
}
|
|
22697
22751
|
},
|
|
22698
|
-
|
|
22752
|
+
__wbg_insertBlockHeader_bcda8bc22e77cf32: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
22699
22753
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
22700
22754
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
22701
22755
|
var v1 = getArrayU8FromWasm0(arg5, arg6).slice();
|
|
@@ -22703,7 +22757,7 @@ function __wbg_get_imports() {
|
|
|
22703
22757
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, v1, arg7 !== 0);
|
|
22704
22758
|
return ret;
|
|
22705
22759
|
},
|
|
22706
|
-
|
|
22760
|
+
__wbg_insertPartialBlockchainNodes_135515caa8cd47bd: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22707
22761
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
22708
22762
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
22709
22763
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -22711,7 +22765,7 @@ function __wbg_get_imports() {
|
|
|
22711
22765
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
22712
22766
|
return ret;
|
|
22713
22767
|
},
|
|
22714
|
-
|
|
22768
|
+
__wbg_insertSetting_fe1899c3024e1e38: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22715
22769
|
let deferred0_0;
|
|
22716
22770
|
let deferred0_1;
|
|
22717
22771
|
try {
|
|
@@ -22725,7 +22779,7 @@ function __wbg_get_imports() {
|
|
|
22725
22779
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
22726
22780
|
}
|
|
22727
22781
|
},
|
|
22728
|
-
|
|
22782
|
+
__wbg_insertTransactionScript_310aca4fb4647d32: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
22729
22783
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
22730
22784
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
22731
22785
|
let v1;
|
|
@@ -22818,11 +22872,11 @@ function __wbg_get_imports() {
|
|
|
22818
22872
|
const ret = arg0.length;
|
|
22819
22873
|
return ret;
|
|
22820
22874
|
},
|
|
22821
|
-
|
|
22875
|
+
__wbg_listSettingKeys_384288a044f385de: function(arg0, arg1) {
|
|
22822
22876
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
22823
22877
|
return ret;
|
|
22824
22878
|
},
|
|
22825
|
-
|
|
22879
|
+
__wbg_lockAccount_a60d709094c45b53: function(arg0, arg1, arg2, arg3) {
|
|
22826
22880
|
let deferred0_0;
|
|
22827
22881
|
let deferred0_1;
|
|
22828
22882
|
try {
|
|
@@ -22906,7 +22960,7 @@ function __wbg_get_imports() {
|
|
|
22906
22960
|
const a = state0.a;
|
|
22907
22961
|
state0.a = 0;
|
|
22908
22962
|
try {
|
|
22909
|
-
return
|
|
22963
|
+
return wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(a, state0.b, arg0, arg1);
|
|
22910
22964
|
} finally {
|
|
22911
22965
|
state0.a = a;
|
|
22912
22966
|
}
|
|
@@ -23013,7 +23067,7 @@ function __wbg_get_imports() {
|
|
|
23013
23067
|
const ret = NoteTag.__unwrap(arg0);
|
|
23014
23068
|
return ret;
|
|
23015
23069
|
},
|
|
23016
|
-
|
|
23070
|
+
__wbg_openDatabase_4c3b292fbda4fc9b: function(arg0, arg1, arg2, arg3) {
|
|
23017
23071
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
23018
23072
|
return ret;
|
|
23019
23073
|
},
|
|
@@ -23044,7 +23098,7 @@ function __wbg_get_imports() {
|
|
|
23044
23098
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
23045
23099
|
return ret;
|
|
23046
23100
|
},
|
|
23047
|
-
|
|
23101
|
+
__wbg_pruneAccountHistory_862dcd6254067486: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23048
23102
|
let deferred0_0;
|
|
23049
23103
|
let deferred0_1;
|
|
23050
23104
|
let deferred1_0;
|
|
@@ -23061,7 +23115,7 @@ function __wbg_get_imports() {
|
|
|
23061
23115
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
23062
23116
|
}
|
|
23063
23117
|
},
|
|
23064
|
-
|
|
23118
|
+
__wbg_pruneIrrelevantBlocks_5d9d0b791bc84bbd: function(arg0, arg1) {
|
|
23065
23119
|
const ret = pruneIrrelevantBlocks(getStringFromWasm0(arg0, arg1));
|
|
23066
23120
|
return ret;
|
|
23067
23121
|
},
|
|
@@ -23079,13 +23133,13 @@ function __wbg_get_imports() {
|
|
|
23079
23133
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
23080
23134
|
arg0.releaseLock();
|
|
23081
23135
|
},
|
|
23082
|
-
|
|
23136
|
+
__wbg_removeAccountAddress_b55c1b0cd60d92df: function(arg0, arg1, arg2, arg3) {
|
|
23083
23137
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23084
23138
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23085
23139
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
23086
23140
|
return ret;
|
|
23087
23141
|
},
|
|
23088
|
-
|
|
23142
|
+
__wbg_removeAccountAuth_3fb9058cee274111: function(arg0, arg1, arg2, arg3) {
|
|
23089
23143
|
let deferred0_0;
|
|
23090
23144
|
let deferred0_1;
|
|
23091
23145
|
try {
|
|
@@ -23097,7 +23151,7 @@ function __wbg_get_imports() {
|
|
|
23097
23151
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23098
23152
|
}
|
|
23099
23153
|
},
|
|
23100
|
-
|
|
23154
|
+
__wbg_removeAllMappingsForKey_66ff5b0d6f9c2bd6: function(arg0, arg1, arg2, arg3) {
|
|
23101
23155
|
let deferred0_0;
|
|
23102
23156
|
let deferred0_1;
|
|
23103
23157
|
try {
|
|
@@ -23109,7 +23163,7 @@ function __wbg_get_imports() {
|
|
|
23109
23163
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23110
23164
|
}
|
|
23111
23165
|
},
|
|
23112
|
-
|
|
23166
|
+
__wbg_removeNoteTag_0a14e1372f23806f: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23113
23167
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
23114
23168
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
23115
23169
|
let v1;
|
|
@@ -23125,7 +23179,7 @@ function __wbg_get_imports() {
|
|
|
23125
23179
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2);
|
|
23126
23180
|
return ret;
|
|
23127
23181
|
},
|
|
23128
|
-
|
|
23182
|
+
__wbg_removeSetting_6bcea18b3e8da9e4: function(arg0, arg1, arg2, arg3) {
|
|
23129
23183
|
let deferred0_0;
|
|
23130
23184
|
let deferred0_1;
|
|
23131
23185
|
try {
|
|
@@ -23317,13 +23371,13 @@ function __wbg_get_imports() {
|
|
|
23317
23371
|
const ret = TransactionSummary.__wrap(arg0);
|
|
23318
23372
|
return ret;
|
|
23319
23373
|
},
|
|
23320
|
-
|
|
23374
|
+
__wbg_undoAccountStates_772949347567310a: function(arg0, arg1, arg2, arg3) {
|
|
23321
23375
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
23322
23376
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
23323
23377
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
23324
23378
|
return ret;
|
|
23325
23379
|
},
|
|
23326
|
-
|
|
23380
|
+
__wbg_upsertAccountCode_5aeef852ebb4eea3: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23327
23381
|
let deferred0_0;
|
|
23328
23382
|
let deferred0_1;
|
|
23329
23383
|
try {
|
|
@@ -23337,7 +23391,7 @@ function __wbg_get_imports() {
|
|
|
23337
23391
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23338
23392
|
}
|
|
23339
23393
|
},
|
|
23340
|
-
|
|
23394
|
+
__wbg_upsertAccountRecord_e857a604366533d6: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) {
|
|
23341
23395
|
let deferred0_0;
|
|
23342
23396
|
let deferred0_1;
|
|
23343
23397
|
let deferred1_0;
|
|
@@ -23379,7 +23433,7 @@ function __wbg_get_imports() {
|
|
|
23379
23433
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
23380
23434
|
}
|
|
23381
23435
|
},
|
|
23382
|
-
|
|
23436
|
+
__wbg_upsertAccountStorage_cadea80cad14d44e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23383
23437
|
let deferred0_0;
|
|
23384
23438
|
let deferred0_1;
|
|
23385
23439
|
try {
|
|
@@ -23393,7 +23447,7 @@ function __wbg_get_imports() {
|
|
|
23393
23447
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23394
23448
|
}
|
|
23395
23449
|
},
|
|
23396
|
-
|
|
23450
|
+
__wbg_upsertForeignAccountCode_0ff2a287e6afee27: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
23397
23451
|
let deferred0_0;
|
|
23398
23452
|
let deferred0_1;
|
|
23399
23453
|
let deferred2_0;
|
|
@@ -23412,7 +23466,7 @@ function __wbg_get_imports() {
|
|
|
23412
23466
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23413
23467
|
}
|
|
23414
23468
|
},
|
|
23415
|
-
|
|
23469
|
+
__wbg_upsertInputNote_7e5a34ad5a5f84cf: 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) {
|
|
23416
23470
|
let deferred0_0;
|
|
23417
23471
|
let deferred0_1;
|
|
23418
23472
|
let deferred4_0;
|
|
@@ -23454,7 +23508,7 @@ function __wbg_get_imports() {
|
|
|
23454
23508
|
wasm.__wbindgen_free(deferred7_0, deferred7_1, 1);
|
|
23455
23509
|
}
|
|
23456
23510
|
},
|
|
23457
|
-
|
|
23511
|
+
__wbg_upsertNoteScript_bf2e3cd8091e4d8e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23458
23512
|
let deferred0_0;
|
|
23459
23513
|
let deferred0_1;
|
|
23460
23514
|
try {
|
|
@@ -23468,7 +23522,7 @@ function __wbg_get_imports() {
|
|
|
23468
23522
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23469
23523
|
}
|
|
23470
23524
|
},
|
|
23471
|
-
|
|
23525
|
+
__wbg_upsertOutputNote_6680c25bcf1c6752: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) {
|
|
23472
23526
|
let deferred0_0;
|
|
23473
23527
|
let deferred0_1;
|
|
23474
23528
|
let deferred2_0;
|
|
@@ -23496,7 +23550,7 @@ function __wbg_get_imports() {
|
|
|
23496
23550
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
23497
23551
|
}
|
|
23498
23552
|
},
|
|
23499
|
-
|
|
23553
|
+
__wbg_upsertStorageMapEntries_3599951ef72300cc: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23500
23554
|
let deferred0_0;
|
|
23501
23555
|
let deferred0_1;
|
|
23502
23556
|
try {
|
|
@@ -23510,7 +23564,7 @@ function __wbg_get_imports() {
|
|
|
23510
23564
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23511
23565
|
}
|
|
23512
23566
|
},
|
|
23513
|
-
|
|
23567
|
+
__wbg_upsertTransactionRecord_5306c0b813a1cef4: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
23514
23568
|
let deferred0_0;
|
|
23515
23569
|
let deferred0_1;
|
|
23516
23570
|
try {
|
|
@@ -23531,7 +23585,7 @@ function __wbg_get_imports() {
|
|
|
23531
23585
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
23532
23586
|
}
|
|
23533
23587
|
},
|
|
23534
|
-
|
|
23588
|
+
__wbg_upsertVaultAssets_66ef95ec9c1a13ce: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
23535
23589
|
let deferred0_0;
|
|
23536
23590
|
let deferred0_1;
|
|
23537
23591
|
try {
|
|
@@ -23562,13 +23616,13 @@ function __wbg_get_imports() {
|
|
|
23562
23616
|
return ret;
|
|
23563
23617
|
},
|
|
23564
23618
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
23565
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23566
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23619
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 357, function: Function { arguments: [Externref], shim_idx: 694, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23620
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a);
|
|
23567
23621
|
return ret;
|
|
23568
23622
|
},
|
|
23569
23623
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
23570
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
23571
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
23624
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 357, function: Function { arguments: [], shim_idx: 358, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
23625
|
+
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen__closure__destroy__h63c5411e996b99a1, wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9);
|
|
23572
23626
|
return ret;
|
|
23573
23627
|
},
|
|
23574
23628
|
__wbindgen_cast_0000000000000003: function(arg0) {
|
|
@@ -23672,16 +23726,16 @@ function __wbg_get_imports() {
|
|
|
23672
23726
|
};
|
|
23673
23727
|
}
|
|
23674
23728
|
|
|
23675
|
-
function
|
|
23676
|
-
wasm.
|
|
23729
|
+
function wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1) {
|
|
23730
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0a299fbe94173cc9(arg0, arg1);
|
|
23677
23731
|
}
|
|
23678
23732
|
|
|
23679
|
-
function
|
|
23680
|
-
wasm.
|
|
23733
|
+
function wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2) {
|
|
23734
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h7e8251e1da901d4a(arg0, arg1, arg2);
|
|
23681
23735
|
}
|
|
23682
23736
|
|
|
23683
|
-
function
|
|
23684
|
-
wasm.
|
|
23737
|
+
function wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3) {
|
|
23738
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h5ccac1d506adc608(arg0, arg1, arg2, arg3);
|
|
23685
23739
|
}
|
|
23686
23740
|
|
|
23687
23741
|
|
|
@@ -24485,4 +24539,4 @@ async function __wbg_init(module_or_path) {
|
|
|
24485
24539
|
const module$1 = new URL("assets/miden_client_web.wasm", import.meta.url);
|
|
24486
24540
|
|
|
24487
24541
|
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, module$1 as __wasm_url, __wbg_init, createAuthFalcon512RpoMultisig, exportStore2 as exportStore, importStore, initSync, setupLogging };
|
|
24488
|
-
//# sourceMappingURL=Cargo-
|
|
24542
|
+
//# sourceMappingURL=Cargo-Bwjf7IkR-Cz54YuXA.js.map
|