@miden-sdk/miden-sdk 0.15.6 → 0.15.7
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 +15 -0
- package/dist/mt/{Cargo-mvyTli7g.js → Cargo-CnGom-_z.js} +119 -76
- package/dist/mt/Cargo-CnGom-_z.js.map +1 -0
- package/dist/mt/api-types.d.ts +120 -0
- package/dist/mt/assets/miden_client_web.wasm +0 -0
- package/dist/mt/crates/miden_client_web.d.ts +32 -0
- package/dist/mt/docs-entry.d.ts +3 -0
- package/dist/mt/eager.js +1 -1
- package/dist/mt/index.js +252 -5
- package/dist/mt/index.js.map +1 -1
- package/dist/mt/wasm.js +1 -1
- package/dist/mt/workerHelpers.js +1 -1
- package/dist/mt/workers/{Cargo-mvyTli7g-BwMMSyoq.js → Cargo-CnGom-_z-X_3VwTbo.js} +119 -76
- package/dist/mt/workers/{Cargo-mvyTli7g-BwMMSyoq.js.map → Cargo-CnGom-_z-X_3VwTbo.js.map} +1 -1
- package/dist/mt/workers/assets/miden_client_web.wasm +0 -0
- package/dist/mt/workers/web-client-methods-worker.js +120 -76
- package/dist/mt/workers/web-client-methods-worker.js.map +1 -1
- package/dist/mt/workers/web-client-methods-worker.module.js +1 -1
- package/dist/mt/workers/web-client-methods-worker.module.js.map +1 -1
- package/dist/mt/workers/workerHelpers.js +1 -1
- package/dist/st/{Cargo-Cysp4vto.js → Cargo-DR9fiMbE.js} +117 -75
- package/dist/st/Cargo-DR9fiMbE.js.map +1 -0
- package/dist/st/api-types.d.ts +120 -0
- package/dist/st/assets/miden_client_web.wasm +0 -0
- package/dist/st/crates/miden_client_web.d.ts +32 -0
- package/dist/st/docs-entry.d.ts +3 -0
- package/dist/st/eager.js +1 -1
- package/dist/st/index.js +252 -5
- package/dist/st/index.js.map +1 -1
- package/dist/st/wasm.js +1 -1
- package/dist/st/workers/{Cargo-Cysp4vto-BIw-TeJn.js → Cargo-DR9fiMbE-C0G0clA_.js} +117 -75
- package/dist/st/workers/{Cargo-Cysp4vto-BIw-TeJn.js.map → Cargo-DR9fiMbE-C0G0clA_.js.map} +1 -1
- package/dist/st/workers/assets/miden_client_web.wasm +0 -0
- package/dist/st/workers/web-client-methods-worker.js +118 -75
- package/dist/st/workers/web-client-methods-worker.js.map +1 -1
- package/dist/st/workers/web-client-methods-worker.module.js +1 -1
- package/dist/st/workers/web-client-methods-worker.module.js.map +1 -1
- package/js/node-index.js +1 -0
- package/js/resources/transactions.js +251 -4
- package/package.json +4 -4
- package/dist/mt/Cargo-mvyTli7g.js.map +0 -1
- package/dist/st/Cargo-Cysp4vto.js.map +0 -1
|
Binary file
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
async function loadWasm() {
|
|
6
6
|
let wasmModule;
|
|
7
7
|
if (!undefined || (undefined && !undefined.SSR)) {
|
|
8
|
-
wasmModule = await Promise.resolve().then(function () { return
|
|
8
|
+
wasmModule = await Promise.resolve().then(function () { return CargoDR9fiMbE; });
|
|
9
9
|
// The Cargo glue's __wbg_init TLA is stripped by the rollup build to
|
|
10
10
|
// prevent blocking WKWebView module evaluation. Call it explicitly here
|
|
11
11
|
// with the WASM URL that the Cargo glue pre-resolves (relative to its
|
|
@@ -13472,6 +13472,26 @@ class AdviceMap {
|
|
|
13472
13472
|
}
|
|
13473
13473
|
if (Symbol.dispose) AdviceMap.prototype[Symbol.dispose] = AdviceMap.prototype.free;
|
|
13474
13474
|
|
|
13475
|
+
/**
|
|
13476
|
+
* Whether a faucet's asset callbacks run when an asset is added to an account or a note.
|
|
13477
|
+
*
|
|
13478
|
+
* The flag is part of an asset's vault key, so two assets from the same faucet with different
|
|
13479
|
+
* flags occupy different vault slots and do not merge. Assets minted by a faucet that registers
|
|
13480
|
+
* transfer policies carry `Enabled`; everything else carries `Disabled`.
|
|
13481
|
+
* @enum {0 | 1}
|
|
13482
|
+
*/
|
|
13483
|
+
const AssetCallbackFlag = Object.freeze({
|
|
13484
|
+
/**
|
|
13485
|
+
* The faucet's callbacks are not invoked for this asset. This is the default for an asset
|
|
13486
|
+
* built via the `FungibleAsset` constructor.
|
|
13487
|
+
*/
|
|
13488
|
+
Disabled: 0, "0": "Disabled",
|
|
13489
|
+
/**
|
|
13490
|
+
* The faucet's callbacks are invoked before this asset is added to an account or a note.
|
|
13491
|
+
*/
|
|
13492
|
+
Enabled: 1, "1": "Enabled",
|
|
13493
|
+
});
|
|
13494
|
+
|
|
13475
13495
|
/**
|
|
13476
13496
|
* A container for an unlimited number of assets.
|
|
13477
13497
|
*
|
|
@@ -15214,6 +15234,14 @@ class FungibleAsset {
|
|
|
15214
15234
|
const ret = wasm.fungibleasset_amount(this.__wbg_ptr);
|
|
15215
15235
|
return BigInt.asUintN(64, ret);
|
|
15216
15236
|
}
|
|
15237
|
+
/**
|
|
15238
|
+
* Returns whether this asset invokes its faucet's callbacks.
|
|
15239
|
+
* @returns {AssetCallbackFlag}
|
|
15240
|
+
*/
|
|
15241
|
+
callbacks() {
|
|
15242
|
+
const ret = wasm.fungibleasset_callbacks(this.__wbg_ptr);
|
|
15243
|
+
return ret;
|
|
15244
|
+
}
|
|
15217
15245
|
/**
|
|
15218
15246
|
* Returns the faucet account that minted this asset.
|
|
15219
15247
|
* @returns {AccountId}
|
|
@@ -15245,6 +15273,20 @@ class FungibleAsset {
|
|
|
15245
15273
|
FungibleAssetFinalization.register(this, this.__wbg_ptr, this);
|
|
15246
15274
|
return this;
|
|
15247
15275
|
}
|
|
15276
|
+
/**
|
|
15277
|
+
* Returns a copy of this asset carrying the given callback flag.
|
|
15278
|
+
*
|
|
15279
|
+
* The flag is part of the asset's vault key, so it must match the flag the issuing faucet
|
|
15280
|
+
* applies — an asset built with the wrong flag addresses a different vault slot than the one
|
|
15281
|
+
* holding the balance. The constructor always produces `Disabled`; pass `Enabled` only for
|
|
15282
|
+
* assets from a faucet that registers transfer policies.
|
|
15283
|
+
* @param {AssetCallbackFlag} callbacks
|
|
15284
|
+
* @returns {FungibleAsset}
|
|
15285
|
+
*/
|
|
15286
|
+
withCallbacks(callbacks) {
|
|
15287
|
+
const ret = wasm.fungibleasset_withCallbacks(this.__wbg_ptr, callbacks);
|
|
15288
|
+
return FungibleAsset.__wrap(ret);
|
|
15289
|
+
}
|
|
15248
15290
|
}
|
|
15249
15291
|
if (Symbol.dispose) FungibleAsset.prototype[Symbol.dispose] = FungibleAsset.prototype.free;
|
|
15250
15292
|
|
|
@@ -24887,7 +24929,7 @@ function __wbg_get_imports() {
|
|
|
24887
24929
|
const ret = AccountStorage.__wrap(arg0);
|
|
24888
24930
|
return ret;
|
|
24889
24931
|
},
|
|
24890
|
-
|
|
24932
|
+
__wbg_addNoteTag_94ee2f838ec544dc: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
24891
24933
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
24892
24934
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
24893
24935
|
let v1;
|
|
@@ -24915,25 +24957,25 @@ function __wbg_get_imports() {
|
|
|
24915
24957
|
__wbg_append_a992ccc37aa62dc4: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
24916
24958
|
arg0.append(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
24917
24959
|
}, arguments); },
|
|
24918
|
-
|
|
24960
|
+
__wbg_applyFullAccountState_43caa7474baffc0b: function(arg0, arg1, arg2) {
|
|
24919
24961
|
const ret = applyFullAccountState(getStringFromWasm0(arg0, arg1), JsAccountUpdate.__wrap(arg2));
|
|
24920
24962
|
return ret;
|
|
24921
24963
|
},
|
|
24922
|
-
|
|
24964
|
+
__wbg_applySettingsMutations_5de1d94023be9157: function(arg0, arg1, arg2, arg3) {
|
|
24923
24965
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
24924
24966
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
24925
24967
|
const ret = applySettingsMutations(getStringFromWasm0(arg0, arg1), v0);
|
|
24926
24968
|
return ret;
|
|
24927
24969
|
},
|
|
24928
|
-
|
|
24970
|
+
__wbg_applyStateSync_189438332d96496e: function(arg0, arg1, arg2) {
|
|
24929
24971
|
const ret = applyStateSync(getStringFromWasm0(arg0, arg1), JsStateSyncUpdate.__wrap(arg2));
|
|
24930
24972
|
return ret;
|
|
24931
24973
|
},
|
|
24932
|
-
|
|
24974
|
+
__wbg_applyTransactionBatch_c300ed1fee34127a: function(arg0, arg1, arg2) {
|
|
24933
24975
|
const ret = applyTransactionBatch(getStringFromWasm0(arg0, arg1), arg2);
|
|
24934
24976
|
return ret;
|
|
24935
24977
|
},
|
|
24936
|
-
|
|
24978
|
+
__wbg_applyTransactionDelta_88c7fcff9175e58e: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19, arg20) {
|
|
24937
24979
|
let deferred0_0;
|
|
24938
24980
|
let deferred0_1;
|
|
24939
24981
|
let deferred1_0;
|
|
@@ -25072,7 +25114,7 @@ function __wbg_get_imports() {
|
|
|
25072
25114
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25073
25115
|
}
|
|
25074
25116
|
},
|
|
25075
|
-
|
|
25117
|
+
__wbg_exportStore_cf4d695fbf6de143: function(arg0, arg1) {
|
|
25076
25118
|
const ret = exportStore(getStringFromWasm0(arg0, arg1));
|
|
25077
25119
|
return ret;
|
|
25078
25120
|
},
|
|
@@ -25104,7 +25146,7 @@ function __wbg_get_imports() {
|
|
|
25104
25146
|
const ret = FetchedNote.__wrap(arg0);
|
|
25105
25147
|
return ret;
|
|
25106
25148
|
},
|
|
25107
|
-
|
|
25149
|
+
__wbg_forceImportStore_c50115d19ee606c7: function(arg0, arg1, arg2) {
|
|
25108
25150
|
const ret = forceImportStore(getStringFromWasm0(arg0, arg1), arg2);
|
|
25109
25151
|
return ret;
|
|
25110
25152
|
},
|
|
@@ -25128,7 +25170,7 @@ function __wbg_get_imports() {
|
|
|
25128
25170
|
const ret = FungibleAssetDeltaItem.__wrap(arg0);
|
|
25129
25171
|
return ret;
|
|
25130
25172
|
},
|
|
25131
|
-
|
|
25173
|
+
__wbg_getAccountAddresses_cbd727101b08a9f6: function(arg0, arg1, arg2, arg3) {
|
|
25132
25174
|
let deferred0_0;
|
|
25133
25175
|
let deferred0_1;
|
|
25134
25176
|
try {
|
|
@@ -25140,7 +25182,7 @@ function __wbg_get_imports() {
|
|
|
25140
25182
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25141
25183
|
}
|
|
25142
25184
|
},
|
|
25143
|
-
|
|
25185
|
+
__wbg_getAccountAuthByPubKeyCommitment_bb937a852fc252bc: function(arg0, arg1, arg2, arg3) {
|
|
25144
25186
|
let deferred0_0;
|
|
25145
25187
|
let deferred0_1;
|
|
25146
25188
|
try {
|
|
@@ -25152,7 +25194,7 @@ function __wbg_get_imports() {
|
|
|
25152
25194
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25153
25195
|
}
|
|
25154
25196
|
},
|
|
25155
|
-
|
|
25197
|
+
__wbg_getAccountCode_3cc0ae7a622f54fc: function(arg0, arg1, arg2, arg3) {
|
|
25156
25198
|
let deferred0_0;
|
|
25157
25199
|
let deferred0_1;
|
|
25158
25200
|
try {
|
|
@@ -25164,7 +25206,7 @@ function __wbg_get_imports() {
|
|
|
25164
25206
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25165
25207
|
}
|
|
25166
25208
|
},
|
|
25167
|
-
|
|
25209
|
+
__wbg_getAccountHeaderByCommitment_9944282b839bf9b6: function(arg0, arg1, arg2, arg3) {
|
|
25168
25210
|
let deferred0_0;
|
|
25169
25211
|
let deferred0_1;
|
|
25170
25212
|
try {
|
|
@@ -25176,7 +25218,7 @@ function __wbg_get_imports() {
|
|
|
25176
25218
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25177
25219
|
}
|
|
25178
25220
|
},
|
|
25179
|
-
|
|
25221
|
+
__wbg_getAccountHeader_84fb6f83a11e9cea: function(arg0, arg1, arg2, arg3) {
|
|
25180
25222
|
let deferred0_0;
|
|
25181
25223
|
let deferred0_1;
|
|
25182
25224
|
try {
|
|
@@ -25188,7 +25230,7 @@ function __wbg_get_imports() {
|
|
|
25188
25230
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25189
25231
|
}
|
|
25190
25232
|
},
|
|
25191
|
-
|
|
25233
|
+
__wbg_getAccountIdByKeyCommitment_f993328b4b855b21: function(arg0, arg1, arg2, arg3) {
|
|
25192
25234
|
let deferred0_0;
|
|
25193
25235
|
let deferred0_1;
|
|
25194
25236
|
try {
|
|
@@ -25200,11 +25242,11 @@ function __wbg_get_imports() {
|
|
|
25200
25242
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25201
25243
|
}
|
|
25202
25244
|
},
|
|
25203
|
-
|
|
25245
|
+
__wbg_getAccountIds_e80dceb4cc97875f: function(arg0, arg1) {
|
|
25204
25246
|
const ret = getAccountIds(getStringFromWasm0(arg0, arg1));
|
|
25205
25247
|
return ret;
|
|
25206
25248
|
},
|
|
25207
|
-
|
|
25249
|
+
__wbg_getAccountStorageMaps_e36e581a33dc958a: function(arg0, arg1, arg2, arg3) {
|
|
25208
25250
|
let deferred0_0;
|
|
25209
25251
|
let deferred0_1;
|
|
25210
25252
|
try {
|
|
@@ -25216,7 +25258,7 @@ function __wbg_get_imports() {
|
|
|
25216
25258
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25217
25259
|
}
|
|
25218
25260
|
},
|
|
25219
|
-
|
|
25261
|
+
__wbg_getAccountStorage_50de137ac49bdf17: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25220
25262
|
let deferred0_0;
|
|
25221
25263
|
let deferred0_1;
|
|
25222
25264
|
try {
|
|
@@ -25230,7 +25272,7 @@ function __wbg_get_imports() {
|
|
|
25230
25272
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25231
25273
|
}
|
|
25232
25274
|
},
|
|
25233
|
-
|
|
25275
|
+
__wbg_getAccountVaultAssets_30c74124867dbf56: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25234
25276
|
let deferred0_0;
|
|
25235
25277
|
let deferred0_1;
|
|
25236
25278
|
try {
|
|
@@ -25244,27 +25286,27 @@ function __wbg_get_imports() {
|
|
|
25244
25286
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25245
25287
|
}
|
|
25246
25288
|
},
|
|
25247
|
-
|
|
25289
|
+
__wbg_getAllAccountHeaders_b3e3ae880833a8cc: function(arg0, arg1) {
|
|
25248
25290
|
const ret = getAllAccountHeaders(getStringFromWasm0(arg0, arg1));
|
|
25249
25291
|
return ret;
|
|
25250
25292
|
},
|
|
25251
|
-
|
|
25293
|
+
__wbg_getBlockHeaders_8fa268d7fb3d3c28: function(arg0, arg1, arg2, arg3) {
|
|
25252
25294
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25253
25295
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25254
25296
|
const ret = getBlockHeaders(getStringFromWasm0(arg0, arg1), v0);
|
|
25255
25297
|
return ret;
|
|
25256
25298
|
},
|
|
25257
|
-
|
|
25299
|
+
__wbg_getCurrentBlockchainPeaks_ea97e8dd83a3db2f: function(arg0, arg1) {
|
|
25258
25300
|
const ret = getCurrentBlockchainPeaks(getStringFromWasm0(arg0, arg1));
|
|
25259
25301
|
return ret;
|
|
25260
25302
|
},
|
|
25261
|
-
|
|
25303
|
+
__wbg_getForeignAccountCode_7de2117da915f4be: function(arg0, arg1, arg2, arg3) {
|
|
25262
25304
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25263
25305
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25264
25306
|
const ret = getForeignAccountCode(getStringFromWasm0(arg0, arg1), v0);
|
|
25265
25307
|
return ret;
|
|
25266
25308
|
},
|
|
25267
|
-
|
|
25309
|
+
__wbg_getInputNoteByOffset_1cd4bd9db2e38694: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
25268
25310
|
let deferred1_0;
|
|
25269
25311
|
let deferred1_1;
|
|
25270
25312
|
try {
|
|
@@ -25278,31 +25320,31 @@ function __wbg_get_imports() {
|
|
|
25278
25320
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25279
25321
|
}
|
|
25280
25322
|
},
|
|
25281
|
-
|
|
25323
|
+
__wbg_getInputNotesFromDetailsCommitments_334d006c0e228205: function(arg0, arg1, arg2, arg3) {
|
|
25282
25324
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25283
25325
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25284
25326
|
const ret = getInputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
25285
25327
|
return ret;
|
|
25286
25328
|
},
|
|
25287
|
-
|
|
25329
|
+
__wbg_getInputNotesFromIds_bbaec98ba444d49e: function(arg0, arg1, arg2, arg3) {
|
|
25288
25330
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25289
25331
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25290
25332
|
const ret = getInputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
25291
25333
|
return ret;
|
|
25292
25334
|
},
|
|
25293
|
-
|
|
25335
|
+
__wbg_getInputNotesFromNullifiers_dde5b06918045f75: function(arg0, arg1, arg2, arg3) {
|
|
25294
25336
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25295
25337
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25296
25338
|
const ret = getInputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
25297
25339
|
return ret;
|
|
25298
25340
|
},
|
|
25299
|
-
|
|
25341
|
+
__wbg_getInputNotes_02d3daccecb4c763: function(arg0, arg1, arg2, arg3) {
|
|
25300
25342
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25301
25343
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25302
25344
|
const ret = getInputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25303
25345
|
return ret;
|
|
25304
25346
|
},
|
|
25305
|
-
|
|
25347
|
+
__wbg_getKeyCommitmentsByAccountId_de5d140392884430: function(arg0, arg1, arg2, arg3) {
|
|
25306
25348
|
let deferred0_0;
|
|
25307
25349
|
let deferred0_1;
|
|
25308
25350
|
try {
|
|
@@ -25314,7 +25356,7 @@ function __wbg_get_imports() {
|
|
|
25314
25356
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25315
25357
|
}
|
|
25316
25358
|
},
|
|
25317
|
-
|
|
25359
|
+
__wbg_getNoteScript_bc2ab9b3b789361a: function(arg0, arg1, arg2, arg3) {
|
|
25318
25360
|
let deferred0_0;
|
|
25319
25361
|
let deferred0_1;
|
|
25320
25362
|
try {
|
|
@@ -25326,39 +25368,39 @@ function __wbg_get_imports() {
|
|
|
25326
25368
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25327
25369
|
}
|
|
25328
25370
|
},
|
|
25329
|
-
|
|
25371
|
+
__wbg_getNoteTags_34a8fb7ffdde9e33: function(arg0, arg1) {
|
|
25330
25372
|
const ret = getNoteTags(getStringFromWasm0(arg0, arg1));
|
|
25331
25373
|
return ret;
|
|
25332
25374
|
},
|
|
25333
|
-
|
|
25375
|
+
__wbg_getOutputNotesFromDetailsCommitments_6e202d70d207d37f: function(arg0, arg1, arg2, arg3) {
|
|
25334
25376
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25335
25377
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25336
25378
|
const ret = getOutputNotesFromDetailsCommitments(getStringFromWasm0(arg0, arg1), v0);
|
|
25337
25379
|
return ret;
|
|
25338
25380
|
},
|
|
25339
|
-
|
|
25381
|
+
__wbg_getOutputNotesFromIds_2b07a4ef2fa3fdd9: function(arg0, arg1, arg2, arg3) {
|
|
25340
25382
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25341
25383
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25342
25384
|
const ret = getOutputNotesFromIds(getStringFromWasm0(arg0, arg1), v0);
|
|
25343
25385
|
return ret;
|
|
25344
25386
|
},
|
|
25345
|
-
|
|
25387
|
+
__wbg_getOutputNotesFromNullifiers_f59492590ecad477: function(arg0, arg1, arg2, arg3) {
|
|
25346
25388
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25347
25389
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25348
25390
|
const ret = getOutputNotesFromNullifiers(getStringFromWasm0(arg0, arg1), v0);
|
|
25349
25391
|
return ret;
|
|
25350
25392
|
},
|
|
25351
|
-
|
|
25393
|
+
__wbg_getOutputNotes_7ddd237b643a22e2: function(arg0, arg1, arg2, arg3) {
|
|
25352
25394
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25353
25395
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25354
25396
|
const ret = getOutputNotes(getStringFromWasm0(arg0, arg1), v0);
|
|
25355
25397
|
return ret;
|
|
25356
25398
|
},
|
|
25357
|
-
|
|
25399
|
+
__wbg_getPartialBlockchainNodesAll_e2e8c0d62a978ef1: function(arg0, arg1) {
|
|
25358
25400
|
const ret = getPartialBlockchainNodesAll(getStringFromWasm0(arg0, arg1));
|
|
25359
25401
|
return ret;
|
|
25360
25402
|
},
|
|
25361
|
-
|
|
25403
|
+
__wbg_getPartialBlockchainNodesUpToInOrderIndex_2f8e8d802df6ede2: function(arg0, arg1, arg2, arg3) {
|
|
25362
25404
|
let deferred0_0;
|
|
25363
25405
|
let deferred0_1;
|
|
25364
25406
|
try {
|
|
@@ -25370,7 +25412,7 @@ function __wbg_get_imports() {
|
|
|
25370
25412
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25371
25413
|
}
|
|
25372
25414
|
},
|
|
25373
|
-
|
|
25415
|
+
__wbg_getPartialBlockchainNodes_4505db840ba96409: function(arg0, arg1, arg2, arg3) {
|
|
25374
25416
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25375
25417
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25376
25418
|
const ret = getPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0);
|
|
@@ -25383,7 +25425,7 @@ function __wbg_get_imports() {
|
|
|
25383
25425
|
const ret = arg0.getReader();
|
|
25384
25426
|
return ret;
|
|
25385
25427
|
}, arguments); },
|
|
25386
|
-
|
|
25428
|
+
__wbg_getSetting_62039934dd52148a: function(arg0, arg1, arg2, arg3) {
|
|
25387
25429
|
let deferred0_0;
|
|
25388
25430
|
let deferred0_1;
|
|
25389
25431
|
try {
|
|
@@ -25395,7 +25437,7 @@ function __wbg_get_imports() {
|
|
|
25395
25437
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25396
25438
|
}
|
|
25397
25439
|
},
|
|
25398
|
-
|
|
25440
|
+
__wbg_getSyncHeight_1c355e9af8a6c5c1: function(arg0, arg1) {
|
|
25399
25441
|
const ret = getSyncHeight(getStringFromWasm0(arg0, arg1));
|
|
25400
25442
|
return ret;
|
|
25401
25443
|
},
|
|
@@ -25403,15 +25445,15 @@ function __wbg_get_imports() {
|
|
|
25403
25445
|
const ret = arg0.getTime();
|
|
25404
25446
|
return ret;
|
|
25405
25447
|
},
|
|
25406
|
-
|
|
25448
|
+
__wbg_getTrackedBlockHeaderNumbers_1127c2c0de9e8f2d: function(arg0, arg1) {
|
|
25407
25449
|
const ret = getTrackedBlockHeaderNumbers(getStringFromWasm0(arg0, arg1));
|
|
25408
25450
|
return ret;
|
|
25409
25451
|
},
|
|
25410
|
-
|
|
25452
|
+
__wbg_getTrackedBlockHeaders_0c9acbd5575e41f1: function(arg0, arg1) {
|
|
25411
25453
|
const ret = getTrackedBlockHeaders(getStringFromWasm0(arg0, arg1));
|
|
25412
25454
|
return ret;
|
|
25413
25455
|
},
|
|
25414
|
-
|
|
25456
|
+
__wbg_getTransactions_71b6f120136d4406: function(arg0, arg1, arg2, arg3) {
|
|
25415
25457
|
let deferred0_0;
|
|
25416
25458
|
let deferred0_1;
|
|
25417
25459
|
try {
|
|
@@ -25423,7 +25465,7 @@ function __wbg_get_imports() {
|
|
|
25423
25465
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25424
25466
|
}
|
|
25425
25467
|
},
|
|
25426
|
-
|
|
25468
|
+
__wbg_getUnspentInputNoteNullifiers_ac153627e18848ab: function(arg0, arg1) {
|
|
25427
25469
|
const ret = getUnspentInputNoteNullifiers(getStringFromWasm0(arg0, arg1));
|
|
25428
25470
|
return ret;
|
|
25429
25471
|
},
|
|
@@ -25467,7 +25509,7 @@ function __wbg_get_imports() {
|
|
|
25467
25509
|
const ret = InputNoteRecord.__wrap(arg0);
|
|
25468
25510
|
return ret;
|
|
25469
25511
|
},
|
|
25470
|
-
|
|
25512
|
+
__wbg_insertAccountAddress_15069fe099e1619e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25471
25513
|
let deferred0_0;
|
|
25472
25514
|
let deferred0_1;
|
|
25473
25515
|
try {
|
|
@@ -25481,7 +25523,7 @@ function __wbg_get_imports() {
|
|
|
25481
25523
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25482
25524
|
}
|
|
25483
25525
|
},
|
|
25484
|
-
|
|
25526
|
+
__wbg_insertAccountAuth_d0cb9c2601ea7324: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25485
25527
|
let deferred0_0;
|
|
25486
25528
|
let deferred0_1;
|
|
25487
25529
|
let deferred1_0;
|
|
@@ -25498,7 +25540,7 @@ function __wbg_get_imports() {
|
|
|
25498
25540
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25499
25541
|
}
|
|
25500
25542
|
},
|
|
25501
|
-
|
|
25543
|
+
__wbg_insertAccountKeyMapping_995e470bad5ead0b: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25502
25544
|
let deferred0_0;
|
|
25503
25545
|
let deferred0_1;
|
|
25504
25546
|
let deferred1_0;
|
|
@@ -25515,13 +25557,13 @@ function __wbg_get_imports() {
|
|
|
25515
25557
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25516
25558
|
}
|
|
25517
25559
|
},
|
|
25518
|
-
|
|
25560
|
+
__wbg_insertBlockHeader_e5a6e2ded97f2403: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25519
25561
|
var v0 = getArrayU8FromWasm0(arg3, arg4).slice();
|
|
25520
25562
|
wasm.__wbindgen_free(arg3, arg4 * 1, 1);
|
|
25521
25563
|
const ret = insertBlockHeader(getStringFromWasm0(arg0, arg1), arg2 >>> 0, v0, arg5 !== 0);
|
|
25522
25564
|
return ret;
|
|
25523
25565
|
},
|
|
25524
|
-
|
|
25566
|
+
__wbg_insertPartialBlockchainNodes_d6d5d926855e4d21: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25525
25567
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
25526
25568
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25527
25569
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25529,7 +25571,7 @@ function __wbg_get_imports() {
|
|
|
25529
25571
|
const ret = insertPartialBlockchainNodes(getStringFromWasm0(arg0, arg1), v0, v1);
|
|
25530
25572
|
return ret;
|
|
25531
25573
|
},
|
|
25532
|
-
|
|
25574
|
+
__wbg_insertSetting_0b89216c93defa8f: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25533
25575
|
let deferred0_0;
|
|
25534
25576
|
let deferred0_1;
|
|
25535
25577
|
try {
|
|
@@ -25543,7 +25585,7 @@ function __wbg_get_imports() {
|
|
|
25543
25585
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25544
25586
|
}
|
|
25545
25587
|
},
|
|
25546
|
-
|
|
25588
|
+
__wbg_insertTransactionScript_25a8761c16b219bb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25547
25589
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25548
25590
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25549
25591
|
let v1;
|
|
@@ -25640,11 +25682,11 @@ function __wbg_get_imports() {
|
|
|
25640
25682
|
const ret = arg0.length;
|
|
25641
25683
|
return ret;
|
|
25642
25684
|
},
|
|
25643
|
-
|
|
25685
|
+
__wbg_listSettingKeys_2b136b1269935560: function(arg0, arg1) {
|
|
25644
25686
|
const ret = listSettingKeys(getStringFromWasm0(arg0, arg1));
|
|
25645
25687
|
return ret;
|
|
25646
25688
|
},
|
|
25647
|
-
|
|
25689
|
+
__wbg_lockAccount_77845432e7766df6: function(arg0, arg1, arg2, arg3) {
|
|
25648
25690
|
let deferred0_0;
|
|
25649
25691
|
let deferred0_1;
|
|
25650
25692
|
try {
|
|
@@ -25847,7 +25889,7 @@ function __wbg_get_imports() {
|
|
|
25847
25889
|
const ret = NoteTag.__unwrap(arg0);
|
|
25848
25890
|
return ret;
|
|
25849
25891
|
},
|
|
25850
|
-
|
|
25892
|
+
__wbg_openDatabase_2f30006b5f901ff6: function(arg0, arg1, arg2, arg3) {
|
|
25851
25893
|
const ret = openDatabase(getStringFromWasm0(arg0, arg1), getStringFromWasm0(arg2, arg3));
|
|
25852
25894
|
return ret;
|
|
25853
25895
|
},
|
|
@@ -25878,7 +25920,7 @@ function __wbg_get_imports() {
|
|
|
25878
25920
|
const ret = ProvenTransaction.__wrap(arg0);
|
|
25879
25921
|
return ret;
|
|
25880
25922
|
},
|
|
25881
|
-
|
|
25923
|
+
__wbg_pruneAccountHistory_f92187e012bea002: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25882
25924
|
let deferred0_0;
|
|
25883
25925
|
let deferred0_1;
|
|
25884
25926
|
let deferred1_0;
|
|
@@ -25895,7 +25937,7 @@ function __wbg_get_imports() {
|
|
|
25895
25937
|
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
25896
25938
|
}
|
|
25897
25939
|
},
|
|
25898
|
-
|
|
25940
|
+
__wbg_pruneIrrelevantBlocks_802f17c51c071490: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
25899
25941
|
var v0 = getArrayU32FromWasm0(arg2, arg3).slice();
|
|
25900
25942
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
25901
25943
|
var v1 = getArrayJsValueFromWasm0(arg4, arg5).slice();
|
|
@@ -25925,13 +25967,13 @@ function __wbg_get_imports() {
|
|
|
25925
25967
|
__wbg_releaseLock_aa5846c2494b3032: function(arg0) {
|
|
25926
25968
|
arg0.releaseLock();
|
|
25927
25969
|
},
|
|
25928
|
-
|
|
25970
|
+
__wbg_removeAccountAddress_26bf46414ef4d36b: function(arg0, arg1, arg2, arg3) {
|
|
25929
25971
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25930
25972
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25931
25973
|
const ret = removeAccountAddress(getStringFromWasm0(arg0, arg1), v0);
|
|
25932
25974
|
return ret;
|
|
25933
25975
|
},
|
|
25934
|
-
|
|
25976
|
+
__wbg_removeAccountAuth_eee531cc8fc556ab: function(arg0, arg1, arg2, arg3) {
|
|
25935
25977
|
let deferred0_0;
|
|
25936
25978
|
let deferred0_1;
|
|
25937
25979
|
try {
|
|
@@ -25943,7 +25985,7 @@ function __wbg_get_imports() {
|
|
|
25943
25985
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25944
25986
|
}
|
|
25945
25987
|
},
|
|
25946
|
-
|
|
25988
|
+
__wbg_removeAllMappingsForKey_bb2ce4d992b13353: function(arg0, arg1, arg2, arg3) {
|
|
25947
25989
|
let deferred0_0;
|
|
25948
25990
|
let deferred0_1;
|
|
25949
25991
|
try {
|
|
@@ -25955,7 +25997,7 @@ function __wbg_get_imports() {
|
|
|
25955
25997
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
25956
25998
|
}
|
|
25957
25999
|
},
|
|
25958
|
-
|
|
26000
|
+
__wbg_removeNoteTag_ce18a2071a471486: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) {
|
|
25959
26001
|
var v0 = getArrayU8FromWasm0(arg2, arg3).slice();
|
|
25960
26002
|
wasm.__wbindgen_free(arg2, arg3 * 1, 1);
|
|
25961
26003
|
let v1;
|
|
@@ -25976,7 +26018,7 @@ function __wbg_get_imports() {
|
|
|
25976
26018
|
const ret = removeNoteTag(getStringFromWasm0(arg0, arg1), v0, v1, v2, v3);
|
|
25977
26019
|
return ret;
|
|
25978
26020
|
},
|
|
25979
|
-
|
|
26021
|
+
__wbg_removeSetting_a6764e1ec62f8c0f: function(arg0, arg1, arg2, arg3) {
|
|
25980
26022
|
let deferred0_0;
|
|
25981
26023
|
let deferred0_1;
|
|
25982
26024
|
try {
|
|
@@ -26179,13 +26221,13 @@ function __wbg_get_imports() {
|
|
|
26179
26221
|
const ret = TransactionSummary.__wrap(arg0);
|
|
26180
26222
|
return ret;
|
|
26181
26223
|
},
|
|
26182
|
-
|
|
26224
|
+
__wbg_undoAccountStates_829a6daf4a392818: function(arg0, arg1, arg2, arg3) {
|
|
26183
26225
|
var v0 = getArrayJsValueFromWasm0(arg2, arg3).slice();
|
|
26184
26226
|
wasm.__wbindgen_free(arg2, arg3 * 4, 4);
|
|
26185
26227
|
const ret = undoAccountStates(getStringFromWasm0(arg0, arg1), v0);
|
|
26186
26228
|
return ret;
|
|
26187
26229
|
},
|
|
26188
|
-
|
|
26230
|
+
__wbg_upsertAccountCode_f24cee98a5bbbfe5: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26189
26231
|
let deferred0_0;
|
|
26190
26232
|
let deferred0_1;
|
|
26191
26233
|
try {
|
|
@@ -26199,7 +26241,7 @@ function __wbg_get_imports() {
|
|
|
26199
26241
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26200
26242
|
}
|
|
26201
26243
|
},
|
|
26202
|
-
|
|
26244
|
+
__wbg_upsertAccountRecord_f616812a7dd3d5a1: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17) {
|
|
26203
26245
|
let deferred0_0;
|
|
26204
26246
|
let deferred0_1;
|
|
26205
26247
|
let deferred1_0;
|
|
@@ -26241,7 +26283,7 @@ function __wbg_get_imports() {
|
|
|
26241
26283
|
wasm.__wbindgen_free(deferred5_0, deferred5_1, 1);
|
|
26242
26284
|
}
|
|
26243
26285
|
},
|
|
26244
|
-
|
|
26286
|
+
__wbg_upsertAccountStorage_4f3a4494f26975fb: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26245
26287
|
let deferred0_0;
|
|
26246
26288
|
let deferred0_1;
|
|
26247
26289
|
try {
|
|
@@ -26255,7 +26297,7 @@ function __wbg_get_imports() {
|
|
|
26255
26297
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26256
26298
|
}
|
|
26257
26299
|
},
|
|
26258
|
-
|
|
26300
|
+
__wbg_upsertForeignAccountCode_6595b4d97e610669: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
26259
26301
|
let deferred0_0;
|
|
26260
26302
|
let deferred0_1;
|
|
26261
26303
|
let deferred2_0;
|
|
@@ -26274,7 +26316,7 @@ function __wbg_get_imports() {
|
|
|
26274
26316
|
wasm.__wbindgen_free(deferred2_0, deferred2_1, 1);
|
|
26275
26317
|
}
|
|
26276
26318
|
},
|
|
26277
|
-
|
|
26319
|
+
__wbg_upsertInputNote_850c7540f297f4d4: 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, arg25, arg26, arg27, arg28) {
|
|
26278
26320
|
let deferred0_0;
|
|
26279
26321
|
let deferred0_1;
|
|
26280
26322
|
let deferred6_0;
|
|
@@ -26323,7 +26365,7 @@ function __wbg_get_imports() {
|
|
|
26323
26365
|
wasm.__wbindgen_free(deferred9_0, deferred9_1, 1);
|
|
26324
26366
|
}
|
|
26325
26367
|
},
|
|
26326
|
-
|
|
26368
|
+
__wbg_upsertNoteScript_d946217575ba5025: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26327
26369
|
let deferred0_0;
|
|
26328
26370
|
let deferred0_1;
|
|
26329
26371
|
try {
|
|
@@ -26337,7 +26379,7 @@ function __wbg_get_imports() {
|
|
|
26337
26379
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26338
26380
|
}
|
|
26339
26381
|
},
|
|
26340
|
-
|
|
26382
|
+
__wbg_upsertOutputNote_907da49377d56a48: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16, arg17, arg18, arg19) {
|
|
26341
26383
|
let deferred0_0;
|
|
26342
26384
|
let deferred0_1;
|
|
26343
26385
|
let deferred1_0;
|
|
@@ -26372,7 +26414,7 @@ function __wbg_get_imports() {
|
|
|
26372
26414
|
wasm.__wbindgen_free(deferred4_0, deferred4_1, 1);
|
|
26373
26415
|
}
|
|
26374
26416
|
},
|
|
26375
|
-
|
|
26417
|
+
__wbg_upsertStorageMapEntries_6bf2d15ad885daf0: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26376
26418
|
let deferred0_0;
|
|
26377
26419
|
let deferred0_1;
|
|
26378
26420
|
try {
|
|
@@ -26386,7 +26428,7 @@ function __wbg_get_imports() {
|
|
|
26386
26428
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26387
26429
|
}
|
|
26388
26430
|
},
|
|
26389
|
-
|
|
26431
|
+
__wbg_upsertTransactionRecord_0b4dbeb561124c59: function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) {
|
|
26390
26432
|
let deferred0_0;
|
|
26391
26433
|
let deferred0_1;
|
|
26392
26434
|
try {
|
|
@@ -26407,7 +26449,7 @@ function __wbg_get_imports() {
|
|
|
26407
26449
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
26408
26450
|
}
|
|
26409
26451
|
},
|
|
26410
|
-
|
|
26452
|
+
__wbg_upsertVaultAssets_55f07579c9e0113e: function(arg0, arg1, arg2, arg3, arg4, arg5) {
|
|
26411
26453
|
let deferred0_0;
|
|
26412
26454
|
let deferred0_1;
|
|
26413
26455
|
try {
|
|
@@ -26438,12 +26480,12 @@ function __wbg_get_imports() {
|
|
|
26438
26480
|
return ret;
|
|
26439
26481
|
},
|
|
26440
26482
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
26441
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26483
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 427, function: Function { arguments: [Externref], shim_idx: 815, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26442
26484
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8d8dd5a992b1207e___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_8d8dd5a992b1207e___JsValue____Output_______, wasm_bindgen_8d8dd5a992b1207e___convert__closures_____invoke___wasm_bindgen_8d8dd5a992b1207e___JsValue_____);
|
|
26443
26485
|
return ret;
|
|
26444
26486
|
},
|
|
26445
26487
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
26446
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
26488
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 427, function: Function { arguments: [], shim_idx: 428, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
26447
26489
|
const ret = makeMutClosure(arg0, arg1, wasm.wasm_bindgen_8d8dd5a992b1207e___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_8d8dd5a992b1207e___JsValue____Output_______, wasm_bindgen_8d8dd5a992b1207e___convert__closures_____invoke______);
|
|
26448
26490
|
return ret;
|
|
26449
26491
|
},
|
|
@@ -27390,7 +27432,7 @@ async function __wbg_init(module_or_path) {
|
|
|
27390
27432
|
|
|
27391
27433
|
const module$1 = new URL("assets/miden_client_web.wasm", self.location.href);
|
|
27392
27434
|
|
|
27393
|
-
var
|
|
27435
|
+
var CargoDR9fiMbE = /*#__PURE__*/Object.freeze({
|
|
27394
27436
|
__proto__: null,
|
|
27395
27437
|
Account: Account,
|
|
27396
27438
|
AccountArray: AccountArray,
|
|
@@ -27417,6 +27459,7 @@ var CargoCysp4vto = /*#__PURE__*/Object.freeze({
|
|
|
27417
27459
|
Address: Address,
|
|
27418
27460
|
AdviceInputs: AdviceInputs,
|
|
27419
27461
|
AdviceMap: AdviceMap,
|
|
27462
|
+
AssetCallbackFlag: AssetCallbackFlag,
|
|
27420
27463
|
AssetVault: AssetVault,
|
|
27421
27464
|
AuthFalcon512RpoMultisigConfig: AuthFalcon512RpoMultisigConfig,
|
|
27422
27465
|
AuthScheme: AuthScheme,
|