@fuel-ts/account 0.0.0-rc-2040-20240415161844 → 0.0.0-rc-2021-20240415193305
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.
Potentially problematic release.
This version of @fuel-ts/account might be problematic. Click here for more details.
- package/README.md +1 -1
- package/dist/account.d.ts +5 -4
- package/dist/account.d.ts.map +1 -1
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +1 -1
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +1 -1
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +1 -1
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +833 -560
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +834 -555
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +684 -406
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +10 -2
- package/dist/predicate/predicate.d.ts.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +906 -324
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/coin-quantity.d.ts +1 -1
- package/dist/providers/coin-quantity.d.ts.map +1 -1
- package/dist/providers/coin.d.ts +4 -2
- package/dist/providers/coin.d.ts.map +1 -1
- package/dist/providers/fuel-graphql-subscriber.d.ts.map +1 -1
- package/dist/providers/message.d.ts +7 -1
- package/dist/providers/message.d.ts.map +1 -1
- package/dist/providers/provider.d.ts +48 -27
- package/dist/providers/provider.d.ts.map +1 -1
- package/dist/providers/transaction-request/create-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/input.d.ts +2 -2
- package/dist/providers/transaction-request/input.d.ts.map +1 -1
- package/dist/providers/transaction-request/script-transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/transaction-request.d.ts +8 -25
- package/dist/providers/transaction-request/transaction-request.d.ts.map +1 -1
- package/dist/providers/transaction-request/utils.d.ts +3 -0
- package/dist/providers/transaction-request/utils.d.ts.map +1 -1
- package/dist/providers/transaction-response/transaction-response.d.ts.map +1 -1
- package/dist/providers/transaction-summary/assemble-transaction-summary.d.ts +2 -0
- package/dist/providers/transaction-summary/assemble-transaction-summary.d.ts.map +1 -1
- package/dist/providers/transaction-summary/calculate-transaction-fee.d.ts +3 -2
- package/dist/providers/transaction-summary/calculate-transaction-fee.d.ts.map +1 -1
- package/dist/providers/transaction-summary/get-transaction-summary.d.ts.map +1 -1
- package/dist/providers/utils/gas.d.ts +8 -2
- package/dist/providers/utils/gas.d.ts.map +1 -1
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +1579 -1068
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +809 -548
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +678 -417
- package/dist/test-utils.mjs.map +1 -1
- package/dist/wallet/base-wallet-unlocked.d.ts.map +1 -1
- package/package.json +17 -17
@@ -5104,7 +5104,7 @@
|
|
5104
5104
|
function isBlob(obj) {
|
5105
5105
|
return typeof obj === "object" && typeof obj.arrayBuffer === "function" && typeof obj.type === "string" && typeof obj.stream === "function" && typeof obj.constructor === "function" && typeof obj.constructor.name === "string" && /^(Blob|File)$/.test(obj.constructor.name) && /^(Blob|File)$/.test(obj[Symbol.toStringTag]);
|
5106
5106
|
}
|
5107
|
-
function
|
5107
|
+
function clone3(instance) {
|
5108
5108
|
let p1, p2;
|
5109
5109
|
let body = instance.body;
|
5110
5110
|
if (instance.bodyUsed) {
|
@@ -6038,7 +6038,7 @@
|
|
6038
6038
|
* @return Response
|
6039
6039
|
*/
|
6040
6040
|
clone() {
|
6041
|
-
return new Response2(
|
6041
|
+
return new Response2(clone3(this), {
|
6042
6042
|
url: this.url,
|
6043
6043
|
status: this.status,
|
6044
6044
|
statusText: this.statusText,
|
@@ -6088,7 +6088,7 @@
|
|
6088
6088
|
if ((init.body != null || isRequest(input) && input.body !== null) && (method === "GET" || method === "HEAD")) {
|
6089
6089
|
throw new TypeError("Request with GET/HEAD method cannot have body");
|
6090
6090
|
}
|
6091
|
-
let inputBody = init.body != null ? init.body : isRequest(input) && input.body !== null ?
|
6091
|
+
let inputBody = init.body != null ? init.body : isRequest(input) && input.body !== null ? clone3(input) : null;
|
6092
6092
|
Body.call(this, inputBody, {
|
6093
6093
|
timeout: init.timeout || input.timeout || 0,
|
6094
6094
|
size: init.size || input.size || 0
|
@@ -31914,9 +31914,9 @@ spurious results.`);
|
|
31914
31914
|
// ../versions/dist/index.mjs
|
31915
31915
|
function getBuiltinVersions() {
|
31916
31916
|
return {
|
31917
|
-
FORC: "0.
|
31918
|
-
FUEL_CORE: "0.
|
31919
|
-
FUELS: "0.
|
31917
|
+
FORC: "0.51.1",
|
31918
|
+
FUEL_CORE: "0.24.2",
|
31919
|
+
FUELS: "0.80.0"
|
31920
31920
|
};
|
31921
31921
|
}
|
31922
31922
|
function parseVersion(version2) {
|
@@ -32193,524 +32193,757 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
32193
32193
|
__publicField3(DateTime, "TAI64_NULL", "");
|
32194
32194
|
var chainConfig_default = {
|
32195
32195
|
chain_name: "local_testnet",
|
32196
|
-
|
32197
|
-
|
32198
|
-
|
32199
|
-
|
32200
|
-
|
32201
|
-
|
32202
|
-
|
32203
|
-
|
32204
|
-
|
32205
|
-
|
32206
|
-
|
32207
|
-
|
32208
|
-
|
32209
|
-
|
32210
|
-
|
32211
|
-
|
32212
|
-
|
32213
|
-
|
32214
|
-
|
32215
|
-
|
32216
|
-
|
32217
|
-
|
32218
|
-
|
32219
|
-
|
32220
|
-
|
32221
|
-
|
32222
|
-
|
32223
|
-
|
32224
|
-
|
32225
|
-
|
32226
|
-
|
32227
|
-
|
32228
|
-
|
32229
|
-
|
32230
|
-
|
32231
|
-
|
32232
|
-
|
32233
|
-
|
32234
|
-
{
|
32235
|
-
|
32236
|
-
|
32237
|
-
|
32238
|
-
|
32239
|
-
|
32240
|
-
|
32241
|
-
|
32242
|
-
|
32243
|
-
|
32244
|
-
|
32245
|
-
|
32246
|
-
|
32247
|
-
|
32248
|
-
|
32249
|
-
|
32250
|
-
|
32251
|
-
|
32252
|
-
|
32253
|
-
|
32254
|
-
|
32255
|
-
|
32256
|
-
|
32257
|
-
|
32258
|
-
|
32259
|
-
|
32260
|
-
|
32261
|
-
|
32262
|
-
|
32263
|
-
|
32264
|
-
|
32265
|
-
|
32266
|
-
|
32267
|
-
|
32268
|
-
|
32269
|
-
|
32270
|
-
|
32271
|
-
|
32272
|
-
|
32273
|
-
|
32274
|
-
|
32275
|
-
|
32276
|
-
|
32277
|
-
|
32278
|
-
|
32279
|
-
|
32280
|
-
|
32281
|
-
|
32282
|
-
|
32283
|
-
|
32284
|
-
|
32285
|
-
|
32286
|
-
|
32287
|
-
|
32288
|
-
|
32289
|
-
|
32290
|
-
|
32291
|
-
|
32292
|
-
|
32293
|
-
|
32294
|
-
|
32295
|
-
|
32296
|
-
|
32297
|
-
|
32298
|
-
|
32299
|
-
|
32300
|
-
|
32301
|
-
|
32302
|
-
|
32303
|
-
|
32304
|
-
|
32305
|
-
|
32306
|
-
|
32307
|
-
|
32308
|
-
|
32309
|
-
|
32310
|
-
|
32311
|
-
|
32312
|
-
|
32313
|
-
|
32314
|
-
|
32315
|
-
|
32316
|
-
|
32317
|
-
|
32318
|
-
|
32319
|
-
|
32320
|
-
|
32321
|
-
|
32322
|
-
|
32323
|
-
|
32324
|
-
|
32325
|
-
|
32326
|
-
|
32327
|
-
|
32328
|
-
|
32329
|
-
|
32330
|
-
|
32331
|
-
|
32332
|
-
|
32333
|
-
|
32334
|
-
|
32335
|
-
|
32336
|
-
|
32337
|
-
|
32338
|
-
|
32339
|
-
|
32340
|
-
|
32341
|
-
|
32342
|
-
|
32343
|
-
|
32344
|
-
|
32345
|
-
|
32346
|
-
|
32347
|
-
|
32348
|
-
|
32349
|
-
|
32350
|
-
|
32351
|
-
|
32352
|
-
|
32353
|
-
|
32354
|
-
|
32355
|
-
|
32356
|
-
|
32357
|
-
|
32358
|
-
|
32359
|
-
|
32360
|
-
|
32361
|
-
|
32362
|
-
|
32363
|
-
|
32364
|
-
|
32365
|
-
|
32366
|
-
|
32367
|
-
|
32368
|
-
|
32369
|
-
|
32370
|
-
|
32371
|
-
|
32372
|
-
|
32373
|
-
|
32374
|
-
|
32375
|
-
|
32376
|
-
|
32377
|
-
|
32378
|
-
|
32379
|
-
|
32380
|
-
|
32381
|
-
|
32382
|
-
|
32383
|
-
|
32384
|
-
|
32385
|
-
|
32386
|
-
|
32387
|
-
|
32388
|
-
|
32389
|
-
|
32390
|
-
|
32391
|
-
|
32392
|
-
|
32393
|
-
|
32394
|
-
|
32395
|
-
|
32396
|
-
|
32397
|
-
|
32398
|
-
|
32399
|
-
|
32400
|
-
|
32401
|
-
|
32402
|
-
|
32403
|
-
|
32404
|
-
|
32405
|
-
|
32406
|
-
|
32407
|
-
|
32408
|
-
|
32409
|
-
|
32410
|
-
|
32411
|
-
|
32412
|
-
|
32413
|
-
|
32414
|
-
|
32415
|
-
|
32416
|
-
|
32417
|
-
|
32418
|
-
|
32419
|
-
|
32420
|
-
|
32421
|
-
|
32422
|
-
|
32423
|
-
|
32424
|
-
|
32425
|
-
|
32426
|
-
|
32427
|
-
|
32428
|
-
|
32429
|
-
|
32430
|
-
|
32431
|
-
|
32432
|
-
|
32433
|
-
|
32434
|
-
|
32435
|
-
|
32436
|
-
|
32437
|
-
|
32438
|
-
|
32439
|
-
|
32440
|
-
|
32441
|
-
|
32442
|
-
|
32443
|
-
|
32444
|
-
|
32445
|
-
|
32446
|
-
|
32447
|
-
|
32448
|
-
|
32449
|
-
|
32450
|
-
|
32451
|
-
|
32452
|
-
da_height: "0x00"
|
32196
|
+
consensus_parameters: {
|
32197
|
+
V1: {
|
32198
|
+
tx_params: {
|
32199
|
+
V1: {
|
32200
|
+
max_inputs: 255,
|
32201
|
+
max_outputs: 255,
|
32202
|
+
max_witnesses: 255,
|
32203
|
+
max_gas_per_tx: 3e7,
|
32204
|
+
max_size: 112640
|
32205
|
+
}
|
32206
|
+
},
|
32207
|
+
predicate_params: {
|
32208
|
+
V1: {
|
32209
|
+
max_predicate_length: 102400,
|
32210
|
+
max_predicate_data_length: 102400,
|
32211
|
+
max_message_data_length: 102400,
|
32212
|
+
max_gas_per_predicate: 3e7
|
32213
|
+
}
|
32214
|
+
},
|
32215
|
+
script_params: {
|
32216
|
+
V1: {
|
32217
|
+
max_script_length: 102400,
|
32218
|
+
max_script_data_length: 102400
|
32219
|
+
}
|
32220
|
+
},
|
32221
|
+
contract_params: {
|
32222
|
+
V1: {
|
32223
|
+
contract_max_size: 102400,
|
32224
|
+
max_storage_slots: 1760
|
32225
|
+
}
|
32226
|
+
},
|
32227
|
+
fee_params: {
|
32228
|
+
V1: {
|
32229
|
+
gas_price_factor: 92,
|
32230
|
+
gas_per_byte: 63
|
32231
|
+
}
|
32232
|
+
},
|
32233
|
+
chain_id: 0,
|
32234
|
+
gas_costs: {
|
32235
|
+
V1: {
|
32236
|
+
add: 2,
|
32237
|
+
addi: 2,
|
32238
|
+
aloc: 1,
|
32239
|
+
and: 2,
|
32240
|
+
andi: 2,
|
32241
|
+
bal: 366,
|
32242
|
+
bhei: 2,
|
32243
|
+
bhsh: 2,
|
32244
|
+
burn: 33949,
|
32245
|
+
cb: 2,
|
32246
|
+
cfei: 2,
|
32247
|
+
cfsi: 2,
|
32248
|
+
div: 2,
|
32249
|
+
divi: 2,
|
32250
|
+
eck1: 3347,
|
32251
|
+
ecr1: 46165,
|
32252
|
+
ed19: 4210,
|
32253
|
+
eq: 2,
|
32254
|
+
exp: 2,
|
32255
|
+
expi: 2,
|
32256
|
+
flag: 1,
|
32257
|
+
gm: 2,
|
32258
|
+
gt: 2,
|
32259
|
+
gtf: 16,
|
32260
|
+
ji: 2,
|
32261
|
+
jmp: 2,
|
32262
|
+
jne: 2,
|
32263
|
+
jnei: 2,
|
32264
|
+
jnzi: 2,
|
32265
|
+
jmpf: 2,
|
32266
|
+
jmpb: 2,
|
32267
|
+
jnzf: 2,
|
32268
|
+
jnzb: 2,
|
32269
|
+
jnef: 2,
|
32270
|
+
jneb: 2,
|
32271
|
+
lb: 2,
|
32272
|
+
log: 754,
|
32273
|
+
lt: 2,
|
32274
|
+
lw: 2,
|
32275
|
+
mint: 35718,
|
32276
|
+
mlog: 2,
|
32277
|
+
mod: 2,
|
32278
|
+
modi: 2,
|
32279
|
+
move: 2,
|
32280
|
+
movi: 2,
|
32281
|
+
mroo: 5,
|
32282
|
+
mul: 2,
|
32283
|
+
muli: 2,
|
32284
|
+
mldv: 4,
|
32285
|
+
noop: 1,
|
32286
|
+
not: 2,
|
32287
|
+
or: 2,
|
32288
|
+
ori: 2,
|
32289
|
+
poph: 3,
|
32290
|
+
popl: 3,
|
32291
|
+
pshh: 4,
|
32292
|
+
pshl: 4,
|
32293
|
+
ret_contract: 733,
|
32294
|
+
rvrt_contract: 722,
|
32295
|
+
sb: 2,
|
32296
|
+
sll: 2,
|
32297
|
+
slli: 2,
|
32298
|
+
srl: 2,
|
32299
|
+
srli: 2,
|
32300
|
+
srw: 253,
|
32301
|
+
sub: 2,
|
32302
|
+
subi: 2,
|
32303
|
+
sw: 2,
|
32304
|
+
sww: 29053,
|
32305
|
+
time: 79,
|
32306
|
+
tr: 46242,
|
32307
|
+
tro: 33251,
|
32308
|
+
wdcm: 3,
|
32309
|
+
wqcm: 3,
|
32310
|
+
wdop: 3,
|
32311
|
+
wqop: 3,
|
32312
|
+
wdml: 3,
|
32313
|
+
wqml: 4,
|
32314
|
+
wddv: 5,
|
32315
|
+
wqdv: 7,
|
32316
|
+
wdmd: 11,
|
32317
|
+
wqmd: 18,
|
32318
|
+
wdam: 9,
|
32319
|
+
wqam: 12,
|
32320
|
+
wdmm: 11,
|
32321
|
+
wqmm: 11,
|
32322
|
+
xor: 2,
|
32323
|
+
xori: 2,
|
32324
|
+
call: {
|
32325
|
+
LightOperation: {
|
32326
|
+
base: 21687,
|
32327
|
+
units_per_gas: 4
|
32328
|
+
}
|
32329
|
+
},
|
32330
|
+
ccp: {
|
32331
|
+
LightOperation: {
|
32332
|
+
base: 59,
|
32333
|
+
units_per_gas: 20
|
32334
|
+
}
|
32335
|
+
},
|
32336
|
+
croo: {
|
32337
|
+
LightOperation: {
|
32338
|
+
base: 1,
|
32339
|
+
units_per_gas: 1
|
32340
|
+
}
|
32341
|
+
},
|
32342
|
+
csiz: {
|
32343
|
+
LightOperation: {
|
32344
|
+
base: 59,
|
32345
|
+
units_per_gas: 195
|
32346
|
+
}
|
32347
|
+
},
|
32348
|
+
k256: {
|
32349
|
+
LightOperation: {
|
32350
|
+
base: 282,
|
32351
|
+
units_per_gas: 3
|
32352
|
+
}
|
32353
|
+
},
|
32354
|
+
ldc: {
|
32355
|
+
LightOperation: {
|
32356
|
+
base: 45,
|
32357
|
+
units_per_gas: 65
|
32358
|
+
}
|
32359
|
+
},
|
32360
|
+
logd: {
|
32361
|
+
LightOperation: {
|
32362
|
+
base: 1134,
|
32363
|
+
units_per_gas: 2
|
32364
|
+
}
|
32365
|
+
},
|
32366
|
+
mcl: {
|
32367
|
+
LightOperation: {
|
32368
|
+
base: 3,
|
32369
|
+
units_per_gas: 523
|
32370
|
+
}
|
32371
|
+
},
|
32372
|
+
mcli: {
|
32373
|
+
LightOperation: {
|
32374
|
+
base: 3,
|
32375
|
+
units_per_gas: 526
|
32376
|
+
}
|
32377
|
+
},
|
32378
|
+
mcp: {
|
32379
|
+
LightOperation: {
|
32380
|
+
base: 3,
|
32381
|
+
units_per_gas: 448
|
32382
|
+
}
|
32383
|
+
},
|
32384
|
+
mcpi: {
|
32385
|
+
LightOperation: {
|
32386
|
+
base: 7,
|
32387
|
+
units_per_gas: 585
|
32388
|
+
}
|
32389
|
+
},
|
32390
|
+
meq: {
|
32391
|
+
LightOperation: {
|
32392
|
+
base: 11,
|
32393
|
+
units_per_gas: 1097
|
32394
|
+
}
|
32395
|
+
},
|
32396
|
+
retd_contract: {
|
32397
|
+
LightOperation: {
|
32398
|
+
base: 1086,
|
32399
|
+
units_per_gas: 2
|
32400
|
+
}
|
32401
|
+
},
|
32402
|
+
s256: {
|
32403
|
+
LightOperation: {
|
32404
|
+
base: 45,
|
32405
|
+
units_per_gas: 3
|
32406
|
+
}
|
32407
|
+
},
|
32408
|
+
scwq: {
|
32409
|
+
HeavyOperation: {
|
32410
|
+
base: 30375,
|
32411
|
+
gas_per_unit: 28628
|
32412
|
+
}
|
32413
|
+
},
|
32414
|
+
smo: {
|
32415
|
+
LightOperation: {
|
32416
|
+
base: 64196,
|
32417
|
+
units_per_gas: 1
|
32418
|
+
}
|
32419
|
+
},
|
32420
|
+
srwq: {
|
32421
|
+
HeavyOperation: {
|
32422
|
+
base: 262,
|
32423
|
+
gas_per_unit: 249
|
32424
|
+
}
|
32425
|
+
},
|
32426
|
+
swwq: {
|
32427
|
+
HeavyOperation: {
|
32428
|
+
base: 28484,
|
32429
|
+
gas_per_unit: 26613
|
32430
|
+
}
|
32431
|
+
},
|
32432
|
+
contract_root: {
|
32433
|
+
LightOperation: {
|
32434
|
+
base: 45,
|
32435
|
+
units_per_gas: 1
|
32436
|
+
}
|
32437
|
+
},
|
32438
|
+
state_root: {
|
32439
|
+
HeavyOperation: {
|
32440
|
+
base: 350,
|
32441
|
+
gas_per_unit: 176
|
32442
|
+
}
|
32443
|
+
},
|
32444
|
+
new_storage_per_byte: 63,
|
32445
|
+
vm_initialization: {
|
32446
|
+
LightOperation: {
|
32447
|
+
base: 1645,
|
32448
|
+
units_per_gas: 14
|
32449
|
+
}
|
32450
|
+
}
|
32451
|
+
}
|
32453
32452
|
},
|
32454
|
-
|
32455
|
-
|
32456
|
-
|
32457
|
-
|
32458
|
-
amount: "0xb04f3c08f59b309e",
|
32459
|
-
data: "",
|
32460
|
-
da_height: "0x00"
|
32461
|
-
}
|
32462
|
-
]
|
32453
|
+
base_asset_id: "0000000000000000000000000000000000000000000000000000000000000000",
|
32454
|
+
block_gas_limit: 3e7,
|
32455
|
+
privileged_address: "0000000000000000000000000000000000000000000000000000000000000000"
|
32456
|
+
}
|
32463
32457
|
},
|
32464
|
-
|
32465
|
-
|
32466
|
-
|
32467
|
-
|
32468
|
-
|
32469
|
-
|
32470
|
-
|
32458
|
+
consensus: {
|
32459
|
+
PoA: {
|
32460
|
+
signing_key: "0x94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d"
|
32461
|
+
}
|
32462
|
+
}
|
32463
|
+
};
|
32464
|
+
var metadata_default = {
|
32465
|
+
chain_config: "chainConfig.json",
|
32466
|
+
table_encoding: {
|
32467
|
+
Json: {
|
32468
|
+
filepath: "stateConfig.json"
|
32469
|
+
}
|
32470
|
+
}
|
32471
|
+
};
|
32472
|
+
var stateConfig_default = {
|
32473
|
+
coins: [
|
32474
|
+
{
|
32475
|
+
tx_id: "0x260eabfd50937e92939fd92687e9302a72e91c5065f64f853f2ccbe02396fe09d665",
|
32476
|
+
output_index: 0,
|
32477
|
+
tx_pointer_block_height: 0,
|
32478
|
+
tx_pointer_tx_idx: 0,
|
32479
|
+
owner: "0x94ffcc53b892684acefaebc8a3d4a595e528a8cf664eeb3ef36f1020b0809d0d",
|
32480
|
+
amount: 18446744073709552e3,
|
32481
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32471
32482
|
},
|
32472
|
-
|
32473
|
-
|
32474
|
-
|
32475
|
-
|
32476
|
-
|
32483
|
+
{
|
32484
|
+
tx_id: "0x2a757c2317236f7883ac9bbbf7d402f034e0b725c544ef1c8725b1d2bd960f8c690f",
|
32485
|
+
output_index: 0,
|
32486
|
+
tx_pointer_block_height: 0,
|
32487
|
+
tx_pointer_tx_idx: 0,
|
32488
|
+
owner: "0x09c0b2d1a486c439a87bcba6b46a7a1a23f3897cc83a94521a96da5c23bc58db",
|
32489
|
+
amount: 18446744073709552e3,
|
32490
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32477
32491
|
},
|
32478
|
-
|
32479
|
-
|
32480
|
-
|
32492
|
+
{
|
32493
|
+
tx_id: "0x634ef6cda00bac63992bbde80c6d694d484d58025a5ca0c9c848f0d35a5a3eee74b2",
|
32494
|
+
output_index: 0,
|
32495
|
+
tx_pointer_block_height: 0,
|
32496
|
+
tx_pointer_tx_idx: 0,
|
32497
|
+
owner: "0x09c0b2d1a486c439a87bcba6b46a7a1a23f3897cc83a94521a96da5c23bc58db",
|
32498
|
+
amount: 18446744073709552e3,
|
32499
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32481
32500
|
},
|
32482
|
-
|
32483
|
-
|
32484
|
-
|
32501
|
+
{
|
32502
|
+
tx_id: "0xd3543bb1da137a7987a96a1bb71681fdd195ff25318c0d4a923aa30eb27ffa80bc7b",
|
32503
|
+
output_index: 0,
|
32504
|
+
tx_pointer_block_height: 0,
|
32505
|
+
tx_pointer_tx_idx: 0,
|
32506
|
+
owner: "0x09c0b2d1a486c439a87bcba6b46a7a1a23f3897cc83a94521a96da5c23bc58db",
|
32507
|
+
amount: 18446744073709552e3,
|
32508
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32485
32509
|
},
|
32486
|
-
|
32487
|
-
|
32488
|
-
|
32489
|
-
|
32490
|
-
|
32491
|
-
|
32492
|
-
|
32493
|
-
|
32494
|
-
aloc: 1,
|
32495
|
-
and: 1,
|
32496
|
-
andi: 1,
|
32497
|
-
bal: 13,
|
32498
|
-
bhei: 1,
|
32499
|
-
bhsh: 1,
|
32500
|
-
burn: 132,
|
32501
|
-
cb: 1,
|
32502
|
-
cfei: 1,
|
32503
|
-
cfsi: 1,
|
32504
|
-
croo: 16,
|
32505
|
-
div: 1,
|
32506
|
-
divi: 1,
|
32507
|
-
ecr1: 3e3,
|
32508
|
-
eck1: 951,
|
32509
|
-
ed19: 3e3,
|
32510
|
-
eq: 1,
|
32511
|
-
exp: 1,
|
32512
|
-
expi: 1,
|
32513
|
-
flag: 1,
|
32514
|
-
gm: 1,
|
32515
|
-
gt: 1,
|
32516
|
-
gtf: 1,
|
32517
|
-
ji: 1,
|
32518
|
-
jmp: 1,
|
32519
|
-
jne: 1,
|
32520
|
-
jnei: 1,
|
32521
|
-
jnzi: 1,
|
32522
|
-
jmpf: 1,
|
32523
|
-
jmpb: 1,
|
32524
|
-
jnzf: 1,
|
32525
|
-
jnzb: 1,
|
32526
|
-
jnef: 1,
|
32527
|
-
jneb: 1,
|
32528
|
-
lb: 1,
|
32529
|
-
log: 9,
|
32530
|
-
lt: 1,
|
32531
|
-
lw: 1,
|
32532
|
-
mint: 135,
|
32533
|
-
mlog: 1,
|
32534
|
-
modOp: 1,
|
32535
|
-
modi: 1,
|
32536
|
-
moveOp: 1,
|
32537
|
-
movi: 1,
|
32538
|
-
mroo: 2,
|
32539
|
-
mul: 1,
|
32540
|
-
muli: 1,
|
32541
|
-
mldv: 1,
|
32542
|
-
noop: 1,
|
32543
|
-
not: 1,
|
32544
|
-
or: 1,
|
32545
|
-
ori: 1,
|
32546
|
-
poph: 2,
|
32547
|
-
popl: 2,
|
32548
|
-
pshh: 2,
|
32549
|
-
pshl: 2,
|
32550
|
-
ret: 13,
|
32551
|
-
rvrt: 13,
|
32552
|
-
sb: 1,
|
32553
|
-
sll: 1,
|
32554
|
-
slli: 1,
|
32555
|
-
srl: 1,
|
32556
|
-
srli: 1,
|
32557
|
-
srw: 12,
|
32558
|
-
sub: 1,
|
32559
|
-
subi: 1,
|
32560
|
-
sw: 1,
|
32561
|
-
sww: 67,
|
32562
|
-
time: 1,
|
32563
|
-
tr: 105,
|
32564
|
-
tro: 60,
|
32565
|
-
wdcm: 1,
|
32566
|
-
wqcm: 1,
|
32567
|
-
wdop: 1,
|
32568
|
-
wqop: 1,
|
32569
|
-
wdml: 1,
|
32570
|
-
wqml: 1,
|
32571
|
-
wddv: 1,
|
32572
|
-
wqdv: 2,
|
32573
|
-
wdmd: 3,
|
32574
|
-
wqmd: 4,
|
32575
|
-
wdam: 2,
|
32576
|
-
wqam: 3,
|
32577
|
-
wdmm: 3,
|
32578
|
-
wqmm: 3,
|
32579
|
-
xor: 1,
|
32580
|
-
xori: 1,
|
32581
|
-
call: {
|
32582
|
-
LightOperation: {
|
32583
|
-
base: 144,
|
32584
|
-
units_per_gas: 214
|
32585
|
-
}
|
32510
|
+
{
|
32511
|
+
tx_id: "0xa4d42cbb02adb32f5f3a9eab33a0ee7bdab8910ad9f615dfc86a7bb9e49a732bc58c",
|
32512
|
+
output_index: 0,
|
32513
|
+
tx_pointer_block_height: 0,
|
32514
|
+
tx_pointer_tx_idx: 0,
|
32515
|
+
owner: "0x5d99ee966b42cd8fc7bdd1364b389153a9e78b42b7d4a691470674e817888d4e",
|
32516
|
+
amount: 18446744073709552e3,
|
32517
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32586
32518
|
},
|
32587
|
-
|
32588
|
-
|
32589
|
-
|
32590
|
-
|
32591
|
-
|
32519
|
+
{
|
32520
|
+
tx_id: "0xc197cb09b1d89a7862b238e9500631bd43f291aadb7ff55c8129335349634e9fde3f",
|
32521
|
+
output_index: 0,
|
32522
|
+
tx_pointer_block_height: 0,
|
32523
|
+
tx_pointer_tx_idx: 0,
|
32524
|
+
owner: "0x5d99ee966b42cd8fc7bdd1364b389153a9e78b42b7d4a691470674e817888d4e",
|
32525
|
+
amount: 18446744073709552e3,
|
32526
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32592
32527
|
},
|
32593
|
-
|
32594
|
-
|
32595
|
-
|
32596
|
-
|
32597
|
-
|
32528
|
+
{
|
32529
|
+
tx_id: "0x4c4fc2451b9a9b16c520c1b89ec8968ce46823dd0396d84f7e3155861352fdce12c5",
|
32530
|
+
output_index: 0,
|
32531
|
+
tx_pointer_block_height: 0,
|
32532
|
+
tx_pointer_tx_idx: 0,
|
32533
|
+
owner: "0x5d99ee966b42cd8fc7bdd1364b389153a9e78b42b7d4a691470674e817888d4e",
|
32534
|
+
amount: 18446744073709552e3,
|
32535
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32598
32536
|
},
|
32599
|
-
|
32600
|
-
|
32601
|
-
|
32602
|
-
|
32603
|
-
|
32537
|
+
{
|
32538
|
+
tx_id: "0x68df8f08555086a1ab45591e6fe4bf2f538bcb80dd519108030b7e886d6a230c2531",
|
32539
|
+
output_index: 0,
|
32540
|
+
tx_pointer_block_height: 0,
|
32541
|
+
tx_pointer_tx_idx: 0,
|
32542
|
+
owner: "0xbdaad6a89e073e177895b3e5a9ccd15806749eda134a6438dae32fc5b6601f3f",
|
32543
|
+
amount: 18446744073709552e3,
|
32544
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32604
32545
|
},
|
32605
|
-
|
32606
|
-
|
32607
|
-
|
32608
|
-
|
32609
|
-
|
32546
|
+
{
|
32547
|
+
tx_id: "0x1b9bdaa290518373eb905e45ce7fcb89acedd24341ca7749ad47a938e4bf3ca9b7ce",
|
32548
|
+
output_index: 0,
|
32549
|
+
tx_pointer_block_height: 0,
|
32550
|
+
tx_pointer_tx_idx: 0,
|
32551
|
+
owner: "0xbdaad6a89e073e177895b3e5a9ccd15806749eda134a6438dae32fc5b6601f3f",
|
32552
|
+
amount: 18446744073709552e3,
|
32553
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32610
32554
|
},
|
32611
|
-
|
32612
|
-
|
32613
|
-
|
32614
|
-
|
32615
|
-
|
32555
|
+
{
|
32556
|
+
tx_id: "0xa5a2e9db3d1285337fe1183dc1eabe8f9cdcd470daf95cd5c522bbae292f53977f26",
|
32557
|
+
output_index: 0,
|
32558
|
+
tx_pointer_block_height: 0,
|
32559
|
+
tx_pointer_tx_idx: 0,
|
32560
|
+
owner: "0xbdaad6a89e073e177895b3e5a9ccd15806749eda134a6438dae32fc5b6601f3f",
|
32561
|
+
amount: 18446744073709552e3,
|
32562
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32616
32563
|
},
|
32617
|
-
|
32618
|
-
|
32619
|
-
|
32620
|
-
|
32621
|
-
|
32564
|
+
{
|
32565
|
+
tx_id: "0x13b685a1ea7c56309a92d69dd7e4808987ec90d62a1f9c9f2ec18e54746855c8c93c",
|
32566
|
+
output_index: 0,
|
32567
|
+
tx_pointer_block_height: 0,
|
32568
|
+
tx_pointer_tx_idx: 0,
|
32569
|
+
owner: "0x95a7aa6cc32743f8706c40ef49a7423b47da763bb4bbc055b1f07254dc729036",
|
32570
|
+
amount: 18446744073709552e3,
|
32571
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32622
32572
|
},
|
32623
|
-
|
32624
|
-
|
32625
|
-
|
32626
|
-
|
32627
|
-
|
32573
|
+
{
|
32574
|
+
tx_id: "0xf8f00a234cf3fbab86befc3fd9346d7fd1ac085233c9cb58c7447f30c75cbf87ed38",
|
32575
|
+
output_index: 0,
|
32576
|
+
tx_pointer_block_height: 0,
|
32577
|
+
tx_pointer_tx_idx: 0,
|
32578
|
+
owner: "0x95a7aa6cc32743f8706c40ef49a7423b47da763bb4bbc055b1f07254dc729036",
|
32579
|
+
amount: 18446744073709552e3,
|
32580
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32628
32581
|
},
|
32629
|
-
|
32630
|
-
|
32631
|
-
|
32632
|
-
|
32633
|
-
|
32582
|
+
{
|
32583
|
+
tx_id: "0x2a36c870f624b60fbd6f2b71332ca7f704c69296ceae4ddbf3a8ede79408088934be",
|
32584
|
+
output_index: 0,
|
32585
|
+
tx_pointer_block_height: 0,
|
32586
|
+
tx_pointer_tx_idx: 0,
|
32587
|
+
owner: "0x95a7aa6cc32743f8706c40ef49a7423b47da763bb4bbc055b1f07254dc729036",
|
32588
|
+
amount: 18446744073709552e3,
|
32589
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32634
32590
|
},
|
32635
|
-
|
32636
|
-
|
32637
|
-
|
32638
|
-
|
32639
|
-
|
32591
|
+
{
|
32592
|
+
tx_id: "0x9cd180d41e67a422da8a7683f036b463a7ed7efc0de31c1692adac90decbfebce78c",
|
32593
|
+
output_index: 0,
|
32594
|
+
tx_pointer_block_height: 0,
|
32595
|
+
tx_pointer_tx_idx: 0,
|
32596
|
+
owner: "0xcee104acd38b940c8f1c62c6d7ea00a0ad2241d6dee0509a4bf27297508870d3",
|
32597
|
+
amount: 18446744073709552e3,
|
32598
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32640
32599
|
},
|
32641
|
-
|
32642
|
-
|
32643
|
-
|
32644
|
-
|
32645
|
-
|
32600
|
+
{
|
32601
|
+
tx_id: "0xfeb4f2388fa22e6613ff85cf4e655f58acdfaa6299eba7f93b812cd1f0d7bbac48f0",
|
32602
|
+
output_index: 0,
|
32603
|
+
tx_pointer_block_height: 0,
|
32604
|
+
tx_pointer_tx_idx: 0,
|
32605
|
+
owner: "0xcee104acd38b940c8f1c62c6d7ea00a0ad2241d6dee0509a4bf27297508870d3",
|
32606
|
+
amount: 18446744073709552e3,
|
32607
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32646
32608
|
},
|
32647
|
-
|
32648
|
-
|
32649
|
-
|
32650
|
-
|
32651
|
-
|
32609
|
+
{
|
32610
|
+
tx_id: "0xc4d20299f43358dc32ab853f6631340b09278511b6adbaf34597ade6ef37efd018f1",
|
32611
|
+
output_index: 0,
|
32612
|
+
tx_pointer_block_height: 0,
|
32613
|
+
tx_pointer_tx_idx: 0,
|
32614
|
+
owner: "0xcee104acd38b940c8f1c62c6d7ea00a0ad2241d6dee0509a4bf27297508870d3",
|
32615
|
+
amount: 18446744073709552e3,
|
32616
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32652
32617
|
},
|
32653
|
-
|
32654
|
-
|
32655
|
-
|
32656
|
-
|
32657
|
-
|
32618
|
+
{
|
32619
|
+
tx_id: "0x437291414110b0aebaa8be5c0d9ff1e97d1130a24a6c9e028f2b1f6b0576be6aa961",
|
32620
|
+
output_index: 0,
|
32621
|
+
tx_pointer_block_height: 0,
|
32622
|
+
tx_pointer_tx_idx: 0,
|
32623
|
+
owner: "0x7e3626e306588eba79cafab73f0709e55ab8f4bdfe8c8b75034a430fc56ece89",
|
32624
|
+
amount: 18446744073709552e3,
|
32625
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32658
32626
|
},
|
32659
|
-
|
32660
|
-
|
32661
|
-
|
32662
|
-
|
32663
|
-
|
32627
|
+
{
|
32628
|
+
tx_id: "0x28131b9acc90c2058ee14f4094a474146ba5b779cb9021867164b3d41abad3d047a7",
|
32629
|
+
output_index: 0,
|
32630
|
+
tx_pointer_block_height: 0,
|
32631
|
+
tx_pointer_tx_idx: 0,
|
32632
|
+
owner: "0x7e3626e306588eba79cafab73f0709e55ab8f4bdfe8c8b75034a430fc56ece89",
|
32633
|
+
amount: 18446744073709552e3,
|
32634
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32664
32635
|
},
|
32665
|
-
|
32666
|
-
|
32667
|
-
|
32668
|
-
|
32669
|
-
|
32636
|
+
{
|
32637
|
+
tx_id: "0x033bb5f9b0e4f530d50af3a0f12dd510f799af495ef88baea3cf854a37da728d214b",
|
32638
|
+
output_index: 0,
|
32639
|
+
tx_pointer_block_height: 0,
|
32640
|
+
tx_pointer_tx_idx: 0,
|
32641
|
+
owner: "0x7e3626e306588eba79cafab73f0709e55ab8f4bdfe8c8b75034a430fc56ece89",
|
32642
|
+
amount: 18446744073709552e3,
|
32643
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32670
32644
|
},
|
32671
|
-
|
32672
|
-
|
32673
|
-
|
32674
|
-
|
32675
|
-
|
32645
|
+
{
|
32646
|
+
tx_id: "0x460591398552eca338dd9577f362b91b0f9297f308258734870350004dcc303c67e9",
|
32647
|
+
output_index: 0,
|
32648
|
+
tx_pointer_block_height: 0,
|
32649
|
+
tx_pointer_tx_idx: 0,
|
32650
|
+
owner: "0x1c31df52b6df56407dd95f83082e8beb9cfc9532ac111d5bd8491651d95ba775",
|
32651
|
+
amount: 18446744073709552e3,
|
32652
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32676
32653
|
},
|
32677
|
-
|
32678
|
-
|
32679
|
-
|
32680
|
-
|
32681
|
-
|
32654
|
+
{
|
32655
|
+
tx_id: "0x447a7c37aee972dcba72f05255c5145dd63125f0fc46ef98c216f775ee0421e23d2b",
|
32656
|
+
output_index: 0,
|
32657
|
+
tx_pointer_block_height: 0,
|
32658
|
+
tx_pointer_tx_idx: 0,
|
32659
|
+
owner: "0x1c31df52b6df56407dd95f83082e8beb9cfc9532ac111d5bd8491651d95ba775",
|
32660
|
+
amount: 18446744073709552e3,
|
32661
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32682
32662
|
},
|
32683
|
-
|
32684
|
-
|
32685
|
-
|
32686
|
-
|
32687
|
-
|
32663
|
+
{
|
32664
|
+
tx_id: "0xf4a5d727606260c7ac6333fa89e7aef474df8a13326716d4d02f6392ebb7b997d268",
|
32665
|
+
output_index: 0,
|
32666
|
+
tx_pointer_block_height: 0,
|
32667
|
+
tx_pointer_tx_idx: 0,
|
32668
|
+
owner: "0x1c31df52b6df56407dd95f83082e8beb9cfc9532ac111d5bd8491651d95ba775",
|
32669
|
+
amount: 18446744073709552e3,
|
32670
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32688
32671
|
},
|
32689
|
-
|
32690
|
-
|
32691
|
-
|
32692
|
-
|
32693
|
-
|
32672
|
+
{
|
32673
|
+
tx_id: "0x25a49b0731bf610f6706aa9e9e96e5967f7c50f4302a3c75d7c8141595896551c18d",
|
32674
|
+
output_index: 0,
|
32675
|
+
tx_pointer_block_height: 0,
|
32676
|
+
tx_pointer_tx_idx: 0,
|
32677
|
+
owner: "0x09dd7a49174d6fcc9f4c6f7942c18060a935ddd03ee69b594189b8c3581276ea",
|
32678
|
+
amount: 18446744073709552e3,
|
32679
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32694
32680
|
},
|
32695
|
-
|
32696
|
-
|
32697
|
-
|
32698
|
-
|
32699
|
-
|
32681
|
+
{
|
32682
|
+
tx_id: "0x0a6e3585881ef2edf3f7727762799089dc0b5923e8b3718b49044dd9ddcb33b68459",
|
32683
|
+
output_index: 0,
|
32684
|
+
tx_pointer_block_height: 0,
|
32685
|
+
tx_pointer_tx_idx: 0,
|
32686
|
+
owner: "0x09dd7a49174d6fcc9f4c6f7942c18060a935ddd03ee69b594189b8c3581276ea",
|
32687
|
+
amount: 18446744073709552e3,
|
32688
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32700
32689
|
},
|
32701
|
-
|
32702
|
-
|
32703
|
-
|
32704
|
-
|
32705
|
-
|
32690
|
+
{
|
32691
|
+
tx_id: "0xf73bbe0635f7b6d59a090a21d87288b82164d0f6101da830ce64eff64a2d2ff2ac37",
|
32692
|
+
output_index: 0,
|
32693
|
+
tx_pointer_block_height: 0,
|
32694
|
+
tx_pointer_tx_idx: 0,
|
32695
|
+
owner: "0x09dd7a49174d6fcc9f4c6f7942c18060a935ddd03ee69b594189b8c3581276ea",
|
32696
|
+
amount: 18446744073709552e3,
|
32697
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32698
|
+
},
|
32699
|
+
{
|
32700
|
+
tx_id: "0x6cc44cb8d2a6462a591a77b6b9917eb6b22ad80d23d3cfd4f94c9da49c14b3cbac6e",
|
32701
|
+
output_index: 0,
|
32702
|
+
tx_pointer_block_height: 0,
|
32703
|
+
tx_pointer_tx_idx: 0,
|
32704
|
+
owner: "0x86604282dc604481b809845be49667607c470644f6822fc01eb0d22f167e08cf",
|
32705
|
+
amount: 18446744073709552e3,
|
32706
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32707
|
+
},
|
32708
|
+
{
|
32709
|
+
tx_id: "0xbf2305d284ea95227040df4cc727156cccc2ca6aa3b92ed86fea4db1c37e5905f926",
|
32710
|
+
output_index: 0,
|
32711
|
+
tx_pointer_block_height: 0,
|
32712
|
+
tx_pointer_tx_idx: 0,
|
32713
|
+
owner: "0x86604282dc604481b809845be49667607c470644f6822fc01eb0d22f167e08cf",
|
32714
|
+
amount: 18446744073709552e3,
|
32715
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32716
|
+
},
|
32717
|
+
{
|
32718
|
+
tx_id: "0xf4e1c76c72ecae699696f5e7a62ccf1425f7395080d0ca7b25ab63d1f841f425b807",
|
32719
|
+
output_index: 0,
|
32720
|
+
tx_pointer_block_height: 0,
|
32721
|
+
tx_pointer_tx_idx: 0,
|
32722
|
+
owner: "0x86604282dc604481b809845be49667607c470644f6822fc01eb0d22f167e08cf",
|
32723
|
+
amount: 18446744073709552e3,
|
32724
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32725
|
+
},
|
32726
|
+
{
|
32727
|
+
tx_id: "0x619c80ee9f4c27c2e134cec6c67bdb268ce7fb1d2ac229ca2a44ec7ac88b2da99669",
|
32728
|
+
output_index: 0,
|
32729
|
+
tx_pointer_block_height: 0,
|
32730
|
+
tx_pointer_tx_idx: 0,
|
32731
|
+
owner: "0xbca334a06d19db5041c78fe2f465b07be5bec828f38b7796b2877e7d1542c950",
|
32732
|
+
amount: 18446744073709552e3,
|
32733
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32734
|
+
},
|
32735
|
+
{
|
32736
|
+
tx_id: "0x978d5b6be047ffbf1474dc376a6baa33264629b809e4a8210d11aaa805ec6451585d",
|
32737
|
+
output_index: 0,
|
32738
|
+
tx_pointer_block_height: 0,
|
32739
|
+
tx_pointer_tx_idx: 0,
|
32740
|
+
owner: "0xbca334a06d19db5041c78fe2f465b07be5bec828f38b7796b2877e7d1542c950",
|
32741
|
+
amount: 18446744073709552e3,
|
32742
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32743
|
+
},
|
32744
|
+
{
|
32745
|
+
tx_id: "0x673ba12fca6e52429896096262b8c59b61751976e552649fb1fe7369488fc10aa83c",
|
32746
|
+
output_index: 0,
|
32747
|
+
tx_pointer_block_height: 0,
|
32748
|
+
tx_pointer_tx_idx: 0,
|
32749
|
+
owner: "0xbca334a06d19db5041c78fe2f465b07be5bec828f38b7796b2877e7d1542c950",
|
32750
|
+
amount: 18446744073709552e3,
|
32751
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32752
|
+
},
|
32753
|
+
{
|
32754
|
+
tx_id: "0xc42a165104b9fcfa4a9ebffc707781ace233f1c0609c24c36a5c4bfcd407480ddb6c",
|
32755
|
+
output_index: 0,
|
32756
|
+
tx_pointer_block_height: 0,
|
32757
|
+
tx_pointer_tx_idx: 0,
|
32758
|
+
owner: "0xbd9a1dc8d3ec3521c43f6c2c01611b4d0204c7610204ff0178488c8738a30bd2",
|
32759
|
+
amount: 18446744073709552e3,
|
32760
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32761
|
+
},
|
32762
|
+
{
|
32763
|
+
tx_id: "0xb353fbcd94abba347f3ba25e17744e98da26e608ebccbbbd2e9d004997644bdf993c",
|
32764
|
+
output_index: 0,
|
32765
|
+
tx_pointer_block_height: 0,
|
32766
|
+
tx_pointer_tx_idx: 0,
|
32767
|
+
owner: "0xbd9a1dc8d3ec3521c43f6c2c01611b4d0204c7610204ff0178488c8738a30bd2",
|
32768
|
+
amount: 18446744073709552e3,
|
32769
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32770
|
+
},
|
32771
|
+
{
|
32772
|
+
tx_id: "0xc34a6fcb241dec82f885019caf5e14bb6708b435afebfef0037ac447fbb6d30378a3",
|
32773
|
+
output_index: 0,
|
32774
|
+
tx_pointer_block_height: 0,
|
32775
|
+
tx_pointer_tx_idx: 0,
|
32776
|
+
owner: "0xbd9a1dc8d3ec3521c43f6c2c01611b4d0204c7610204ff0178488c8738a30bd2",
|
32777
|
+
amount: 18446744073709552e3,
|
32778
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32779
|
+
},
|
32780
|
+
{
|
32781
|
+
tx_id: "0x421dfb5811c905724f2f4c6370cd15eaeb590ddeb966f9a4b9f8d65991dfe5142e12",
|
32782
|
+
output_index: 0,
|
32783
|
+
tx_pointer_block_height: 0,
|
32784
|
+
tx_pointer_tx_idx: 0,
|
32785
|
+
owner: "0xb32197cf75efe05bf453c26178139f09b391582065549c1422bc92555ecffb64",
|
32786
|
+
amount: 18446744073709552e3,
|
32787
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32788
|
+
},
|
32789
|
+
{
|
32790
|
+
tx_id: "0xa952c0487eefac5dda612011c4c82554c8660834461b9b815c6ae257b56b68005235",
|
32791
|
+
output_index: 0,
|
32792
|
+
tx_pointer_block_height: 0,
|
32793
|
+
tx_pointer_tx_idx: 0,
|
32794
|
+
owner: "0xb32197cf75efe05bf453c26178139f09b391582065549c1422bc92555ecffb64",
|
32795
|
+
amount: 18446744073709552e3,
|
32796
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32797
|
+
},
|
32798
|
+
{
|
32799
|
+
tx_id: "0xebaccf91b3b213341d047b6e6af214f1f9729b3d6dadf9c1918a9fe412486af871db",
|
32800
|
+
output_index: 0,
|
32801
|
+
tx_pointer_block_height: 0,
|
32802
|
+
tx_pointer_tx_idx: 0,
|
32803
|
+
owner: "0xb32197cf75efe05bf453c26178139f09b391582065549c1422bc92555ecffb64",
|
32804
|
+
amount: 18446744073709552e3,
|
32805
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32806
|
+
},
|
32807
|
+
{
|
32808
|
+
tx_id: "0xda6d61c153e7d735954408274f4ffe8459c2dbab720ce22a1ae9ffedd33077b5b19d",
|
32809
|
+
output_index: 0,
|
32810
|
+
tx_pointer_block_height: 0,
|
32811
|
+
tx_pointer_tx_idx: 0,
|
32812
|
+
owner: "0x3b24509ed4ab3c7959f5c9391c1445c59290cdb5f13d6f780922f376b7029f30",
|
32813
|
+
amount: 18446744073709552e3,
|
32814
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32815
|
+
},
|
32816
|
+
{
|
32817
|
+
tx_id: "0x508871600ef68c4f1e021dd0db219c733107151338aa95de530bd10dc61f6a69c144",
|
32818
|
+
output_index: 0,
|
32819
|
+
tx_pointer_block_height: 0,
|
32820
|
+
tx_pointer_tx_idx: 0,
|
32821
|
+
owner: "0x3b24509ed4ab3c7959f5c9391c1445c59290cdb5f13d6f780922f376b7029f30",
|
32822
|
+
amount: 18446744073709552e3,
|
32823
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32824
|
+
},
|
32825
|
+
{
|
32826
|
+
tx_id: "0x509994738b4973e2dbbff9596b176a89fb07ee95f0ed575a4fe07a735a2a181f3200",
|
32827
|
+
output_index: 0,
|
32828
|
+
tx_pointer_block_height: 0,
|
32829
|
+
tx_pointer_tx_idx: 0,
|
32830
|
+
owner: "0x3b24509ed4ab3c7959f5c9391c1445c59290cdb5f13d6f780922f376b7029f30",
|
32831
|
+
amount: 18446744073709552e3,
|
32832
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32833
|
+
},
|
32834
|
+
{
|
32835
|
+
tx_id: "0x6cc0cb58df0e0606fc85481aaaf5f47e145a67240b298c184bcb7fd7367c3bbf9453",
|
32836
|
+
output_index: 0,
|
32837
|
+
tx_pointer_block_height: 0,
|
32838
|
+
tx_pointer_tx_idx: 0,
|
32839
|
+
owner: "0x77c6f40b7da70d885f68efaad7c661327482a63ea10dcb4271de819438254ae1",
|
32840
|
+
amount: 18446744073709552e3,
|
32841
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32842
|
+
},
|
32843
|
+
{
|
32844
|
+
tx_id: "0x9ddea761afc31516307e1553647ac6cc26d4a82fed9a9e6a03b994cdbf2293b3e3b6",
|
32845
|
+
output_index: 0,
|
32846
|
+
tx_pointer_block_height: 0,
|
32847
|
+
tx_pointer_tx_idx: 0,
|
32848
|
+
owner: "0x77c6f40b7da70d885f68efaad7c661327482a63ea10dcb4271de819438254ae1",
|
32849
|
+
amount: 18446744073709552e3,
|
32850
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32851
|
+
},
|
32852
|
+
{
|
32853
|
+
tx_id: "0x82dbc478ba63abf28b92d9dce0cb8c2e6c02833d436fe812a33cf78417e4a80c1306",
|
32854
|
+
output_index: 0,
|
32855
|
+
tx_pointer_block_height: 0,
|
32856
|
+
tx_pointer_tx_idx: 0,
|
32857
|
+
owner: "0x77c6f40b7da70d885f68efaad7c661327482a63ea10dcb4271de819438254ae1",
|
32858
|
+
amount: 18446744073709552e3,
|
32859
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32860
|
+
},
|
32861
|
+
{
|
32862
|
+
tx_id: "0xc3b0cb232c74009fd226a6246403f78bcc33d116579f41d9387c0d76c76942749c7c",
|
32863
|
+
output_index: 0,
|
32864
|
+
tx_pointer_block_height: 0,
|
32865
|
+
tx_pointer_tx_idx: 0,
|
32866
|
+
owner: "0x6a2c4691c547c43924650dbd30620b184b5fe3fb6dbe5c4446110b08f6f405bf",
|
32867
|
+
amount: 18446744073709552e3,
|
32868
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32869
|
+
},
|
32870
|
+
{
|
32871
|
+
tx_id: "0x708ee45d18f94ab06458712745c92c7b9b6049ba345219d6697eae5208ec0328aeaf",
|
32872
|
+
output_index: 0,
|
32873
|
+
tx_pointer_block_height: 0,
|
32874
|
+
tx_pointer_tx_idx: 0,
|
32875
|
+
owner: "0x6a2c4691c547c43924650dbd30620b184b5fe3fb6dbe5c4446110b08f6f405bf",
|
32876
|
+
amount: 18446744073709552e3,
|
32877
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32878
|
+
},
|
32879
|
+
{
|
32880
|
+
tx_id: "0xfe26968c44ac5becc608ce543075ae9e677b7631f3beb7a11ba20703fdca3c0e3569",
|
32881
|
+
output_index: 0,
|
32882
|
+
tx_pointer_block_height: 0,
|
32883
|
+
tx_pointer_tx_idx: 0,
|
32884
|
+
owner: "0x6a2c4691c547c43924650dbd30620b184b5fe3fb6dbe5c4446110b08f6f405bf",
|
32885
|
+
amount: 18446744073709552e3,
|
32886
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32887
|
+
},
|
32888
|
+
{
|
32889
|
+
tx_id: "0xe0ec1d2c991feac69be4d0e84ad7c964616de08e16dccc4d2000b1900ba31082b993",
|
32890
|
+
output_index: 0,
|
32891
|
+
tx_pointer_block_height: 0,
|
32892
|
+
tx_pointer_tx_idx: 0,
|
32893
|
+
owner: "0x49075a7538e2c88ebe1926ce4d898198a2a4e790d14512943a9864bc536b3c82",
|
32894
|
+
amount: 18446744073709552e3,
|
32895
|
+
asset_id: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
32896
|
+
},
|
32897
|
+
{
|
32898
|
+
tx_id: "0xfa82dbdd72252d1e6c76ee818bbac0441c3a705aff447f041c8b9fc3cb03f9ccd7e2",
|
32899
|
+
output_index: 0,
|
32900
|
+
tx_pointer_block_height: 0,
|
32901
|
+
tx_pointer_tx_idx: 0,
|
32902
|
+
owner: "0x49075a7538e2c88ebe1926ce4d898198a2a4e790d14512943a9864bc536b3c82",
|
32903
|
+
amount: 18446744073709552e3,
|
32904
|
+
asset_id: "0x0101010101010101010101010101010101010101010101010101010101010101"
|
32905
|
+
},
|
32906
|
+
{
|
32907
|
+
tx_id: "0x324f45e47cef892ac3e0759f3b72207c77046f9938267af4bd4af2ae031b97cb36c8",
|
32908
|
+
output_index: 0,
|
32909
|
+
tx_pointer_block_height: 0,
|
32910
|
+
tx_pointer_tx_idx: 0,
|
32911
|
+
owner: "0x49075a7538e2c88ebe1926ce4d898198a2a4e790d14512943a9864bc536b3c82",
|
32912
|
+
amount: 18446744073709552e3,
|
32913
|
+
asset_id: "0x0202020202020202020202020202020202020202020202020202020202020202"
|
32706
32914
|
}
|
32707
|
-
|
32915
|
+
],
|
32916
|
+
messages: [
|
32917
|
+
{
|
32918
|
+
sender: "0xc43454aa38dd91f88109a4b7aef5efb96ce34e3f24992fe0f81d233ca686f80f",
|
32919
|
+
recipient: "0x69a2b736b60159b43bb8a4f98c0589f6da5fa3a3d101e8e269c499eb942753ba",
|
32920
|
+
nonce: "0101010101010101010101010101010101010101010101010101010101010101",
|
32921
|
+
amount: 18446744073709552e3,
|
32922
|
+
data: "",
|
32923
|
+
da_height: 0
|
32924
|
+
},
|
32925
|
+
{
|
32926
|
+
sender: "0x69a2b736b60159b43bb8a4f98c0589f6da5fa3a3d101e8e269c499eb942753ba",
|
32927
|
+
recipient: "0xc43454aa38dd91f88109a4b7aef5efb96ce34e3f24992fe0f81d233ca686f80f",
|
32928
|
+
nonce: "0e1ef2963832068b0e1ef2963832068b0e1ef2963832068b0e1ef2963832068b",
|
32929
|
+
amount: 12704439083013452e3,
|
32930
|
+
data: "",
|
32931
|
+
da_height: 0
|
32932
|
+
}
|
32933
|
+
],
|
32934
|
+
contracts: [],
|
32935
|
+
block_height: 0,
|
32936
|
+
da_block_height: 0
|
32937
|
+
};
|
32938
|
+
var defaultChainConfigs = {
|
32939
|
+
chainConfigJson: chainConfig_default,
|
32940
|
+
metadataJson: metadata_default,
|
32941
|
+
stateConfigJson: stateConfig_default
|
32708
32942
|
};
|
32709
|
-
var defaultChainConfig = chainConfig_default;
|
32710
32943
|
var defaultConsensusKey = "0xa449b1ffee0e2205fa924c6740cc48b3b473aa28587df6dab12abc245d1f5298";
|
32711
32944
|
|
32712
32945
|
// ../crypto/dist/index.mjs
|
32713
|
-
var
|
32946
|
+
var import_crypto9 = __toESM(__require("crypto"), 1);
|
32714
32947
|
|
32715
32948
|
// ../../node_modules/.pnpm/ethers@6.7.1/node_modules/ethers/lib.esm/_version.js
|
32716
32949
|
var version = "6.7.1";
|
@@ -33782,6 +34015,27 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
33782
34015
|
};
|
33783
34016
|
Object.freeze(pbkdf22);
|
33784
34017
|
|
34018
|
+
// ../../node_modules/.pnpm/ethers@6.7.1/node_modules/ethers/lib.esm/crypto/random.js
|
34019
|
+
var locked5 = false;
|
34020
|
+
var _randomBytes = function(length) {
|
34021
|
+
return new Uint8Array((0, import_crypto2.randomBytes)(length));
|
34022
|
+
};
|
34023
|
+
var __randomBytes = _randomBytes;
|
34024
|
+
function randomBytes3(length) {
|
34025
|
+
return __randomBytes(length);
|
34026
|
+
}
|
34027
|
+
randomBytes3._ = _randomBytes;
|
34028
|
+
randomBytes3.lock = function() {
|
34029
|
+
locked5 = true;
|
34030
|
+
};
|
34031
|
+
randomBytes3.register = function(func) {
|
34032
|
+
if (locked5) {
|
34033
|
+
throw new Error("randomBytes is locked");
|
34034
|
+
}
|
34035
|
+
__randomBytes = func;
|
34036
|
+
};
|
34037
|
+
Object.freeze(randomBytes3);
|
34038
|
+
|
33785
34039
|
// ../../node_modules/.pnpm/ethers@6.7.1/node_modules/ethers/lib.esm/address/address.js
|
33786
34040
|
var BN_03 = BigInt(0);
|
33787
34041
|
var BN_36 = BigInt(36);
|
@@ -34366,8 +34620,8 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
34366
34620
|
}
|
34367
34621
|
|
34368
34622
|
// ../crypto/dist/index.mjs
|
34369
|
-
var import_crypto9 = __toESM(__require("crypto"), 1);
|
34370
34623
|
var import_crypto10 = __toESM(__require("crypto"), 1);
|
34624
|
+
var import_crypto11 = __toESM(__require("crypto"), 1);
|
34371
34625
|
var scrypt3 = (params) => {
|
34372
34626
|
const { password, salt, n, p, r, dklen } = params;
|
34373
34627
|
const derivedKey = scrypt(password, salt, { N: n, r, p, dkLen: dklen });
|
@@ -34376,7 +34630,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
34376
34630
|
var keccak2562 = (data) => keccak_256(data);
|
34377
34631
|
var bufferFromString = (string, encoding = "base64") => Uint8Array.from(Buffer.from(string, encoding));
|
34378
34632
|
var randomBytes4 = (length) => {
|
34379
|
-
const randomValues = Uint8Array.from(
|
34633
|
+
const randomValues = Uint8Array.from(import_crypto10.default.randomBytes(length));
|
34380
34634
|
return randomValues;
|
34381
34635
|
};
|
34382
34636
|
var stringFromBuffer = (buffer, encoding = "base64") => Buffer.from(buffer).toString(encoding);
|
@@ -34391,7 +34645,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
34391
34645
|
const salt = randomBytes4(32);
|
34392
34646
|
const secret = keyFromPassword(password, salt);
|
34393
34647
|
const dataBuffer = Uint8Array.from(Buffer.from(JSON.stringify(data), "utf-8"));
|
34394
|
-
const cipher = await
|
34648
|
+
const cipher = await import_crypto9.default.createCipheriv(ALGORITHM, secret, iv);
|
34395
34649
|
let cipherData = cipher.update(dataBuffer);
|
34396
34650
|
cipherData = Buffer.concat([cipherData, cipher.final()]);
|
34397
34651
|
return {
|
@@ -34405,7 +34659,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
34405
34659
|
const salt = bufferFromString(keystore.salt);
|
34406
34660
|
const secret = keyFromPassword(password, salt);
|
34407
34661
|
const encryptedText = bufferFromString(keystore.data);
|
34408
|
-
const decipher = await
|
34662
|
+
const decipher = await import_crypto9.default.createDecipheriv(ALGORITHM, secret, iv);
|
34409
34663
|
const decrypted = decipher.update(encryptedText);
|
34410
34664
|
const deBuff = Buffer.concat([decrypted, decipher.final()]);
|
34411
34665
|
const decryptedData = Buffer.from(deBuff).toString("utf-8");
|
@@ -34416,12 +34670,12 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
34416
34670
|
}
|
34417
34671
|
};
|
34418
34672
|
async function encryptJsonWalletData(data, key, iv) {
|
34419
|
-
const cipher = await
|
34673
|
+
const cipher = await import_crypto11.default.createCipheriv("aes-128-ctr", key.subarray(0, 16), iv);
|
34420
34674
|
const encrypted = Buffer.concat([cipher.update(data), cipher.final()]);
|
34421
34675
|
return new Uint8Array(encrypted);
|
34422
34676
|
}
|
34423
34677
|
async function decryptJsonWalletData(data, key, iv) {
|
34424
|
-
const decipher =
|
34678
|
+
const decipher = import_crypto11.default.createDecipheriv("aes-128-ctr", key.subarray(0, 16), iv);
|
34425
34679
|
const decrypted = await Buffer.concat([decipher.update(data), decipher.final()]);
|
34426
34680
|
return new Uint8Array(decrypted);
|
34427
34681
|
}
|
@@ -34978,10 +35232,160 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
34978
35232
|
function toBytes3(value, bytesPadding) {
|
34979
35233
|
return bn(value).toBytes(bytesPadding);
|
34980
35234
|
}
|
34981
|
-
|
34982
|
-
|
35235
|
+
|
35236
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_isPlaceholder.js
|
35237
|
+
function _isPlaceholder(a) {
|
35238
|
+
return a != null && typeof a === "object" && a["@@functional/placeholder"] === true;
|
34983
35239
|
}
|
34984
35240
|
|
35241
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_curry1.js
|
35242
|
+
function _curry1(fn) {
|
35243
|
+
return function f1(a) {
|
35244
|
+
if (arguments.length === 0 || _isPlaceholder(a)) {
|
35245
|
+
return f1;
|
35246
|
+
} else {
|
35247
|
+
return fn.apply(this, arguments);
|
35248
|
+
}
|
35249
|
+
};
|
35250
|
+
}
|
35251
|
+
|
35252
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_isArray.js
|
35253
|
+
var isArray_default = Array.isArray || function _isArray(val) {
|
35254
|
+
return val != null && val.length >= 0 && Object.prototype.toString.call(val) === "[object Array]";
|
35255
|
+
};
|
35256
|
+
|
35257
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/type.js
|
35258
|
+
var type = /* @__PURE__ */ _curry1(function type2(val) {
|
35259
|
+
return val === null ? "Null" : val === void 0 ? "Undefined" : Object.prototype.toString.call(val).slice(8, -1);
|
35260
|
+
});
|
35261
|
+
var type_default = type;
|
35262
|
+
|
35263
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_toISOString.js
|
35264
|
+
var pad = function pad2(n) {
|
35265
|
+
return (n < 10 ? "0" : "") + n;
|
35266
|
+
};
|
35267
|
+
var _toISOString = typeof Date.prototype.toISOString === "function" ? function _toISOString2(d) {
|
35268
|
+
return d.toISOString();
|
35269
|
+
} : function _toISOString3(d) {
|
35270
|
+
return d.getUTCFullYear() + "-" + pad(d.getUTCMonth() + 1) + "-" + pad(d.getUTCDate()) + "T" + pad(d.getUTCHours()) + ":" + pad(d.getUTCMinutes()) + ":" + pad(d.getUTCSeconds()) + "." + (d.getUTCMilliseconds() / 1e3).toFixed(3).slice(2, 5) + "Z";
|
35271
|
+
};
|
35272
|
+
|
35273
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_isInteger.js
|
35274
|
+
var isInteger_default = Number.isInteger || function _isInteger(n) {
|
35275
|
+
return n << 0 === n;
|
35276
|
+
};
|
35277
|
+
|
35278
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_cloneRegExp.js
|
35279
|
+
function _cloneRegExp(pattern) {
|
35280
|
+
return new RegExp(pattern.source, pattern.flags ? pattern.flags : (pattern.global ? "g" : "") + (pattern.ignoreCase ? "i" : "") + (pattern.multiline ? "m" : "") + (pattern.sticky ? "y" : "") + (pattern.unicode ? "u" : "") + (pattern.dotAll ? "s" : ""));
|
35281
|
+
}
|
35282
|
+
|
35283
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_clone.js
|
35284
|
+
function _clone(value, deep, map) {
|
35285
|
+
map || (map = new _ObjectMap());
|
35286
|
+
if (_isPrimitive(value)) {
|
35287
|
+
return value;
|
35288
|
+
}
|
35289
|
+
var copy = function copy2(copiedValue) {
|
35290
|
+
var cachedCopy = map.get(value);
|
35291
|
+
if (cachedCopy) {
|
35292
|
+
return cachedCopy;
|
35293
|
+
}
|
35294
|
+
map.set(value, copiedValue);
|
35295
|
+
for (var key in value) {
|
35296
|
+
if (Object.prototype.hasOwnProperty.call(value, key)) {
|
35297
|
+
copiedValue[key] = deep ? _clone(value[key], true, map) : value[key];
|
35298
|
+
}
|
35299
|
+
}
|
35300
|
+
return copiedValue;
|
35301
|
+
};
|
35302
|
+
switch (type_default(value)) {
|
35303
|
+
case "Object":
|
35304
|
+
return copy(Object.create(Object.getPrototypeOf(value)));
|
35305
|
+
case "Array":
|
35306
|
+
return copy([]);
|
35307
|
+
case "Date":
|
35308
|
+
return new Date(value.valueOf());
|
35309
|
+
case "RegExp":
|
35310
|
+
return _cloneRegExp(value);
|
35311
|
+
case "Int8Array":
|
35312
|
+
case "Uint8Array":
|
35313
|
+
case "Uint8ClampedArray":
|
35314
|
+
case "Int16Array":
|
35315
|
+
case "Uint16Array":
|
35316
|
+
case "Int32Array":
|
35317
|
+
case "Uint32Array":
|
35318
|
+
case "Float32Array":
|
35319
|
+
case "Float64Array":
|
35320
|
+
case "BigInt64Array":
|
35321
|
+
case "BigUint64Array":
|
35322
|
+
return value.slice();
|
35323
|
+
default:
|
35324
|
+
return value;
|
35325
|
+
}
|
35326
|
+
}
|
35327
|
+
function _isPrimitive(param) {
|
35328
|
+
var type3 = typeof param;
|
35329
|
+
return param == null || type3 != "object" && type3 != "function";
|
35330
|
+
}
|
35331
|
+
var _ObjectMap = /* @__PURE__ */ function() {
|
35332
|
+
function _ObjectMap2() {
|
35333
|
+
this.map = {};
|
35334
|
+
this.length = 0;
|
35335
|
+
}
|
35336
|
+
_ObjectMap2.prototype.set = function(key, value) {
|
35337
|
+
const hashedKey = this.hash(key);
|
35338
|
+
let bucket = this.map[hashedKey];
|
35339
|
+
if (!bucket) {
|
35340
|
+
this.map[hashedKey] = bucket = [];
|
35341
|
+
}
|
35342
|
+
bucket.push([key, value]);
|
35343
|
+
this.length += 1;
|
35344
|
+
};
|
35345
|
+
_ObjectMap2.prototype.hash = function(key) {
|
35346
|
+
let hashedKey = [];
|
35347
|
+
for (var value in key) {
|
35348
|
+
hashedKey.push(Object.prototype.toString.call(key[value]));
|
35349
|
+
}
|
35350
|
+
return hashedKey.join();
|
35351
|
+
};
|
35352
|
+
_ObjectMap2.prototype.get = function(key) {
|
35353
|
+
if (this.length <= 180) {
|
35354
|
+
for (const p in this.map) {
|
35355
|
+
const bucket2 = this.map[p];
|
35356
|
+
for (let i = 0; i < bucket2.length; i += 1) {
|
35357
|
+
const element = bucket2[i];
|
35358
|
+
if (element[0] === key) {
|
35359
|
+
return element[1];
|
35360
|
+
}
|
35361
|
+
}
|
35362
|
+
}
|
35363
|
+
return;
|
35364
|
+
}
|
35365
|
+
const hashedKey = this.hash(key);
|
35366
|
+
const bucket = this.map[hashedKey];
|
35367
|
+
if (!bucket) {
|
35368
|
+
return;
|
35369
|
+
}
|
35370
|
+
for (let i = 0; i < bucket.length; i += 1) {
|
35371
|
+
const element = bucket[i];
|
35372
|
+
if (element[0] === key) {
|
35373
|
+
return element[1];
|
35374
|
+
}
|
35375
|
+
}
|
35376
|
+
};
|
35377
|
+
return _ObjectMap2;
|
35378
|
+
}();
|
35379
|
+
|
35380
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/clone.js
|
35381
|
+
var clone = /* @__PURE__ */ _curry1(function clone2(value) {
|
35382
|
+
return value != null && typeof value.clone === "function" ? value.clone() : _clone(value, true);
|
35383
|
+
});
|
35384
|
+
var clone_default = clone;
|
35385
|
+
|
35386
|
+
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/trim.js
|
35387
|
+
var hasProtoTrim = typeof String.prototype.trim === "function";
|
35388
|
+
|
34985
35389
|
// src/providers/coin-quantity.ts
|
34986
35390
|
var coinQuantityfy = (coinQuantityLike) => {
|
34987
35391
|
let assetId;
|
@@ -35003,7 +35407,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
35003
35407
|
max: max2 ? bn(max2) : void 0
|
35004
35408
|
};
|
35005
35409
|
};
|
35006
|
-
var
|
35410
|
+
var addAmountToCoinQuantities = (params) => {
|
35007
35411
|
const { amount, assetId } = params;
|
35008
35412
|
const coinQuantities = [...params.coinQuantities];
|
35009
35413
|
const assetIdx = coinQuantities.findIndex((coinQuantity) => coinQuantity.assetId === assetId);
|
@@ -35070,6 +35474,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
35070
35474
|
var ENCODING_V1 = "1";
|
35071
35475
|
var WORD_SIZE = 8;
|
35072
35476
|
var BYTES_32 = 32;
|
35477
|
+
var UTXO_ID_LEN = BYTES_32 + 2;
|
35073
35478
|
var ASSET_ID_LEN = BYTES_32;
|
35074
35479
|
var ADDRESS_LEN = BYTES_32;
|
35075
35480
|
var NONCE_LEN = BYTES_32;
|
@@ -35077,9 +35482,9 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
35077
35482
|
var TX_POINTER_LEN = WORD_SIZE * 2;
|
35078
35483
|
var MAX_BYTES = 2 ** 32 - 1;
|
35079
35484
|
var calculateVmTxMemory = ({ maxInputs }) => BYTES_32 + // Tx ID
|
35080
|
-
|
35485
|
+
ASSET_ID_LEN + // Base asset ID
|
35081
35486
|
// Asset ID/Balance coin input pairs
|
35082
|
-
maxInputs * (ASSET_ID_LEN + WORD_SIZE);
|
35487
|
+
maxInputs * (ASSET_ID_LEN + WORD_SIZE) + WORD_SIZE;
|
35083
35488
|
var SCRIPT_FIXED_SIZE = WORD_SIZE + // Identifier
|
35084
35489
|
WORD_SIZE + // Gas limit
|
35085
35490
|
WORD_SIZE + // Script size
|
@@ -35097,7 +35502,6 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
35097
35502
|
ASSET_ID_LEN + // Asset id
|
35098
35503
|
TX_POINTER_LEN + // TxPointer
|
35099
35504
|
WORD_SIZE + // Witnesses index
|
35100
|
-
WORD_SIZE + // Maturity
|
35101
35505
|
WORD_SIZE + // Predicate size
|
35102
35506
|
WORD_SIZE + // Predicate data size
|
35103
35507
|
WORD_SIZE;
|
@@ -36835,18 +37239,19 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36835
37239
|
encode(value) {
|
36836
37240
|
const parts = [];
|
36837
37241
|
parts.push(new B256Coder().encode(value.txID));
|
36838
|
-
parts.push(new NumberCoder("
|
37242
|
+
parts.push(new NumberCoder("u16").encode(value.outputIndex));
|
36839
37243
|
parts.push(new B256Coder().encode(value.owner));
|
36840
37244
|
parts.push(new BigNumberCoder("u64").encode(value.amount));
|
36841
37245
|
parts.push(new B256Coder().encode(value.assetId));
|
36842
37246
|
parts.push(new TxPointerCoder().encode(value.txPointer));
|
36843
|
-
parts.push(new NumberCoder("
|
36844
|
-
parts.push(new NumberCoder("u32").encode(value.maturity));
|
37247
|
+
parts.push(new NumberCoder("u16").encode(value.witnessIndex));
|
36845
37248
|
parts.push(new BigNumberCoder("u64").encode(value.predicateGasUsed));
|
36846
|
-
parts.push(new
|
36847
|
-
parts.push(new
|
36848
|
-
parts.push(new ByteArrayCoder(value.predicateLength).encode(value.predicate));
|
36849
|
-
parts.push(
|
37249
|
+
parts.push(new BigNumberCoder("u64").encode(value.predicateLength));
|
37250
|
+
parts.push(new BigNumberCoder("u64").encode(value.predicateDataLength));
|
37251
|
+
parts.push(new ByteArrayCoder(value.predicateLength.toNumber()).encode(value.predicate));
|
37252
|
+
parts.push(
|
37253
|
+
new ByteArrayCoder(value.predicateDataLength.toNumber()).encode(value.predicateData)
|
37254
|
+
);
|
36850
37255
|
return concat(parts);
|
36851
37256
|
}
|
36852
37257
|
decode(data, offset) {
|
@@ -36854,7 +37259,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36854
37259
|
let o = offset;
|
36855
37260
|
[decoded, o] = new B256Coder().decode(data, o);
|
36856
37261
|
const txID = decoded;
|
36857
|
-
[decoded, o] = new NumberCoder("
|
37262
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
36858
37263
|
const outputIndex = decoded;
|
36859
37264
|
[decoded, o] = new B256Coder().decode(data, o);
|
36860
37265
|
const owner = decoded;
|
@@ -36864,19 +37269,17 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36864
37269
|
const assetId = decoded;
|
36865
37270
|
[decoded, o] = new TxPointerCoder().decode(data, o);
|
36866
37271
|
const txPointer = decoded;
|
36867
|
-
[decoded, o] = new NumberCoder("
|
37272
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
36868
37273
|
const witnessIndex = Number(decoded);
|
36869
|
-
[decoded, o] = new NumberCoder("u32").decode(data, o);
|
36870
|
-
const maturity = decoded;
|
36871
37274
|
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
36872
37275
|
const predicateGasUsed = decoded;
|
36873
|
-
[decoded, o] = new
|
37276
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
36874
37277
|
const predicateLength = decoded;
|
36875
|
-
[decoded, o] = new
|
37278
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
36876
37279
|
const predicateDataLength = decoded;
|
36877
|
-
[decoded, o] = new ByteArrayCoder(predicateLength).decode(data, o);
|
37280
|
+
[decoded, o] = new ByteArrayCoder(predicateLength.toNumber()).decode(data, o);
|
36878
37281
|
const predicate = decoded;
|
36879
|
-
[decoded, o] = new ByteArrayCoder(predicateDataLength).decode(data, o);
|
37282
|
+
[decoded, o] = new ByteArrayCoder(predicateDataLength.toNumber()).decode(data, o);
|
36880
37283
|
const predicateData = decoded;
|
36881
37284
|
return [
|
36882
37285
|
{
|
@@ -36888,7 +37291,6 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36888
37291
|
assetId,
|
36889
37292
|
txPointer,
|
36890
37293
|
witnessIndex,
|
36891
|
-
maturity,
|
36892
37294
|
predicateGasUsed,
|
36893
37295
|
predicateLength,
|
36894
37296
|
predicateDataLength,
|
@@ -36906,7 +37308,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36906
37308
|
encode(value) {
|
36907
37309
|
const parts = [];
|
36908
37310
|
parts.push(new B256Coder().encode(value.txID));
|
36909
|
-
parts.push(new NumberCoder("
|
37311
|
+
parts.push(new NumberCoder("u16").encode(value.outputIndex));
|
36910
37312
|
parts.push(new B256Coder().encode(value.balanceRoot));
|
36911
37313
|
parts.push(new B256Coder().encode(value.stateRoot));
|
36912
37314
|
parts.push(new TxPointerCoder().encode(value.txPointer));
|
@@ -36918,7 +37320,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36918
37320
|
let o = offset;
|
36919
37321
|
[decoded, o] = new B256Coder().decode(data, o);
|
36920
37322
|
const txID = decoded;
|
36921
|
-
[decoded, o] = new NumberCoder("
|
37323
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
36922
37324
|
const outputIndex = decoded;
|
36923
37325
|
[decoded, o] = new B256Coder().decode(data, o);
|
36924
37326
|
const balanceRoot = decoded;
|
@@ -36967,14 +37369,16 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36967
37369
|
parts.push(new ByteArrayCoder(32).encode(value.recipient));
|
36968
37370
|
parts.push(new BigNumberCoder("u64").encode(value.amount));
|
36969
37371
|
parts.push(new ByteArrayCoder(32).encode(value.nonce));
|
36970
|
-
parts.push(new NumberCoder("
|
37372
|
+
parts.push(new NumberCoder("u16").encode(value.witnessIndex));
|
36971
37373
|
parts.push(new BigNumberCoder("u64").encode(value.predicateGasUsed));
|
36972
|
-
parts.push(new
|
36973
|
-
parts.push(new
|
36974
|
-
parts.push(new
|
37374
|
+
parts.push(new BigNumberCoder("u64").encode(data.length));
|
37375
|
+
parts.push(new BigNumberCoder("u64").encode(value.predicateLength));
|
37376
|
+
parts.push(new BigNumberCoder("u64").encode(value.predicateDataLength));
|
36975
37377
|
parts.push(new ByteArrayCoder(data.length).encode(data));
|
36976
|
-
parts.push(new ByteArrayCoder(value.predicateLength).encode(value.predicate));
|
36977
|
-
parts.push(
|
37378
|
+
parts.push(new ByteArrayCoder(value.predicateLength.toNumber()).encode(value.predicate));
|
37379
|
+
parts.push(
|
37380
|
+
new ByteArrayCoder(value.predicateDataLength.toNumber()).encode(value.predicateData)
|
37381
|
+
);
|
36978
37382
|
return concat(parts);
|
36979
37383
|
}
|
36980
37384
|
static decodeData(messageData) {
|
@@ -36994,21 +37398,21 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
36994
37398
|
const amount = decoded;
|
36995
37399
|
[decoded, o] = new B256Coder().decode(data, o);
|
36996
37400
|
const nonce = decoded;
|
36997
|
-
[decoded, o] = new NumberCoder("
|
37401
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
36998
37402
|
const witnessIndex = Number(decoded);
|
36999
37403
|
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
37000
37404
|
const predicateGasUsed = decoded;
|
37001
37405
|
[decoded, o] = new NumberCoder("u32").decode(data, o);
|
37002
37406
|
const dataLength2 = decoded;
|
37003
|
-
[decoded, o] = new
|
37407
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
37004
37408
|
const predicateLength = decoded;
|
37005
|
-
[decoded, o] = new
|
37409
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
37006
37410
|
const predicateDataLength = decoded;
|
37007
37411
|
[decoded, o] = new ByteArrayCoder(dataLength2).decode(data, o);
|
37008
37412
|
const messageData = decoded;
|
37009
|
-
[decoded, o] = new ByteArrayCoder(predicateLength).decode(data, o);
|
37413
|
+
[decoded, o] = new ByteArrayCoder(predicateLength.toNumber()).decode(data, o);
|
37010
37414
|
const predicate = decoded;
|
37011
|
-
[decoded, o] = new ByteArrayCoder(predicateDataLength).decode(data, o);
|
37415
|
+
[decoded, o] = new ByteArrayCoder(predicateDataLength.toNumber()).decode(data, o);
|
37012
37416
|
const predicateData = decoded;
|
37013
37417
|
return [
|
37014
37418
|
{
|
@@ -37320,7 +37724,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37320
37724
|
}
|
37321
37725
|
};
|
37322
37726
|
var PolicyType = /* @__PURE__ */ ((PolicyType2) => {
|
37323
|
-
PolicyType2[PolicyType2["
|
37727
|
+
PolicyType2[PolicyType2["Tip"] = 1] = "Tip";
|
37324
37728
|
PolicyType2[PolicyType2["WitnessLimit"] = 2] = "WitnessLimit";
|
37325
37729
|
PolicyType2[PolicyType2["Maturity"] = 4] = "Maturity";
|
37326
37730
|
PolicyType2[PolicyType2["MaxFee"] = 8] = "MaxFee";
|
@@ -37368,9 +37772,9 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37368
37772
|
let o = offset;
|
37369
37773
|
const policies = [];
|
37370
37774
|
if (policyTypes & 1) {
|
37371
|
-
const [
|
37775
|
+
const [tip, nextOffset] = new BigNumberCoder("u64").decode(data, o);
|
37372
37776
|
o = nextOffset;
|
37373
|
-
policies.push({ type: 1, data:
|
37777
|
+
policies.push({ type: 1, data: tip });
|
37374
37778
|
}
|
37375
37779
|
if (policyTypes & 2) {
|
37376
37780
|
const [witnessLimit, nextOffset] = new BigNumberCoder("u64").decode(data, o);
|
@@ -37602,15 +38006,15 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37602
38006
|
encode(value) {
|
37603
38007
|
const parts = [];
|
37604
38008
|
parts.push(new BigNumberCoder("u64").encode(value.scriptGasLimit));
|
37605
|
-
parts.push(new NumberCoder("u32").encode(value.scriptLength));
|
37606
|
-
parts.push(new NumberCoder("u32").encode(value.scriptDataLength));
|
37607
|
-
parts.push(new NumberCoder("u32").encode(value.policyTypes));
|
37608
|
-
parts.push(new NumberCoder("u8").encode(value.inputsCount));
|
37609
|
-
parts.push(new NumberCoder("u8").encode(value.outputsCount));
|
37610
|
-
parts.push(new NumberCoder("u8").encode(value.witnessesCount));
|
37611
38009
|
parts.push(new B256Coder().encode(value.receiptsRoot));
|
37612
|
-
parts.push(new
|
37613
|
-
parts.push(new
|
38010
|
+
parts.push(new BigNumberCoder("u64").encode(value.scriptLength));
|
38011
|
+
parts.push(new BigNumberCoder("u64").encode(value.scriptDataLength));
|
38012
|
+
parts.push(new NumberCoder("u32").encode(value.policyTypes));
|
38013
|
+
parts.push(new NumberCoder("u16").encode(value.inputsCount));
|
38014
|
+
parts.push(new NumberCoder("u16").encode(value.outputsCount));
|
38015
|
+
parts.push(new NumberCoder("u16").encode(value.witnessesCount));
|
38016
|
+
parts.push(new ByteArrayCoder(value.scriptLength.toNumber()).encode(value.script));
|
38017
|
+
parts.push(new ByteArrayCoder(value.scriptDataLength.toNumber()).encode(value.scriptData));
|
37614
38018
|
parts.push(new PoliciesCoder().encode(value.policies));
|
37615
38019
|
parts.push(new ArrayCoder(new InputCoder(), value.inputsCount).encode(value.inputs));
|
37616
38020
|
parts.push(new ArrayCoder(new OutputCoder(), value.outputsCount).encode(value.outputs));
|
@@ -37622,23 +38026,23 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37622
38026
|
let o = offset;
|
37623
38027
|
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
37624
38028
|
const scriptGasLimit = decoded;
|
37625
|
-
[decoded, o] = new
|
38029
|
+
[decoded, o] = new B256Coder().decode(data, o);
|
38030
|
+
const receiptsRoot = decoded;
|
38031
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
37626
38032
|
const scriptLength = decoded;
|
37627
|
-
[decoded, o] = new
|
38033
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
37628
38034
|
const scriptDataLength = decoded;
|
37629
38035
|
[decoded, o] = new NumberCoder("u32").decode(data, o);
|
37630
38036
|
const policyTypes = decoded;
|
37631
|
-
[decoded, o] = new NumberCoder("
|
38037
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37632
38038
|
const inputsCount = decoded;
|
37633
|
-
[decoded, o] = new NumberCoder("
|
38039
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37634
38040
|
const outputsCount = decoded;
|
37635
|
-
[decoded, o] = new NumberCoder("
|
38041
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37636
38042
|
const witnessesCount = decoded;
|
37637
|
-
[decoded, o] = new
|
37638
|
-
const receiptsRoot = decoded;
|
37639
|
-
[decoded, o] = new ByteArrayCoder(scriptLength).decode(data, o);
|
38043
|
+
[decoded, o] = new ByteArrayCoder(scriptLength.toNumber()).decode(data, o);
|
37640
38044
|
const script = decoded;
|
37641
|
-
[decoded, o] = new ByteArrayCoder(scriptDataLength).decode(data, o);
|
38045
|
+
[decoded, o] = new ByteArrayCoder(scriptDataLength.toNumber()).decode(data, o);
|
37642
38046
|
const scriptData = decoded;
|
37643
38047
|
[decoded, o] = new PoliciesCoder().decode(data, o, policyTypes);
|
37644
38048
|
const policies = decoded;
|
@@ -37676,18 +38080,19 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37676
38080
|
}
|
37677
38081
|
encode(value) {
|
37678
38082
|
const parts = [];
|
37679
|
-
parts.push(new NumberCoder("
|
37680
|
-
parts.push(new NumberCoder("u8").encode(value.bytecodeWitnessIndex));
|
37681
|
-
parts.push(new NumberCoder("u32").encode(value.policyTypes));
|
37682
|
-
parts.push(new NumberCoder("u16").encode(value.storageSlotsCount));
|
37683
|
-
parts.push(new NumberCoder("u8").encode(value.inputsCount));
|
37684
|
-
parts.push(new NumberCoder("u8").encode(value.outputsCount));
|
37685
|
-
parts.push(new NumberCoder("u8").encode(value.witnessesCount));
|
38083
|
+
parts.push(new NumberCoder("u16").encode(value.bytecodeWitnessIndex));
|
37686
38084
|
parts.push(new B256Coder().encode(value.salt));
|
37687
|
-
parts.push(new
|
38085
|
+
parts.push(new BigNumberCoder("u64").encode(value.storageSlotsCount));
|
38086
|
+
parts.push(new NumberCoder("u32").encode(value.policyTypes));
|
38087
|
+
parts.push(new NumberCoder("u16").encode(value.inputsCount));
|
38088
|
+
parts.push(new NumberCoder("u16").encode(value.outputsCount));
|
38089
|
+
parts.push(new NumberCoder("u16").encode(value.witnessesCount));
|
37688
38090
|
parts.push(
|
37689
|
-
new ArrayCoder(new StorageSlotCoder(), value.storageSlotsCount).encode(
|
38091
|
+
new ArrayCoder(new StorageSlotCoder(), value.storageSlotsCount.toNumber()).encode(
|
38092
|
+
value.storageSlots
|
38093
|
+
)
|
37690
38094
|
);
|
38095
|
+
parts.push(new PoliciesCoder().encode(value.policies));
|
37691
38096
|
parts.push(new ArrayCoder(new InputCoder(), value.inputsCount).encode(value.inputs));
|
37692
38097
|
parts.push(new ArrayCoder(new OutputCoder(), value.outputsCount).encode(value.outputs));
|
37693
38098
|
parts.push(new ArrayCoder(new WitnessCoder(), value.witnessesCount).encode(value.witnesses));
|
@@ -37696,26 +38101,27 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37696
38101
|
decode(data, offset) {
|
37697
38102
|
let decoded;
|
37698
38103
|
let o = offset;
|
37699
|
-
[decoded, o] = new NumberCoder("
|
37700
|
-
const bytecodeLength = decoded;
|
37701
|
-
[decoded, o] = new NumberCoder("u8").decode(data, o);
|
38104
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37702
38105
|
const bytecodeWitnessIndex = decoded;
|
38106
|
+
[decoded, o] = new B256Coder().decode(data, o);
|
38107
|
+
const salt = decoded;
|
38108
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
38109
|
+
const storageSlotsCount = decoded;
|
37703
38110
|
[decoded, o] = new NumberCoder("u32").decode(data, o);
|
37704
38111
|
const policyTypes = decoded;
|
37705
38112
|
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37706
|
-
const storageSlotsCount = decoded;
|
37707
|
-
[decoded, o] = new NumberCoder("u8").decode(data, o);
|
37708
38113
|
const inputsCount = decoded;
|
37709
|
-
[decoded, o] = new NumberCoder("
|
38114
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37710
38115
|
const outputsCount = decoded;
|
37711
|
-
[decoded, o] = new NumberCoder("
|
38116
|
+
[decoded, o] = new NumberCoder("u16").decode(data, o);
|
37712
38117
|
const witnessesCount = decoded;
|
37713
|
-
[decoded, o] = new
|
37714
|
-
|
38118
|
+
[decoded, o] = new ArrayCoder(new StorageSlotCoder(), storageSlotsCount.toNumber()).decode(
|
38119
|
+
data,
|
38120
|
+
o
|
38121
|
+
);
|
38122
|
+
const storageSlots = decoded;
|
37715
38123
|
[decoded, o] = new PoliciesCoder().decode(data, o, policyTypes);
|
37716
38124
|
const policies = decoded;
|
37717
|
-
[decoded, o] = new ArrayCoder(new StorageSlotCoder(), storageSlotsCount).decode(data, o);
|
37718
|
-
const storageSlots = decoded;
|
37719
38125
|
[decoded, o] = new ArrayCoder(new InputCoder(), inputsCount).decode(data, o);
|
37720
38126
|
const inputs = decoded;
|
37721
38127
|
[decoded, o] = new ArrayCoder(new OutputCoder(), outputsCount).decode(data, o);
|
@@ -37725,7 +38131,6 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37725
38131
|
return [
|
37726
38132
|
{
|
37727
38133
|
type: 1,
|
37728
|
-
bytecodeLength,
|
37729
38134
|
bytecodeWitnessIndex,
|
37730
38135
|
policyTypes,
|
37731
38136
|
storageSlotsCount,
|
@@ -37754,6 +38159,7 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37754
38159
|
parts.push(new OutputContractCoder().encode(value.outputContract));
|
37755
38160
|
parts.push(new BigNumberCoder("u64").encode(value.mintAmount));
|
37756
38161
|
parts.push(new B256Coder().encode(value.mintAssetId));
|
38162
|
+
parts.push(new BigNumberCoder("u64").encode(value.gasPrice));
|
37757
38163
|
return concat(parts);
|
37758
38164
|
}
|
37759
38165
|
decode(data, offset) {
|
@@ -37769,6 +38175,8 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37769
38175
|
const mintAmount = decoded;
|
37770
38176
|
[decoded, o] = new B256Coder().decode(data, o);
|
37771
38177
|
const mintAssetId = decoded;
|
38178
|
+
[decoded, o] = new BigNumberCoder("u64").decode(data, o);
|
38179
|
+
const gasPrice = decoded;
|
37772
38180
|
return [
|
37773
38181
|
{
|
37774
38182
|
type: 2,
|
@@ -37776,7 +38184,8 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
37776
38184
|
inputContract,
|
37777
38185
|
outputContract,
|
37778
38186
|
mintAmount,
|
37779
|
-
mintAssetId
|
38187
|
+
mintAssetId,
|
38188
|
+
gasPrice
|
37780
38189
|
},
|
37781
38190
|
o
|
37782
38191
|
];
|
@@ -38083,159 +38492,6 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
38083
38492
|
// src/providers/provider.ts
|
38084
38493
|
var import_graphql_request = __toESM(require_dist2());
|
38085
38494
|
|
38086
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_isPlaceholder.js
|
38087
|
-
function _isPlaceholder(a) {
|
38088
|
-
return a != null && typeof a === "object" && a["@@functional/placeholder"] === true;
|
38089
|
-
}
|
38090
|
-
|
38091
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_curry1.js
|
38092
|
-
function _curry1(fn) {
|
38093
|
-
return function f1(a) {
|
38094
|
-
if (arguments.length === 0 || _isPlaceholder(a)) {
|
38095
|
-
return f1;
|
38096
|
-
} else {
|
38097
|
-
return fn.apply(this, arguments);
|
38098
|
-
}
|
38099
|
-
};
|
38100
|
-
}
|
38101
|
-
|
38102
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_isArray.js
|
38103
|
-
var isArray_default = Array.isArray || function _isArray(val) {
|
38104
|
-
return val != null && val.length >= 0 && Object.prototype.toString.call(val) === "[object Array]";
|
38105
|
-
};
|
38106
|
-
|
38107
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/type.js
|
38108
|
-
var type = /* @__PURE__ */ _curry1(function type2(val) {
|
38109
|
-
return val === null ? "Null" : val === void 0 ? "Undefined" : Object.prototype.toString.call(val).slice(8, -1);
|
38110
|
-
});
|
38111
|
-
var type_default = type;
|
38112
|
-
|
38113
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_toISOString.js
|
38114
|
-
var pad = function pad2(n) {
|
38115
|
-
return (n < 10 ? "0" : "") + n;
|
38116
|
-
};
|
38117
|
-
var _toISOString = typeof Date.prototype.toISOString === "function" ? function _toISOString2(d) {
|
38118
|
-
return d.toISOString();
|
38119
|
-
} : function _toISOString3(d) {
|
38120
|
-
return d.getUTCFullYear() + "-" + pad(d.getUTCMonth() + 1) + "-" + pad(d.getUTCDate()) + "T" + pad(d.getUTCHours()) + ":" + pad(d.getUTCMinutes()) + ":" + pad(d.getUTCSeconds()) + "." + (d.getUTCMilliseconds() / 1e3).toFixed(3).slice(2, 5) + "Z";
|
38121
|
-
};
|
38122
|
-
|
38123
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_isInteger.js
|
38124
|
-
var isInteger_default = Number.isInteger || function _isInteger(n) {
|
38125
|
-
return n << 0 === n;
|
38126
|
-
};
|
38127
|
-
|
38128
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_cloneRegExp.js
|
38129
|
-
function _cloneRegExp(pattern) {
|
38130
|
-
return new RegExp(pattern.source, pattern.flags ? pattern.flags : (pattern.global ? "g" : "") + (pattern.ignoreCase ? "i" : "") + (pattern.multiline ? "m" : "") + (pattern.sticky ? "y" : "") + (pattern.unicode ? "u" : "") + (pattern.dotAll ? "s" : ""));
|
38131
|
-
}
|
38132
|
-
|
38133
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/internal/_clone.js
|
38134
|
-
function _clone(value, deep, map) {
|
38135
|
-
map || (map = new _ObjectMap());
|
38136
|
-
if (_isPrimitive(value)) {
|
38137
|
-
return value;
|
38138
|
-
}
|
38139
|
-
var copy = function copy2(copiedValue) {
|
38140
|
-
var cachedCopy = map.get(value);
|
38141
|
-
if (cachedCopy) {
|
38142
|
-
return cachedCopy;
|
38143
|
-
}
|
38144
|
-
map.set(value, copiedValue);
|
38145
|
-
for (var key in value) {
|
38146
|
-
if (Object.prototype.hasOwnProperty.call(value, key)) {
|
38147
|
-
copiedValue[key] = deep ? _clone(value[key], true, map) : value[key];
|
38148
|
-
}
|
38149
|
-
}
|
38150
|
-
return copiedValue;
|
38151
|
-
};
|
38152
|
-
switch (type_default(value)) {
|
38153
|
-
case "Object":
|
38154
|
-
return copy(Object.create(Object.getPrototypeOf(value)));
|
38155
|
-
case "Array":
|
38156
|
-
return copy([]);
|
38157
|
-
case "Date":
|
38158
|
-
return new Date(value.valueOf());
|
38159
|
-
case "RegExp":
|
38160
|
-
return _cloneRegExp(value);
|
38161
|
-
case "Int8Array":
|
38162
|
-
case "Uint8Array":
|
38163
|
-
case "Uint8ClampedArray":
|
38164
|
-
case "Int16Array":
|
38165
|
-
case "Uint16Array":
|
38166
|
-
case "Int32Array":
|
38167
|
-
case "Uint32Array":
|
38168
|
-
case "Float32Array":
|
38169
|
-
case "Float64Array":
|
38170
|
-
case "BigInt64Array":
|
38171
|
-
case "BigUint64Array":
|
38172
|
-
return value.slice();
|
38173
|
-
default:
|
38174
|
-
return value;
|
38175
|
-
}
|
38176
|
-
}
|
38177
|
-
function _isPrimitive(param) {
|
38178
|
-
var type3 = typeof param;
|
38179
|
-
return param == null || type3 != "object" && type3 != "function";
|
38180
|
-
}
|
38181
|
-
var _ObjectMap = /* @__PURE__ */ function() {
|
38182
|
-
function _ObjectMap2() {
|
38183
|
-
this.map = {};
|
38184
|
-
this.length = 0;
|
38185
|
-
}
|
38186
|
-
_ObjectMap2.prototype.set = function(key, value) {
|
38187
|
-
const hashedKey = this.hash(key);
|
38188
|
-
let bucket = this.map[hashedKey];
|
38189
|
-
if (!bucket) {
|
38190
|
-
this.map[hashedKey] = bucket = [];
|
38191
|
-
}
|
38192
|
-
bucket.push([key, value]);
|
38193
|
-
this.length += 1;
|
38194
|
-
};
|
38195
|
-
_ObjectMap2.prototype.hash = function(key) {
|
38196
|
-
let hashedKey = [];
|
38197
|
-
for (var value in key) {
|
38198
|
-
hashedKey.push(Object.prototype.toString.call(key[value]));
|
38199
|
-
}
|
38200
|
-
return hashedKey.join();
|
38201
|
-
};
|
38202
|
-
_ObjectMap2.prototype.get = function(key) {
|
38203
|
-
if (this.length <= 180) {
|
38204
|
-
for (const p in this.map) {
|
38205
|
-
const bucket2 = this.map[p];
|
38206
|
-
for (let i = 0; i < bucket2.length; i += 1) {
|
38207
|
-
const element = bucket2[i];
|
38208
|
-
if (element[0] === key) {
|
38209
|
-
return element[1];
|
38210
|
-
}
|
38211
|
-
}
|
38212
|
-
}
|
38213
|
-
return;
|
38214
|
-
}
|
38215
|
-
const hashedKey = this.hash(key);
|
38216
|
-
const bucket = this.map[hashedKey];
|
38217
|
-
if (!bucket) {
|
38218
|
-
return;
|
38219
|
-
}
|
38220
|
-
for (let i = 0; i < bucket.length; i += 1) {
|
38221
|
-
const element = bucket[i];
|
38222
|
-
if (element[0] === key) {
|
38223
|
-
return element[1];
|
38224
|
-
}
|
38225
|
-
}
|
38226
|
-
};
|
38227
|
-
return _ObjectMap2;
|
38228
|
-
}();
|
38229
|
-
|
38230
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/clone.js
|
38231
|
-
var clone2 = /* @__PURE__ */ _curry1(function clone3(value) {
|
38232
|
-
return value != null && typeof value.clone === "function" ? value.clone() : _clone(value, true);
|
38233
|
-
});
|
38234
|
-
var clone_default = clone2;
|
38235
|
-
|
38236
|
-
// ../../node_modules/.pnpm/ramda@0.29.0/node_modules/ramda/es/trim.js
|
38237
|
-
var hasProtoTrim = typeof String.prototype.trim === "function";
|
38238
|
-
|
38239
38495
|
// ../../node_modules/.pnpm/tslib@2.6.0/node_modules/tslib/tslib.es6.mjs
|
38240
38496
|
var __assign = function() {
|
38241
38497
|
__assign = Object.assign || function __assign2(t) {
|
@@ -41403,14 +41659,10 @@ spurious results.`);
|
|
41403
41659
|
// src/providers/__generated__/operations.ts
|
41404
41660
|
var ReceiptFragmentFragmentDoc = lib_default2`
|
41405
41661
|
fragment receiptFragment on Receipt {
|
41406
|
-
|
41407
|
-
id
|
41408
|
-
}
|
41662
|
+
id
|
41409
41663
|
pc
|
41410
41664
|
is
|
41411
|
-
to
|
41412
|
-
id
|
41413
|
-
}
|
41665
|
+
to
|
41414
41666
|
toAddress
|
41415
41667
|
amount
|
41416
41668
|
assetId
|
@@ -41448,10 +41700,16 @@ spurious results.`);
|
|
41448
41700
|
id
|
41449
41701
|
}
|
41450
41702
|
time
|
41703
|
+
receipts {
|
41704
|
+
...receiptFragment
|
41705
|
+
}
|
41451
41706
|
programState {
|
41452
41707
|
returnType
|
41453
41708
|
data
|
41454
41709
|
}
|
41710
|
+
receipts {
|
41711
|
+
...receiptFragment
|
41712
|
+
}
|
41455
41713
|
}
|
41456
41714
|
... on FailureStatus {
|
41457
41715
|
block {
|
@@ -41459,26 +41717,24 @@ spurious results.`);
|
|
41459
41717
|
}
|
41460
41718
|
time
|
41461
41719
|
reason
|
41720
|
+
receipts {
|
41721
|
+
...receiptFragment
|
41722
|
+
}
|
41462
41723
|
}
|
41463
41724
|
... on SqueezedOutStatus {
|
41464
41725
|
reason
|
41465
41726
|
}
|
41466
41727
|
}
|
41467
|
-
`;
|
41728
|
+
${ReceiptFragmentFragmentDoc}`;
|
41468
41729
|
var TransactionFragmentFragmentDoc = lib_default2`
|
41469
41730
|
fragment transactionFragment on Transaction {
|
41470
41731
|
id
|
41471
41732
|
rawPayload
|
41472
|
-
gasPrice
|
41473
|
-
receipts {
|
41474
|
-
...receiptFragment
|
41475
|
-
}
|
41476
41733
|
status {
|
41477
41734
|
...transactionStatusFragment
|
41478
41735
|
}
|
41479
41736
|
}
|
41480
|
-
${
|
41481
|
-
${TransactionStatusFragmentFragmentDoc}`;
|
41737
|
+
${TransactionStatusFragmentFragmentDoc}`;
|
41482
41738
|
var InputEstimatePredicatesFragmentFragmentDoc = lib_default2`
|
41483
41739
|
fragment inputEstimatePredicatesFragment on Input {
|
41484
41740
|
... on InputCoin {
|
@@ -41496,6 +41752,46 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41496
41752
|
}
|
41497
41753
|
}
|
41498
41754
|
${InputEstimatePredicatesFragmentFragmentDoc}`;
|
41755
|
+
var DryRunFailureStatusFragmentFragmentDoc = lib_default2`
|
41756
|
+
fragment dryRunFailureStatusFragment on DryRunFailureStatus {
|
41757
|
+
reason
|
41758
|
+
programState {
|
41759
|
+
returnType
|
41760
|
+
data
|
41761
|
+
}
|
41762
|
+
}
|
41763
|
+
`;
|
41764
|
+
var DryRunSuccessStatusFragmentFragmentDoc = lib_default2`
|
41765
|
+
fragment dryRunSuccessStatusFragment on DryRunSuccessStatus {
|
41766
|
+
programState {
|
41767
|
+
returnType
|
41768
|
+
data
|
41769
|
+
}
|
41770
|
+
}
|
41771
|
+
`;
|
41772
|
+
var DryRunTransactionStatusFragmentFragmentDoc = lib_default2`
|
41773
|
+
fragment dryRunTransactionStatusFragment on DryRunTransactionStatus {
|
41774
|
+
... on DryRunFailureStatus {
|
41775
|
+
...dryRunFailureStatusFragment
|
41776
|
+
}
|
41777
|
+
... on DryRunSuccessStatus {
|
41778
|
+
...dryRunSuccessStatusFragment
|
41779
|
+
}
|
41780
|
+
}
|
41781
|
+
${DryRunFailureStatusFragmentFragmentDoc}
|
41782
|
+
${DryRunSuccessStatusFragmentFragmentDoc}`;
|
41783
|
+
var DryRunTransactionExecutionStatusFragmentFragmentDoc = lib_default2`
|
41784
|
+
fragment dryRunTransactionExecutionStatusFragment on DryRunTransactionExecutionStatus {
|
41785
|
+
id
|
41786
|
+
status {
|
41787
|
+
...dryRunTransactionStatusFragment
|
41788
|
+
}
|
41789
|
+
receipts {
|
41790
|
+
...receiptFragment
|
41791
|
+
}
|
41792
|
+
}
|
41793
|
+
${DryRunTransactionStatusFragmentFragmentDoc}
|
41794
|
+
${ReceiptFragmentFragmentDoc}`;
|
41499
41795
|
var CoinFragmentFragmentDoc = lib_default2`
|
41500
41796
|
fragment coinFragment on Coin {
|
41501
41797
|
__typename
|
@@ -41503,7 +41799,6 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41503
41799
|
owner
|
41504
41800
|
amount
|
41505
41801
|
assetId
|
41506
|
-
maturity
|
41507
41802
|
blockCreated
|
41508
41803
|
txCreatedIdx
|
41509
41804
|
}
|
@@ -41542,26 +41837,32 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41542
41837
|
messageBlockHeader {
|
41543
41838
|
id
|
41544
41839
|
daHeight
|
41840
|
+
consensusParametersVersion
|
41841
|
+
stateTransitionBytecodeVersion
|
41545
41842
|
transactionsCount
|
41843
|
+
messageReceiptCount
|
41546
41844
|
transactionsRoot
|
41845
|
+
messageOutboxRoot
|
41846
|
+
eventInboxRoot
|
41547
41847
|
height
|
41548
41848
|
prevRoot
|
41549
41849
|
time
|
41550
41850
|
applicationHash
|
41551
|
-
messageReceiptRoot
|
41552
|
-
messageReceiptCount
|
41553
41851
|
}
|
41554
41852
|
commitBlockHeader {
|
41555
41853
|
id
|
41556
41854
|
daHeight
|
41855
|
+
consensusParametersVersion
|
41856
|
+
stateTransitionBytecodeVersion
|
41557
41857
|
transactionsCount
|
41858
|
+
messageReceiptCount
|
41558
41859
|
transactionsRoot
|
41860
|
+
messageOutboxRoot
|
41861
|
+
eventInboxRoot
|
41559
41862
|
height
|
41560
41863
|
prevRoot
|
41561
41864
|
time
|
41562
41865
|
applicationHash
|
41563
|
-
messageReceiptRoot
|
41564
|
-
messageReceiptCount
|
41565
41866
|
}
|
41566
41867
|
sender
|
41567
41868
|
recipient
|
@@ -41580,8 +41881,8 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41580
41881
|
var BlockFragmentFragmentDoc = lib_default2`
|
41581
41882
|
fragment blockFragment on Block {
|
41582
41883
|
id
|
41884
|
+
height
|
41583
41885
|
header {
|
41584
|
-
height
|
41585
41886
|
time
|
41586
41887
|
}
|
41587
41888
|
transactions {
|
@@ -41639,6 +41940,11 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41639
41940
|
`;
|
41640
41941
|
var GasCostsFragmentFragmentDoc = lib_default2`
|
41641
41942
|
fragment GasCostsFragment on GasCosts {
|
41943
|
+
version {
|
41944
|
+
... on Version {
|
41945
|
+
value
|
41946
|
+
}
|
41947
|
+
}
|
41642
41948
|
add
|
41643
41949
|
addi
|
41644
41950
|
aloc
|
@@ -41651,7 +41957,6 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41651
41957
|
cb
|
41652
41958
|
cfei
|
41653
41959
|
cfsi
|
41654
|
-
croo
|
41655
41960
|
div
|
41656
41961
|
divi
|
41657
41962
|
ecr1
|
@@ -41734,6 +42039,9 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41734
42039
|
ccp {
|
41735
42040
|
...DependentCostFragment
|
41736
42041
|
}
|
42042
|
+
croo {
|
42043
|
+
...DependentCostFragment
|
42044
|
+
}
|
41737
42045
|
csiz {
|
41738
42046
|
...DependentCostFragment
|
41739
42047
|
}
|
@@ -41793,6 +42101,11 @@ ${TransactionStatusFragmentFragmentDoc}`;
|
|
41793
42101
|
${DependentCostFragmentFragmentDoc}`;
|
41794
42102
|
var ConsensusParametersFragmentFragmentDoc = lib_default2`
|
41795
42103
|
fragment consensusParametersFragment on ConsensusParameters {
|
42104
|
+
version {
|
42105
|
+
... on Version {
|
42106
|
+
value
|
42107
|
+
}
|
42108
|
+
}
|
41796
42109
|
txParams {
|
41797
42110
|
...TxParametersFragment
|
41798
42111
|
}
|
@@ -41852,18 +42165,9 @@ ${ConsensusParametersFragmentFragmentDoc}`;
|
|
41852
42165
|
fragment nodeInfoFragment on NodeInfo {
|
41853
42166
|
utxoValidation
|
41854
42167
|
vmBacktrace
|
41855
|
-
minGasPrice
|
41856
42168
|
maxTx
|
41857
42169
|
maxDepth
|
41858
42170
|
nodeVersion
|
41859
|
-
peers {
|
41860
|
-
id
|
41861
|
-
addresses
|
41862
|
-
clientVersion
|
41863
|
-
blockHeight
|
41864
|
-
lastHeartbeatMs
|
41865
|
-
appScore
|
41866
|
-
}
|
41867
42171
|
}
|
41868
42172
|
`;
|
41869
42173
|
var GetVersionDocument = lib_default2`
|
@@ -41898,13 +42202,9 @@ ${ConsensusParametersFragmentFragmentDoc}`;
|
|
41898
42202
|
query getTransactionWithReceipts($transactionId: TransactionId!) {
|
41899
42203
|
transaction(id: $transactionId) {
|
41900
42204
|
...transactionFragment
|
41901
|
-
receipts {
|
41902
|
-
...receiptFragment
|
41903
|
-
}
|
41904
42205
|
}
|
41905
42206
|
}
|
41906
|
-
${TransactionFragmentFragmentDoc}
|
41907
|
-
${ReceiptFragmentFragmentDoc}`;
|
42207
|
+
${TransactionFragmentFragmentDoc}`;
|
41908
42208
|
var GetTransactionsDocument = lib_default2`
|
41909
42209
|
query getTransactions($after: String, $before: String, $first: Int, $last: Int) {
|
41910
42210
|
transactions(after: $after, before: $before, first: $first, last: $last) {
|
@@ -42032,6 +42332,20 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42032
42332
|
}
|
42033
42333
|
}
|
42034
42334
|
${BalanceFragmentFragmentDoc}`;
|
42335
|
+
var GetLatestGasPriceDocument = lib_default2`
|
42336
|
+
query getLatestGasPrice {
|
42337
|
+
latestGasPrice {
|
42338
|
+
gasPrice
|
42339
|
+
}
|
42340
|
+
}
|
42341
|
+
`;
|
42342
|
+
var EstimateGasPriceDocument = lib_default2`
|
42343
|
+
query estimateGasPrice($blockHorizon: U32!) {
|
42344
|
+
estimateGasPrice(blockHorizon: $blockHorizon) {
|
42345
|
+
gasPrice
|
42346
|
+
}
|
42347
|
+
}
|
42348
|
+
`;
|
42035
42349
|
var GetBalancesDocument = lib_default2`
|
42036
42350
|
query getBalances($filter: BalanceFilterInput!, $after: String, $before: String, $first: Int, $last: Int) {
|
42037
42351
|
balances(
|
@@ -42086,12 +42400,12 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42086
42400
|
}
|
42087
42401
|
`;
|
42088
42402
|
var DryRunDocument = lib_default2`
|
42089
|
-
mutation dryRun($
|
42090
|
-
dryRun(
|
42091
|
-
...
|
42403
|
+
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
|
42404
|
+
dryRun(txs: $encodedTransactions, utxoValidation: $utxoValidation) {
|
42405
|
+
...dryRunTransactionExecutionStatusFragment
|
42092
42406
|
}
|
42093
42407
|
}
|
42094
|
-
${
|
42408
|
+
${DryRunTransactionExecutionStatusFragmentFragmentDoc}`;
|
42095
42409
|
var SubmitDocument = lib_default2`
|
42096
42410
|
mutation submit($encodedTransaction: HexString!) {
|
42097
42411
|
submit(tx: $encodedTransaction) {
|
@@ -42174,6 +42488,12 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42174
42488
|
getBalance(variables, options) {
|
42175
42489
|
return requester(GetBalanceDocument, variables, options);
|
42176
42490
|
},
|
42491
|
+
getLatestGasPrice(variables, options) {
|
42492
|
+
return requester(GetLatestGasPriceDocument, variables, options);
|
42493
|
+
},
|
42494
|
+
estimateGasPrice(variables, options) {
|
42495
|
+
return requester(EstimateGasPriceDocument, variables, options);
|
42496
|
+
},
|
42177
42497
|
getBalances(variables, options) {
|
42178
42498
|
return requester(GetBalancesDocument, variables, options);
|
42179
42499
|
},
|
@@ -42241,11 +42561,14 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42241
42561
|
let data;
|
42242
42562
|
let errors;
|
42243
42563
|
try {
|
42244
|
-
|
42564
|
+
const sanitizedText = text.replace(/\s/g, "");
|
42565
|
+
({ data, errors } = JSON.parse(sanitizedText.replace(/^data:/, "")));
|
42245
42566
|
} catch (e) {
|
42246
42567
|
throw new FuelError(
|
42247
42568
|
ErrorCode.STREAM_PARSING_ERROR,
|
42248
|
-
`Error while parsing stream data response: ${text}
|
42569
|
+
`Error while parsing stream data response: ${text}
|
42570
|
+
|
42571
|
+
Thrown error: ${e}`
|
42249
42572
|
);
|
42250
42573
|
}
|
42251
42574
|
if (Array.isArray(errors)) {
|
@@ -42338,8 +42661,8 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42338
42661
|
const predicateData = arrayify(value.predicateData ?? "0x");
|
42339
42662
|
return {
|
42340
42663
|
type: InputType.Coin,
|
42341
|
-
txID: hexlify(arrayify(value.id).slice(0,
|
42342
|
-
outputIndex: arrayify(value.id)
|
42664
|
+
txID: hexlify(arrayify(value.id).slice(0, BYTES_32)),
|
42665
|
+
outputIndex: toNumber2(arrayify(value.id).slice(BYTES_32, UTXO_ID_LEN)),
|
42343
42666
|
owner: hexlify(value.owner),
|
42344
42667
|
amount: bn(value.amount),
|
42345
42668
|
assetId: hexlify(value.assetId),
|
@@ -42348,10 +42671,9 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42348
42671
|
txIndex: toNumber2(arrayify(value.txPointer).slice(8, 16))
|
42349
42672
|
},
|
42350
42673
|
witnessIndex: value.witnessIndex,
|
42351
|
-
maturity: value.maturity ?? 0,
|
42352
42674
|
predicateGasUsed: bn(value.predicateGasUsed),
|
42353
|
-
predicateLength: predicate.length,
|
42354
|
-
predicateDataLength: predicateData.length,
|
42675
|
+
predicateLength: bn(predicate.length),
|
42676
|
+
predicateDataLength: bn(predicateData.length),
|
42355
42677
|
predicate: hexlify(predicate),
|
42356
42678
|
predicateData: hexlify(predicateData)
|
42357
42679
|
};
|
@@ -42382,8 +42704,8 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42382
42704
|
nonce: hexlify(value.nonce),
|
42383
42705
|
witnessIndex: value.witnessIndex,
|
42384
42706
|
predicateGasUsed: bn(value.predicateGasUsed),
|
42385
|
-
predicateLength: predicate.length,
|
42386
|
-
predicateDataLength: predicateData.length,
|
42707
|
+
predicateLength: bn(predicate.length),
|
42708
|
+
predicateDataLength: bn(predicateData.length),
|
42387
42709
|
predicate: hexlify(predicate),
|
42388
42710
|
predicateData: hexlify(predicateData),
|
42389
42711
|
data: hexlify(data),
|
@@ -42540,8 +42862,8 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42540
42862
|
case "CALL" /* Call */: {
|
42541
42863
|
const callReceipt = {
|
42542
42864
|
type: ReceiptType.Call,
|
42543
|
-
from: hexOrZero(receipt.
|
42544
|
-
to: hexOrZero(receipt?.to
|
42865
|
+
from: hexOrZero(receipt.id || receipt.contractId),
|
42866
|
+
to: hexOrZero(receipt?.to),
|
42545
42867
|
amount: bn(receipt.amount),
|
42546
42868
|
assetId: hexOrZero(receipt.assetId),
|
42547
42869
|
gas: bn(receipt.gas),
|
@@ -42555,7 +42877,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42555
42877
|
case "RETURN" /* Return */: {
|
42556
42878
|
const returnReceipt = {
|
42557
42879
|
type: ReceiptType.Return,
|
42558
|
-
id: hexOrZero(receipt.
|
42880
|
+
id: hexOrZero(receipt.id || receipt.contractId),
|
42559
42881
|
val: bn(receipt.val),
|
42560
42882
|
pc: bn(receipt.pc),
|
42561
42883
|
is: bn(receipt.is)
|
@@ -42565,7 +42887,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42565
42887
|
case "RETURN_DATA" /* ReturnData */: {
|
42566
42888
|
const returnDataReceipt = {
|
42567
42889
|
type: ReceiptType.ReturnData,
|
42568
|
-
id: hexOrZero(receipt.
|
42890
|
+
id: hexOrZero(receipt.id || receipt.contractId),
|
42569
42891
|
ptr: bn(receipt.ptr),
|
42570
42892
|
len: bn(receipt.len),
|
42571
42893
|
digest: hexOrZero(receipt.digest),
|
@@ -42577,7 +42899,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42577
42899
|
case "PANIC" /* Panic */: {
|
42578
42900
|
const panicReceipt = {
|
42579
42901
|
type: ReceiptType.Panic,
|
42580
|
-
id: hexOrZero(receipt.
|
42902
|
+
id: hexOrZero(receipt.id),
|
42581
42903
|
reason: bn(receipt.reason),
|
42582
42904
|
pc: bn(receipt.pc),
|
42583
42905
|
is: bn(receipt.is),
|
@@ -42588,7 +42910,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42588
42910
|
case "REVERT" /* Revert */: {
|
42589
42911
|
const revertReceipt = {
|
42590
42912
|
type: ReceiptType.Revert,
|
42591
|
-
id: hexOrZero(receipt.
|
42913
|
+
id: hexOrZero(receipt.id || receipt.contractId),
|
42592
42914
|
val: bn(receipt.ra),
|
42593
42915
|
pc: bn(receipt.pc),
|
42594
42916
|
is: bn(receipt.is)
|
@@ -42598,7 +42920,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42598
42920
|
case "LOG" /* Log */: {
|
42599
42921
|
const logReceipt = {
|
42600
42922
|
type: ReceiptType.Log,
|
42601
|
-
id: hexOrZero(receipt.
|
42923
|
+
id: hexOrZero(receipt.id || receipt.contractId),
|
42602
42924
|
val0: bn(receipt.ra),
|
42603
42925
|
val1: bn(receipt.rb),
|
42604
42926
|
val2: bn(receipt.rc),
|
@@ -42611,7 +42933,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42611
42933
|
case "LOG_DATA" /* LogData */: {
|
42612
42934
|
const logDataReceipt = {
|
42613
42935
|
type: ReceiptType.LogData,
|
42614
|
-
id: hexOrZero(receipt.
|
42936
|
+
id: hexOrZero(receipt.id || receipt.contractId),
|
42615
42937
|
val0: bn(receipt.ra),
|
42616
42938
|
val1: bn(receipt.rb),
|
42617
42939
|
ptr: bn(receipt.ptr),
|
@@ -42625,8 +42947,8 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42625
42947
|
case "TRANSFER" /* Transfer */: {
|
42626
42948
|
const transferReceipt = {
|
42627
42949
|
type: ReceiptType.Transfer,
|
42628
|
-
from: hexOrZero(receipt.
|
42629
|
-
to: hexOrZero(receipt.toAddress || receipt?.to
|
42950
|
+
from: hexOrZero(receipt.id || receipt.contractId),
|
42951
|
+
to: hexOrZero(receipt.toAddress || receipt?.to),
|
42630
42952
|
amount: bn(receipt.amount),
|
42631
42953
|
assetId: hexOrZero(receipt.assetId),
|
42632
42954
|
pc: bn(receipt.pc),
|
@@ -42637,8 +42959,8 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42637
42959
|
case "TRANSFER_OUT" /* TransferOut */: {
|
42638
42960
|
const transferOutReceipt = {
|
42639
42961
|
type: ReceiptType.TransferOut,
|
42640
|
-
from: hexOrZero(receipt.
|
42641
|
-
to: hexOrZero(receipt.toAddress || receipt.to
|
42962
|
+
from: hexOrZero(receipt.id || receipt.contractId),
|
42963
|
+
to: hexOrZero(receipt.toAddress || receipt.to),
|
42642
42964
|
amount: bn(receipt.amount),
|
42643
42965
|
assetId: hexOrZero(receipt.assetId),
|
42644
42966
|
pc: bn(receipt.pc),
|
@@ -42681,7 +43003,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42681
43003
|
return receiptMessageOut;
|
42682
43004
|
}
|
42683
43005
|
case "MINT" /* Mint */: {
|
42684
|
-
const contractId = hexOrZero(receipt.
|
43006
|
+
const contractId = hexOrZero(receipt.id || receipt.contractId);
|
42685
43007
|
const subId = hexOrZero(receipt.subId);
|
42686
43008
|
const assetId = ReceiptMintCoder.getAssetId(contractId, subId);
|
42687
43009
|
const mintReceipt = {
|
@@ -42696,7 +43018,7 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42696
43018
|
return mintReceipt;
|
42697
43019
|
}
|
42698
43020
|
case "BURN" /* Burn */: {
|
42699
|
-
const contractId = hexOrZero(receipt.
|
43021
|
+
const contractId = hexOrZero(receipt.id || receipt.contractId);
|
42700
43022
|
const subId = hexOrZero(receipt.subId);
|
42701
43023
|
const assetId = ReceiptBurnCoder.getAssetId(contractId, subId);
|
42702
43024
|
const burnReceipt = {
|
@@ -42716,7 +43038,6 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42716
43038
|
}
|
42717
43039
|
|
42718
43040
|
// src/providers/utils/gas.ts
|
42719
|
-
var calculatePriceWithFactor = (gas, gasPrice, priceFactor) => bn(Math.ceil(gas.mul(gasPrice).toNumber() / priceFactor.toNumber()));
|
42720
43041
|
var getGasUsedFromReceipts = (receipts) => {
|
42721
43042
|
const scriptResult = receipts.filter(
|
42722
43043
|
(receipt) => receipt.type === ReceiptType.ScriptResult
|
@@ -42737,18 +43058,28 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42737
43058
|
}
|
42738
43059
|
function gasUsedByInputs(inputs, txBytesSize, gasCosts) {
|
42739
43060
|
const witnessCache = [];
|
42740
|
-
const
|
43061
|
+
const chargeableInputs = inputs.filter((input) => {
|
43062
|
+
const isCoinOrMessage = "owner" in input || "sender" in input;
|
43063
|
+
if (isCoinOrMessage) {
|
43064
|
+
if ("predicate" in input && input.predicate && input.predicate !== "0x") {
|
43065
|
+
return true;
|
43066
|
+
}
|
43067
|
+
if (!witnessCache.includes(input.witnessIndex)) {
|
43068
|
+
witnessCache.push(input.witnessIndex);
|
43069
|
+
return true;
|
43070
|
+
}
|
43071
|
+
}
|
43072
|
+
return false;
|
43073
|
+
});
|
43074
|
+
const vmInitializationCost = resolveGasDependentCosts(txBytesSize, gasCosts.vmInitialization);
|
43075
|
+
const totalGas = chargeableInputs.reduce((total, input) => {
|
42741
43076
|
if ("predicate" in input && input.predicate && input.predicate !== "0x") {
|
42742
43077
|
return total.add(
|
42743
|
-
|
43078
|
+
vmInitializationCost.add(resolveGasDependentCosts(arrayify(input.predicate).length, gasCosts.contractRoot)).add(bn(input.predicateGasUsed))
|
42744
43079
|
);
|
42745
43080
|
}
|
42746
|
-
|
42747
|
-
|
42748
|
-
return total.add(gasCosts.ecr1);
|
42749
|
-
}
|
42750
|
-
return total;
|
42751
|
-
}, bn());
|
43081
|
+
return total.add(gasCosts.ecr1);
|
43082
|
+
}, bn(0));
|
42752
43083
|
return totalGas;
|
42753
43084
|
}
|
42754
43085
|
function getMinGas(params) {
|
@@ -42760,12 +43091,20 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42760
43091
|
return minGas;
|
42761
43092
|
}
|
42762
43093
|
function getMaxGas(params) {
|
42763
|
-
const {
|
43094
|
+
const {
|
43095
|
+
gasPerByte,
|
43096
|
+
witnessesLength,
|
43097
|
+
witnessLimit,
|
43098
|
+
minGas,
|
43099
|
+
gasLimit = bn(0),
|
43100
|
+
maxGasPerTx
|
43101
|
+
} = params;
|
42764
43102
|
let remainingAllowedWitnessGas = bn(0);
|
42765
43103
|
if (witnessLimit?.gt(0) && witnessLimit.gte(witnessesLength)) {
|
42766
43104
|
remainingAllowedWitnessGas = bn(witnessLimit).sub(witnessesLength).mul(gasPerByte);
|
42767
43105
|
}
|
42768
|
-
|
43106
|
+
const maxGas = remainingAllowedWitnessGas.add(minGas).add(gasLimit);
|
43107
|
+
return maxGas.gte(maxGasPerTx) ? maxGasPerTx : maxGas;
|
42769
43108
|
}
|
42770
43109
|
function calculateMetadataGasForTxCreate({
|
42771
43110
|
gasCosts,
|
@@ -42787,6 +43126,10 @@ ${MessageCoinFragmentFragmentDoc}`;
|
|
42787
43126
|
}) {
|
42788
43127
|
return resolveGasDependentCosts(txBytesSize, gasCosts.s256);
|
42789
43128
|
}
|
43129
|
+
var calculateGasFee = (params) => {
|
43130
|
+
const { gas, gasPrice, priceFactor, tip } = params;
|
43131
|
+
return gas.mul(gasPrice).div(priceFactor).add(tip);
|
43132
|
+
};
|
42790
43133
|
|
42791
43134
|
// src/providers/utils/json.ts
|
42792
43135
|
function normalize2(object) {
|
@@ -42916,7 +43259,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
42916
43259
|
// src/providers/transaction-request/transaction-request.ts
|
42917
43260
|
var BaseTransactionRequest = class {
|
42918
43261
|
/** Gas price for transaction */
|
42919
|
-
|
43262
|
+
tip;
|
42920
43263
|
/** Block until which tx cannot be included */
|
42921
43264
|
maturity;
|
42922
43265
|
/** The maximum fee payable by this transaction using BASE_ASSET. */
|
@@ -42935,7 +43278,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
42935
43278
|
* @param baseTransactionRequest - Optional object containing properties to initialize the transaction request.
|
42936
43279
|
*/
|
42937
43280
|
constructor({
|
42938
|
-
|
43281
|
+
tip,
|
42939
43282
|
maturity,
|
42940
43283
|
maxFee,
|
42941
43284
|
witnessLimit,
|
@@ -42943,7 +43286,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
42943
43286
|
outputs,
|
42944
43287
|
witnesses
|
42945
43288
|
} = {}) {
|
42946
|
-
this.
|
43289
|
+
this.tip = bn(tip);
|
42947
43290
|
this.maturity = maturity ?? 0;
|
42948
43291
|
this.witnessLimit = witnessLimit ? bn(witnessLimit) : void 0;
|
42949
43292
|
this.maxFee = maxFee ? bn(maxFee) : void 0;
|
@@ -42954,9 +43297,9 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
42954
43297
|
static getPolicyMeta(req) {
|
42955
43298
|
let policyTypes = 0;
|
42956
43299
|
const policies = [];
|
42957
|
-
if (req.
|
42958
|
-
policyTypes += PolicyType.
|
42959
|
-
policies.push({ data: req.
|
43300
|
+
if (req.tip) {
|
43301
|
+
policyTypes += PolicyType.Tip;
|
43302
|
+
policies.push({ data: req.tip, type: PolicyType.Tip });
|
42960
43303
|
}
|
42961
43304
|
if (req.witnessLimit) {
|
42962
43305
|
policyTypes += PolicyType.WitnessLimit;
|
@@ -43143,10 +43486,10 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43143
43486
|
* @param predicate - Predicate bytes.
|
43144
43487
|
* @param predicateData - Predicate data bytes.
|
43145
43488
|
*/
|
43146
|
-
addCoinInput(coin
|
43489
|
+
addCoinInput(coin) {
|
43147
43490
|
const { assetId, owner, amount } = coin;
|
43148
43491
|
let witnessIndex;
|
43149
|
-
if (predicate) {
|
43492
|
+
if (coin.predicate) {
|
43150
43493
|
witnessIndex = 0;
|
43151
43494
|
} else {
|
43152
43495
|
witnessIndex = this.getCoinInputWitnessIndexByOwner(owner);
|
@@ -43161,8 +43504,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43161
43504
|
amount,
|
43162
43505
|
assetId,
|
43163
43506
|
txPointer: "0x00000000000000000000000000000000",
|
43164
|
-
witnessIndex
|
43165
|
-
predicate: predicate?.bytes
|
43507
|
+
witnessIndex
|
43166
43508
|
};
|
43167
43509
|
this.pushInput(input);
|
43168
43510
|
this.addChangeOutput(owner, assetId);
|
@@ -43175,11 +43517,11 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43175
43517
|
* @param predicate - Predicate bytes.
|
43176
43518
|
* @param predicateData - Predicate data bytes.
|
43177
43519
|
*/
|
43178
|
-
addMessageInput(message
|
43520
|
+
addMessageInput(message) {
|
43179
43521
|
const { recipient, sender, amount } = message;
|
43180
43522
|
const assetId = BaseAssetId;
|
43181
43523
|
let witnessIndex;
|
43182
|
-
if (predicate) {
|
43524
|
+
if (message.predicate) {
|
43183
43525
|
witnessIndex = 0;
|
43184
43526
|
} else {
|
43185
43527
|
witnessIndex = this.getCoinInputWitnessIndexByOwner(recipient);
|
@@ -43193,8 +43535,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43193
43535
|
sender: sender.toB256(),
|
43194
43536
|
recipient: recipient.toB256(),
|
43195
43537
|
amount,
|
43196
|
-
witnessIndex
|
43197
|
-
predicate: predicate?.bytes
|
43538
|
+
witnessIndex
|
43198
43539
|
};
|
43199
43540
|
this.pushInput(input);
|
43200
43541
|
this.addChangeOutput(recipient, assetId);
|
@@ -43225,32 +43566,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43225
43566
|
resources.forEach((resource) => this.addResource(resource));
|
43226
43567
|
return this;
|
43227
43568
|
}
|
43228
|
-
/**
|
43229
|
-
* Adds multiple resources to the transaction by adding coin/message inputs and change
|
43230
|
-
* outputs from the related assetIds.
|
43231
|
-
*
|
43232
|
-
* @param resources - The resources to add.
|
43233
|
-
* @returns This transaction.
|
43234
|
-
*/
|
43235
|
-
addPredicateResource(resource, predicate) {
|
43236
|
-
if (isCoin(resource)) {
|
43237
|
-
this.addCoinInput(resource, predicate);
|
43238
|
-
} else {
|
43239
|
-
this.addMessageInput(resource, predicate);
|
43240
|
-
}
|
43241
|
-
return this;
|
43242
|
-
}
|
43243
|
-
/**
|
43244
|
-
* Adds multiple predicate coin/message inputs to the transaction and change outputs
|
43245
|
-
* from the related assetIds.
|
43246
|
-
*
|
43247
|
-
* @param resources - The resources to add.
|
43248
|
-
* @returns This transaction.
|
43249
|
-
*/
|
43250
|
-
addPredicateResources(resources, predicate) {
|
43251
|
-
resources.forEach((resource) => this.addPredicateResource(resource, predicate));
|
43252
|
-
return this;
|
43253
|
-
}
|
43254
43569
|
/**
|
43255
43570
|
* Adds a coin output to the transaction.
|
43256
43571
|
*
|
@@ -43330,7 +43645,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43330
43645
|
}
|
43331
43646
|
calculateMaxGas(chainInfo, minGas) {
|
43332
43647
|
const { consensusParameters } = chainInfo;
|
43333
|
-
const { gasPerByte } = consensusParameters;
|
43648
|
+
const { gasPerByte, maxGasPerTx } = consensusParameters;
|
43334
43649
|
const witnessesLength = this.toTransaction().witnesses.reduce(
|
43335
43650
|
(acc, wit) => acc + wit.dataLength,
|
43336
43651
|
0
|
@@ -43339,7 +43654,8 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43339
43654
|
gasPerByte,
|
43340
43655
|
minGas,
|
43341
43656
|
witnessesLength,
|
43342
|
-
witnessLimit: this.witnessLimit
|
43657
|
+
witnessLimit: this.witnessLimit,
|
43658
|
+
maxGasPerTx
|
43343
43659
|
});
|
43344
43660
|
}
|
43345
43661
|
/**
|
@@ -43349,12 +43665,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43349
43665
|
* @param quantities - CoinQuantity Array.
|
43350
43666
|
*/
|
43351
43667
|
fundWithFakeUtxos(quantities, resourcesOwner) {
|
43352
|
-
let idCounter = 0;
|
43353
|
-
const generateId = () => {
|
43354
|
-
const counterString = String(idCounter++);
|
43355
|
-
const id = ZeroBytes32.slice(0, -counterString.length).concat(counterString);
|
43356
|
-
return id;
|
43357
|
-
};
|
43358
43668
|
const findAssetInput = (assetId) => this.inputs.find((input) => {
|
43359
43669
|
if ("assetId" in input) {
|
43360
43670
|
return input.assetId === assetId;
|
@@ -43363,17 +43673,20 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43363
43673
|
});
|
43364
43674
|
const updateAssetInput = (assetId, quantity) => {
|
43365
43675
|
const assetInput = findAssetInput(assetId);
|
43676
|
+
let usedQuantity = quantity;
|
43677
|
+
if (assetId === BaseAssetId) {
|
43678
|
+
usedQuantity = bn("1000000000000000000");
|
43679
|
+
}
|
43366
43680
|
if (assetInput && "assetId" in assetInput) {
|
43367
|
-
assetInput.id =
|
43368
|
-
assetInput.amount =
|
43681
|
+
assetInput.id = hexlify(randomBytes22(UTXO_ID_LEN));
|
43682
|
+
assetInput.amount = usedQuantity;
|
43369
43683
|
} else {
|
43370
43684
|
this.addResources([
|
43371
43685
|
{
|
43372
|
-
id:
|
43373
|
-
amount:
|
43686
|
+
id: hexlify(randomBytes22(UTXO_ID_LEN)),
|
43687
|
+
amount: usedQuantity,
|
43374
43688
|
assetId,
|
43375
43689
|
owner: resourcesOwner || Address.fromRandom(),
|
43376
|
-
maturity: 0,
|
43377
43690
|
blockCreated: bn(1),
|
43378
43691
|
txCreatedIdx: bn(1)
|
43379
43692
|
}
|
@@ -43405,7 +43718,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43405
43718
|
toJSON() {
|
43406
43719
|
return normalizeJSON(this);
|
43407
43720
|
}
|
43408
|
-
|
43721
|
+
updatePredicateGasUsed(inputs) {
|
43409
43722
|
this.inputs.forEach((i) => {
|
43410
43723
|
let correspondingInput;
|
43411
43724
|
switch (i.type) {
|
@@ -43427,6 +43740,15 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43427
43740
|
}
|
43428
43741
|
});
|
43429
43742
|
}
|
43743
|
+
shiftPredicateData() {
|
43744
|
+
this.inputs.forEach((input) => {
|
43745
|
+
if ("predicateData" in input && "paddPredicateData" in input && typeof input.paddPredicateData === "function") {
|
43746
|
+
input.predicateData = input.paddPredicateData(
|
43747
|
+
BaseTransactionRequest.getPolicyMeta(this).policies.length
|
43748
|
+
);
|
43749
|
+
}
|
43750
|
+
});
|
43751
|
+
}
|
43430
43752
|
};
|
43431
43753
|
|
43432
43754
|
// src/providers/transaction-request/hash-transaction.ts
|
@@ -43560,9 +43882,8 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43560
43882
|
return {
|
43561
43883
|
type: TransactionType.Create,
|
43562
43884
|
...baseTransaction,
|
43563
|
-
bytecodeLength: baseTransaction.witnesses[bytecodeWitnessIndex].dataLength / 4,
|
43564
43885
|
bytecodeWitnessIndex,
|
43565
|
-
storageSlotsCount: storageSlots.length,
|
43886
|
+
storageSlotsCount: bn(storageSlots.length),
|
43566
43887
|
salt: this.salt ? hexlify(this.salt) : ZeroBytes32,
|
43567
43888
|
storageSlots
|
43568
43889
|
};
|
@@ -43676,8 +43997,8 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43676
43997
|
type: TransactionType.Script,
|
43677
43998
|
scriptGasLimit: this.gasLimit,
|
43678
43999
|
...super.getBaseTransaction(),
|
43679
|
-
scriptLength: script.length,
|
43680
|
-
scriptDataLength: scriptData.length,
|
44000
|
+
scriptLength: bn(script.length),
|
44001
|
+
scriptDataLength: bn(scriptData.length),
|
43681
44002
|
receiptsRoot: ZeroBytes32,
|
43682
44003
|
script: hexlify(script),
|
43683
44004
|
scriptData: hexlify(scriptData)
|
@@ -43741,7 +44062,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43741
44062
|
}
|
43742
44063
|
calculateMaxGas(chainInfo, minGas) {
|
43743
44064
|
const { consensusParameters } = chainInfo;
|
43744
|
-
const { gasPerByte } = consensusParameters;
|
44065
|
+
const { gasPerByte, maxGasPerTx } = consensusParameters;
|
43745
44066
|
const witnessesLength = this.toTransaction().witnesses.reduce(
|
43746
44067
|
(acc, wit) => acc + wit.dataLength,
|
43747
44068
|
0
|
@@ -43751,7 +44072,8 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43751
44072
|
minGas,
|
43752
44073
|
witnessesLength,
|
43753
44074
|
witnessLimit: this.witnessLimit,
|
43754
|
-
gasLimit: this.gasLimit
|
44075
|
+
gasLimit: this.gasLimit,
|
44076
|
+
maxGasPerTx
|
43755
44077
|
});
|
43756
44078
|
}
|
43757
44079
|
/**
|
@@ -43824,13 +44146,29 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43824
44146
|
}
|
43825
44147
|
}
|
43826
44148
|
};
|
44149
|
+
var cacheTxInputsFromOwner = (inputs, owner) => inputs.reduce(
|
44150
|
+
(acc, input) => {
|
44151
|
+
if (input.type === InputType.Coin && input.owner === owner) {
|
44152
|
+
acc.utxos.push(input.id);
|
44153
|
+
}
|
44154
|
+
if (input.type === InputType.Message && input.recipient === owner) {
|
44155
|
+
acc.messages.push(input.nonce);
|
44156
|
+
}
|
44157
|
+
return acc;
|
44158
|
+
},
|
44159
|
+
{
|
44160
|
+
utxos: [],
|
44161
|
+
messages: []
|
44162
|
+
}
|
44163
|
+
);
|
43827
44164
|
|
43828
44165
|
// src/providers/transaction-summary/calculate-transaction-fee.ts
|
43829
44166
|
var calculateTransactionFee = (params) => {
|
43830
44167
|
const {
|
43831
|
-
|
44168
|
+
gasPrice,
|
43832
44169
|
rawPayload,
|
43833
|
-
|
44170
|
+
tip,
|
44171
|
+
consensusParameters: { gasCosts, feeParams, maxGasPerTx }
|
43834
44172
|
} = params;
|
43835
44173
|
const gasPerByte = bn(feeParams.gasPerByte);
|
43836
44174
|
const gasPriceFactor = bn(feeParams.gasPriceFactor);
|
@@ -43840,8 +44178,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43840
44178
|
return {
|
43841
44179
|
fee: bn(0),
|
43842
44180
|
minFee: bn(0),
|
43843
|
-
maxFee: bn(0)
|
43844
|
-
feeFromGasUsed: bn(0)
|
44181
|
+
maxFee: bn(0)
|
43845
44182
|
};
|
43846
44183
|
}
|
43847
44184
|
const { type: type3, witnesses, inputs, policies } = transaction;
|
@@ -43873,7 +44210,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43873
44210
|
metadataGas,
|
43874
44211
|
txBytesSize: transactionBytes.length
|
43875
44212
|
});
|
43876
|
-
const gasPrice = bn(policies.find((policy) => policy.type === PolicyType.GasPrice)?.data);
|
43877
44213
|
const witnessLimit = policies.find((policy) => policy.type === PolicyType.WitnessLimit)?.data;
|
43878
44214
|
const witnessesLength = witnesses.reduce((acc, wit) => acc + wit.dataLength, 0);
|
43879
44215
|
const maxGas = getMaxGas({
|
@@ -43881,17 +44217,25 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
43881
44217
|
minGas,
|
43882
44218
|
witnessesLength,
|
43883
44219
|
gasLimit,
|
43884
|
-
witnessLimit
|
44220
|
+
witnessLimit,
|
44221
|
+
maxGasPerTx
|
44222
|
+
});
|
44223
|
+
const minFee = calculateGasFee({
|
44224
|
+
gasPrice,
|
44225
|
+
gas: minGas,
|
44226
|
+
priceFactor: gasPriceFactor,
|
44227
|
+
tip
|
44228
|
+
});
|
44229
|
+
const maxFee = calculateGasFee({
|
44230
|
+
gasPrice,
|
44231
|
+
gas: maxGas,
|
44232
|
+
priceFactor: gasPriceFactor,
|
44233
|
+
tip
|
43885
44234
|
});
|
43886
|
-
const feeFromGasUsed = calculatePriceWithFactor(gasUsed, gasPrice, gasPriceFactor);
|
43887
|
-
const minFee = calculatePriceWithFactor(minGas, gasPrice, gasPriceFactor);
|
43888
|
-
const maxFee = calculatePriceWithFactor(maxGas, gasPrice, gasPriceFactor);
|
43889
|
-
const fee = minFee.add(feeFromGasUsed);
|
43890
44235
|
return {
|
43891
|
-
fee,
|
43892
44236
|
minFee,
|
43893
44237
|
maxFee,
|
43894
|
-
|
44238
|
+
fee: maxFee
|
43895
44239
|
};
|
43896
44240
|
};
|
43897
44241
|
|
@@ -44445,7 +44789,9 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44445
44789
|
gqlTransactionStatus,
|
44446
44790
|
abiMap = {},
|
44447
44791
|
maxInputs,
|
44448
|
-
gasCosts
|
44792
|
+
gasCosts,
|
44793
|
+
maxGasPerTx,
|
44794
|
+
gasPrice
|
44449
44795
|
} = params;
|
44450
44796
|
const gasUsed = getGasUsedFromReceipts(receipts);
|
44451
44797
|
const rawPayload = hexlify(transactionBytes);
|
@@ -44459,11 +44805,14 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44459
44805
|
maxInputs
|
44460
44806
|
});
|
44461
44807
|
const typeName = getTransactionTypeName(transaction.type);
|
44808
|
+
const tip = bn(transaction.policies?.find((policy) => policy.type === PolicyType.Tip)?.data);
|
44462
44809
|
const { fee } = calculateTransactionFee({
|
44463
|
-
|
44810
|
+
gasPrice,
|
44464
44811
|
rawPayload,
|
44812
|
+
tip,
|
44465
44813
|
consensusParameters: {
|
44466
44814
|
gasCosts,
|
44815
|
+
maxGasPerTx,
|
44467
44816
|
feeParams: {
|
44468
44817
|
gasPerByte,
|
44469
44818
|
gasPriceFactor
|
@@ -44599,8 +44948,13 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44599
44948
|
const decodedTransaction = this.decodeTransaction(
|
44600
44949
|
transaction
|
44601
44950
|
);
|
44602
|
-
|
44603
|
-
|
44951
|
+
let txReceipts = [];
|
44952
|
+
if (transaction?.status && "receipts" in transaction.status) {
|
44953
|
+
txReceipts = transaction.status.receipts;
|
44954
|
+
}
|
44955
|
+
const receipts = txReceipts.map(processGqlReceipt) || [];
|
44956
|
+
const { gasPerByte, gasPriceFactor, gasCosts, maxGasPerTx } = this.provider.getGasConfig();
|
44957
|
+
const gasPrice = await this.provider.getLatestGasPrice();
|
44604
44958
|
const maxInputs = this.provider.getChain().consensusParameters.maxInputs;
|
44605
44959
|
const transactionSummary = assembleTransactionSummary({
|
44606
44960
|
id: this.id,
|
@@ -44612,7 +44966,9 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44612
44966
|
gasPriceFactor,
|
44613
44967
|
abiMap: contractsAbiMap,
|
44614
44968
|
maxInputs,
|
44615
|
-
gasCosts
|
44969
|
+
gasCosts,
|
44970
|
+
maxGasPerTx,
|
44971
|
+
gasPrice
|
44616
44972
|
});
|
44617
44973
|
return transactionSummary;
|
44618
44974
|
}
|
@@ -44761,7 +45117,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44761
45117
|
gasCosts,
|
44762
45118
|
latestBlock: {
|
44763
45119
|
id: latestBlock.id,
|
44764
|
-
height: bn(latestBlock.
|
45120
|
+
height: bn(latestBlock.height),
|
44765
45121
|
time: latestBlock.header.time,
|
44766
45122
|
transactions: latestBlock.transactions.map((i) => ({
|
44767
45123
|
id: i.id
|
@@ -44855,10 +45211,8 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44855
45211
|
* Returns some helpful parameters related to gas fees.
|
44856
45212
|
*/
|
44857
45213
|
getGasConfig() {
|
44858
|
-
const { minGasPrice } = this.getNode();
|
44859
45214
|
const { maxGasPerTx, maxGasPerPredicate, gasPriceFactor, gasPerByte, gasCosts } = this.getChain().consensusParameters;
|
44860
45215
|
return {
|
44861
|
-
minGasPrice,
|
44862
45216
|
maxGasPerTx,
|
44863
45217
|
maxGasPerPredicate,
|
44864
45218
|
gasPriceFactor,
|
@@ -44956,7 +45310,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44956
45310
|
*/
|
44957
45311
|
async getBlockNumber() {
|
44958
45312
|
const { chain } = await this.operations.getChain();
|
44959
|
-
return bn(chain.latestBlock.
|
45313
|
+
return bn(chain.latestBlock.height, 10);
|
44960
45314
|
}
|
44961
45315
|
/**
|
44962
45316
|
* Returns the chain information.
|
@@ -44968,11 +45322,9 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
44968
45322
|
const processedNodeInfo = {
|
44969
45323
|
maxDepth: bn(nodeInfo.maxDepth),
|
44970
45324
|
maxTx: bn(nodeInfo.maxTx),
|
44971
|
-
minGasPrice: bn(nodeInfo.minGasPrice),
|
44972
45325
|
nodeVersion: nodeInfo.nodeVersion,
|
44973
45326
|
utxoValidation: nodeInfo.utxoValidation,
|
44974
|
-
vmBacktrace: nodeInfo.vmBacktrace
|
44975
|
-
peers: nodeInfo.peers
|
45327
|
+
vmBacktrace: nodeInfo.vmBacktrace
|
44976
45328
|
};
|
44977
45329
|
_Provider.nodeInfoCache[this.url] = processedNodeInfo;
|
44978
45330
|
return processedNodeInfo;
|
@@ -45058,14 +45410,13 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45058
45410
|
return this.estimateTxDependencies(transactionRequest);
|
45059
45411
|
}
|
45060
45412
|
const encodedTransaction = hexlify(transactionRequest.toTransactionBytes());
|
45061
|
-
const { dryRun:
|
45062
|
-
encodedTransaction,
|
45413
|
+
const { dryRun: dryRunStatuses } = await this.operations.dryRun({
|
45414
|
+
encodedTransactions: encodedTransaction,
|
45063
45415
|
utxoValidation: utxoValidation || false
|
45064
45416
|
});
|
45065
|
-
const receipts =
|
45066
|
-
|
45067
|
-
|
45068
|
-
};
|
45417
|
+
const [{ receipts: rawReceipts, status }] = dryRunStatuses;
|
45418
|
+
const receipts = rawReceipts.map(processGqlReceipt);
|
45419
|
+
return { receipts, dryrunStatus: status };
|
45069
45420
|
}
|
45070
45421
|
/**
|
45071
45422
|
* Verifies whether enough gas is available to complete transaction.
|
@@ -45104,9 +45455,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45104
45455
|
* If there are missing variable outputs,
|
45105
45456
|
* `addVariableOutputs` is called on the transaction.
|
45106
45457
|
*
|
45107
|
-
* @privateRemarks
|
45108
|
-
* TODO: Investigate support for missing contract IDs
|
45109
|
-
* TODO: Add support for missing output messages
|
45110
45458
|
*
|
45111
45459
|
* @param transactionRequest - The transaction request object.
|
45112
45460
|
* @returns A promise.
|
@@ -45119,16 +45467,19 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45119
45467
|
missingContractIds: []
|
45120
45468
|
};
|
45121
45469
|
}
|
45122
|
-
await this.estimatePredicates(transactionRequest);
|
45123
45470
|
let receipts = [];
|
45124
45471
|
const missingContractIds = [];
|
45125
45472
|
let outputVariables = 0;
|
45473
|
+
let dryrunStatus;
|
45126
45474
|
for (let attempt = 0; attempt < MAX_RETRIES; attempt++) {
|
45127
|
-
const {
|
45128
|
-
|
45475
|
+
const {
|
45476
|
+
dryRun: [{ receipts: rawReceipts, status }]
|
45477
|
+
} = await this.operations.dryRun({
|
45478
|
+
encodedTransactions: [hexlify(transactionRequest.toTransactionBytes())],
|
45129
45479
|
utxoValidation: false
|
45130
45480
|
});
|
45131
|
-
receipts =
|
45481
|
+
receipts = rawReceipts.map(processGqlReceipt);
|
45482
|
+
dryrunStatus = status;
|
45132
45483
|
const { missingOutputVariables, missingOutputContractIds } = getReceiptsWithMissingData(receipts);
|
45133
45484
|
const hasMissingOutputs = missingOutputVariables.length !== 0 || missingOutputContractIds.length !== 0;
|
45134
45485
|
if (hasMissingOutputs) {
|
@@ -45138,6 +45489,10 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45138
45489
|
transactionRequest.addContractInputAndOutput(Address.fromString(contractId));
|
45139
45490
|
missingContractIds.push(contractId);
|
45140
45491
|
});
|
45492
|
+
const { maxFee } = await this.estimateTxGasAndFee({
|
45493
|
+
transactionRequest
|
45494
|
+
});
|
45495
|
+
transactionRequest.maxFee = maxFee;
|
45141
45496
|
} else {
|
45142
45497
|
break;
|
45143
45498
|
}
|
@@ -45145,7 +45500,139 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45145
45500
|
return {
|
45146
45501
|
receipts,
|
45147
45502
|
outputVariables,
|
45148
|
-
missingContractIds
|
45503
|
+
missingContractIds,
|
45504
|
+
dryrunStatus
|
45505
|
+
};
|
45506
|
+
}
|
45507
|
+
/**
|
45508
|
+
* Dry runs multiple transactions and checks for missing dependencies in batches.
|
45509
|
+
*
|
45510
|
+
* Transactions are dry run in batches. After each dry run, transactions requiring
|
45511
|
+
* further modifications are identified. The method iteratively updates these transactions
|
45512
|
+
* and performs subsequent dry runs until all dependencies for each transaction are satisfied.
|
45513
|
+
*
|
45514
|
+
* @param transactionRequests - Array of transaction request objects.
|
45515
|
+
* @returns A promise that resolves to an array of results for each transaction.
|
45516
|
+
*/
|
45517
|
+
async estimateMultipleTxDependencies(transactionRequests) {
|
45518
|
+
const results = transactionRequests.map(() => ({
|
45519
|
+
receipts: [],
|
45520
|
+
outputVariables: 0,
|
45521
|
+
missingContractIds: [],
|
45522
|
+
dryrunStatus: void 0
|
45523
|
+
}));
|
45524
|
+
const allRequests = clone_default(transactionRequests);
|
45525
|
+
const serializedTransactionsMap = /* @__PURE__ */ new Map();
|
45526
|
+
allRequests.forEach((req, index) => {
|
45527
|
+
if (req.type === TransactionType.Script) {
|
45528
|
+
serializedTransactionsMap.set(index, hexlify(req.toTransactionBytes()));
|
45529
|
+
}
|
45530
|
+
});
|
45531
|
+
let transactionsToProcess = Array.from(serializedTransactionsMap.keys());
|
45532
|
+
let attempt = 0;
|
45533
|
+
while (transactionsToProcess.length > 0 && attempt < MAX_RETRIES) {
|
45534
|
+
const encodedTransactions = transactionsToProcess.map(
|
45535
|
+
(index) => serializedTransactionsMap.get(index)
|
45536
|
+
);
|
45537
|
+
const dryRunResults = await this.operations.dryRun({
|
45538
|
+
encodedTransactions,
|
45539
|
+
utxoValidation: false
|
45540
|
+
});
|
45541
|
+
const nextRoundTransactions = [];
|
45542
|
+
for (let i = 0; i < dryRunResults.dryRun.length; i++) {
|
45543
|
+
const currentResultIndex = transactionsToProcess[i];
|
45544
|
+
const { receipts: rawReceipts, status } = dryRunResults.dryRun[i];
|
45545
|
+
results[currentResultIndex].receipts = rawReceipts.map(processGqlReceipt);
|
45546
|
+
results[currentResultIndex].dryrunStatus = status;
|
45547
|
+
const { missingOutputVariables, missingOutputContractIds } = getReceiptsWithMissingData(
|
45548
|
+
results[currentResultIndex].receipts
|
45549
|
+
);
|
45550
|
+
const hasMissingOutputs = missingOutputVariables.length > 0 || missingOutputContractIds.length > 0;
|
45551
|
+
const requestToProcess = allRequests[currentResultIndex];
|
45552
|
+
if (hasMissingOutputs && requestToProcess?.type === TransactionType.Script) {
|
45553
|
+
results[currentResultIndex].outputVariables += missingOutputVariables.length;
|
45554
|
+
requestToProcess.addVariableOutputs(missingOutputVariables.length);
|
45555
|
+
missingOutputContractIds.forEach(({ contractId }) => {
|
45556
|
+
requestToProcess.addContractInputAndOutput(Address.fromString(contractId));
|
45557
|
+
results[currentResultIndex].missingContractIds.push(contractId);
|
45558
|
+
});
|
45559
|
+
const { maxFee } = await this.estimateTxGasAndFee({
|
45560
|
+
transactionRequest: requestToProcess
|
45561
|
+
});
|
45562
|
+
requestToProcess.maxFee = maxFee;
|
45563
|
+
serializedTransactionsMap.set(
|
45564
|
+
currentResultIndex,
|
45565
|
+
hexlify(requestToProcess.toTransactionBytes())
|
45566
|
+
);
|
45567
|
+
nextRoundTransactions.push(currentResultIndex);
|
45568
|
+
allRequests[currentResultIndex] = requestToProcess;
|
45569
|
+
}
|
45570
|
+
}
|
45571
|
+
transactionsToProcess = nextRoundTransactions;
|
45572
|
+
attempt += 1;
|
45573
|
+
}
|
45574
|
+
return results;
|
45575
|
+
}
|
45576
|
+
async dryRunMultipleTransactions(transactionRequests, { utxoValidation, estimateTxDependencies = true } = {}) {
|
45577
|
+
if (estimateTxDependencies) {
|
45578
|
+
return this.estimateMultipleTxDependencies(transactionRequests);
|
45579
|
+
}
|
45580
|
+
const encodedTransactions = transactionRequests.map((tx) => hexlify(tx.toTransactionBytes()));
|
45581
|
+
const { dryRun: dryRunStatuses } = await this.operations.dryRun({
|
45582
|
+
encodedTransactions,
|
45583
|
+
utxoValidation: utxoValidation || false
|
45584
|
+
});
|
45585
|
+
const results = dryRunStatuses.map(({ receipts: rawReceipts, status }) => {
|
45586
|
+
const receipts = rawReceipts.map(processGqlReceipt);
|
45587
|
+
return { receipts, dryrunStatus: status };
|
45588
|
+
});
|
45589
|
+
return results;
|
45590
|
+
}
|
45591
|
+
/**
|
45592
|
+
* Estimates the transaction gas and fee based on the provided transaction request.
|
45593
|
+
* @param transactionRequest - The transaction request object.
|
45594
|
+
* @returns An object containing the estimated minimum gas, minimum fee, maximum gas, and maximum fee.
|
45595
|
+
*/
|
45596
|
+
async estimateTxGasAndFee(params) {
|
45597
|
+
const { transactionRequest } = params;
|
45598
|
+
let { gasPrice } = params;
|
45599
|
+
const chainInfo = this.getChain();
|
45600
|
+
const { gasPriceFactor, maxGasPerTx } = this.getGasConfig();
|
45601
|
+
const minGas = transactionRequest.calculateMinGas(chainInfo);
|
45602
|
+
if (!gasPrice) {
|
45603
|
+
gasPrice = await this.estimateGasPrice(10);
|
45604
|
+
}
|
45605
|
+
const minFee = calculateGasFee({
|
45606
|
+
gasPrice: bn(gasPrice),
|
45607
|
+
gas: minGas,
|
45608
|
+
priceFactor: gasPriceFactor,
|
45609
|
+
tip: transactionRequest.tip
|
45610
|
+
}).add(1);
|
45611
|
+
let gasLimit = bn(0);
|
45612
|
+
if (transactionRequest.type === TransactionType.Script) {
|
45613
|
+
gasLimit = transactionRequest.gasLimit;
|
45614
|
+
if (transactionRequest.gasLimit.eq(0)) {
|
45615
|
+
transactionRequest.gasLimit = minGas;
|
45616
|
+
transactionRequest.gasLimit = maxGasPerTx.sub(
|
45617
|
+
transactionRequest.calculateMaxGas(chainInfo, minGas)
|
45618
|
+
);
|
45619
|
+
gasLimit = transactionRequest.gasLimit;
|
45620
|
+
}
|
45621
|
+
}
|
45622
|
+
const maxGas = transactionRequest.calculateMaxGas(chainInfo, minGas);
|
45623
|
+
const maxFee = calculateGasFee({
|
45624
|
+
gasPrice: bn(gasPrice),
|
45625
|
+
gas: maxGas,
|
45626
|
+
priceFactor: gasPriceFactor,
|
45627
|
+
tip: transactionRequest.tip
|
45628
|
+
}).add(1);
|
45629
|
+
return {
|
45630
|
+
minGas,
|
45631
|
+
minFee,
|
45632
|
+
maxGas,
|
45633
|
+
maxFee,
|
45634
|
+
gasPrice,
|
45635
|
+
gasLimit
|
45149
45636
|
};
|
45150
45637
|
}
|
45151
45638
|
/**
|
@@ -45163,15 +45650,17 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45163
45650
|
if (estimateTxDependencies) {
|
45164
45651
|
return this.estimateTxDependencies(transactionRequest);
|
45165
45652
|
}
|
45166
|
-
const
|
45167
|
-
const { dryRun:
|
45168
|
-
|
45653
|
+
const encodedTransactions = [hexlify(transactionRequest.toTransactionBytes())];
|
45654
|
+
const { dryRun: dryRunStatuses } = await this.operations.dryRun({
|
45655
|
+
encodedTransactions,
|
45169
45656
|
utxoValidation: true
|
45170
45657
|
});
|
45171
|
-
const
|
45172
|
-
|
45173
|
-
receipts
|
45174
|
-
|
45658
|
+
const callResult = dryRunStatuses.map((dryRunStatus) => {
|
45659
|
+
const { id, receipts, status } = dryRunStatus;
|
45660
|
+
const processedReceipts = receipts.map(processGqlReceipt);
|
45661
|
+
return { id, receipts: processedReceipts, status };
|
45662
|
+
});
|
45663
|
+
return { receipts: callResult[0].receipts };
|
45175
45664
|
}
|
45176
45665
|
/**
|
45177
45666
|
* Returns a transaction cost to enable user
|
@@ -45188,80 +45677,79 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45188
45677
|
* @param tolerance - The tolerance to add on top of the gasUsed.
|
45189
45678
|
* @returns A promise that resolves to the transaction cost object.
|
45190
45679
|
*/
|
45191
|
-
async getTransactionCost(transactionRequestLike,
|
45192
|
-
estimateTxDependencies = true,
|
45193
|
-
estimatePredicates = true,
|
45194
|
-
resourcesOwner,
|
45195
|
-
signatureCallback
|
45196
|
-
} = {}) {
|
45680
|
+
async getTransactionCost(transactionRequestLike, { resourcesOwner, signatureCallback, quantitiesToContract = [] } = {}) {
|
45197
45681
|
const txRequestClone = clone_default(transactionRequestify(transactionRequestLike));
|
45198
|
-
const chainInfo = this.getChain();
|
45199
|
-
const { gasPriceFactor, minGasPrice, maxGasPerTx } = this.getGasConfig();
|
45200
|
-
const gasPrice = max(txRequestClone.gasPrice, minGasPrice);
|
45201
45682
|
const isScriptTransaction = txRequestClone.type === TransactionType.Script;
|
45202
45683
|
const coinOutputsQuantities = txRequestClone.getCoinOutputsQuantities();
|
45203
|
-
const allQuantities = mergeQuantities(coinOutputsQuantities,
|
45684
|
+
const allQuantities = mergeQuantities(coinOutputsQuantities, quantitiesToContract);
|
45204
45685
|
txRequestClone.fundWithFakeUtxos(allQuantities, resourcesOwner?.address);
|
45205
|
-
|
45206
|
-
|
45207
|
-
|
45208
|
-
|
45209
|
-
|
45210
|
-
|
45211
|
-
}
|
45212
|
-
await this.estimatePredicates(txRequestClone);
|
45686
|
+
txRequestClone.maxFee = bn(0);
|
45687
|
+
if (isScriptTransaction) {
|
45688
|
+
txRequestClone.gasLimit = bn(0);
|
45689
|
+
}
|
45690
|
+
if (resourcesOwner && "populateTransactionPredicateData" in resourcesOwner) {
|
45691
|
+
resourcesOwner.populateTransactionPredicateData(txRequestClone);
|
45213
45692
|
}
|
45693
|
+
const signedRequest = clone_default(txRequestClone);
|
45694
|
+
let addedSignatures = 0;
|
45214
45695
|
if (signatureCallback && isScriptTransaction) {
|
45215
|
-
|
45696
|
+
const lengthBefore = signedRequest.witnesses.length;
|
45697
|
+
await signatureCallback(signedRequest);
|
45698
|
+
addedSignatures = signedRequest.witnesses.length - lengthBefore;
|
45216
45699
|
}
|
45217
|
-
|
45218
|
-
|
45700
|
+
await this.estimatePredicates(signedRequest);
|
45701
|
+
let { maxFee, maxGas, minFee, minGas, gasPrice, gasLimit } = await this.estimateTxGasAndFee({
|
45702
|
+
transactionRequest: signedRequest
|
45703
|
+
});
|
45219
45704
|
let receipts = [];
|
45220
45705
|
let missingContractIds = [];
|
45221
45706
|
let outputVariables = 0;
|
45222
|
-
|
45223
|
-
|
45224
|
-
|
45707
|
+
let gasUsed = bn(0);
|
45708
|
+
txRequestClone.updatePredicateGasUsed(signedRequest.inputs);
|
45709
|
+
txRequestClone.maxFee = maxFee;
|
45710
|
+
if (isScriptTransaction) {
|
45711
|
+
txRequestClone.gasLimit = gasLimit;
|
45712
|
+
if (signatureCallback) {
|
45713
|
+
await signatureCallback(txRequestClone);
|
45714
|
+
}
|
45225
45715
|
const result = await this.estimateTxDependencies(txRequestClone);
|
45226
45716
|
receipts = result.receipts;
|
45227
45717
|
outputVariables = result.outputVariables;
|
45228
45718
|
missingContractIds = result.missingContractIds;
|
45719
|
+
gasUsed = isScriptTransaction ? getGasUsedFromReceipts(receipts) : gasUsed;
|
45720
|
+
txRequestClone.gasLimit = gasUsed;
|
45721
|
+
({ maxFee, maxGas, minFee, minGas, gasPrice } = await this.estimateTxGasAndFee({
|
45722
|
+
transactionRequest: txRequestClone,
|
45723
|
+
gasPrice
|
45724
|
+
}));
|
45229
45725
|
}
|
45230
|
-
const gasUsed = isScriptTransaction ? getGasUsedFromReceipts(receipts) : minGas;
|
45231
|
-
const usedFee = calculatePriceWithFactor(
|
45232
|
-
gasUsed,
|
45233
|
-
gasPrice,
|
45234
|
-
gasPriceFactor
|
45235
|
-
).normalizeZeroToOne();
|
45236
|
-
const minFee = calculatePriceWithFactor(minGas, gasPrice, gasPriceFactor).normalizeZeroToOne();
|
45237
|
-
const maxFee = calculatePriceWithFactor(maxGas, gasPrice, gasPriceFactor).normalizeZeroToOne();
|
45238
45726
|
return {
|
45239
45727
|
requiredQuantities: allQuantities,
|
45240
45728
|
receipts,
|
45241
45729
|
gasUsed,
|
45242
|
-
minGasPrice,
|
45243
45730
|
gasPrice,
|
45244
45731
|
minGas,
|
45245
45732
|
maxGas,
|
45246
|
-
usedFee,
|
45247
45733
|
minFee,
|
45248
45734
|
maxFee,
|
45249
|
-
estimatedInputs: txRequestClone.inputs,
|
45250
45735
|
outputVariables,
|
45251
|
-
missingContractIds
|
45736
|
+
missingContractIds,
|
45737
|
+
addedSignatures,
|
45738
|
+
estimatedPredicates: txRequestClone.inputs
|
45252
45739
|
};
|
45253
45740
|
}
|
45254
|
-
async getResourcesForTransaction(owner, transactionRequestLike,
|
45741
|
+
async getResourcesForTransaction(owner, transactionRequestLike, quantitiesToContract = []) {
|
45255
45742
|
const ownerAddress = Address.fromAddressOrString(owner);
|
45256
45743
|
const transactionRequest = transactionRequestify(clone_default(transactionRequestLike));
|
45257
|
-
const transactionCost = await this.getTransactionCost(transactionRequest,
|
45744
|
+
const transactionCost = await this.getTransactionCost(transactionRequest, {
|
45745
|
+
quantitiesToContract
|
45746
|
+
});
|
45258
45747
|
transactionRequest.addResources(
|
45259
45748
|
await this.getResourcesToSpend(ownerAddress, transactionCost.requiredQuantities)
|
45260
45749
|
);
|
45261
|
-
const { requiredQuantities, ...txCost } = await this.getTransactionCost(
|
45262
|
-
|
45263
|
-
|
45264
|
-
);
|
45750
|
+
const { requiredQuantities, ...txCost } = await this.getTransactionCost(transactionRequest, {
|
45751
|
+
quantitiesToContract
|
45752
|
+
});
|
45265
45753
|
const resources = await this.getResourcesToSpend(ownerAddress, requiredQuantities);
|
45266
45754
|
return {
|
45267
45755
|
resources,
|
@@ -45285,7 +45773,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45285
45773
|
assetId: coin.assetId,
|
45286
45774
|
amount: bn(coin.amount),
|
45287
45775
|
owner: Address.fromAddressOrString(coin.owner),
|
45288
|
-
maturity: bn(coin.maturity).toNumber(),
|
45289
45776
|
blockCreated: bn(coin.blockCreated),
|
45290
45777
|
txCreatedIdx: bn(coin.txCreatedIdx)
|
45291
45778
|
}));
|
@@ -45337,7 +45824,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45337
45824
|
amount: bn(coin.amount),
|
45338
45825
|
assetId: coin.assetId,
|
45339
45826
|
owner: Address.fromAddressOrString(coin.owner),
|
45340
|
-
maturity: bn(coin.maturity).toNumber(),
|
45341
45827
|
blockCreated: bn(coin.blockCreated),
|
45342
45828
|
txCreatedIdx: bn(coin.txCreatedIdx)
|
45343
45829
|
};
|
@@ -45370,7 +45856,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45370
45856
|
}
|
45371
45857
|
return {
|
45372
45858
|
id: block2.id,
|
45373
|
-
height: bn(block2.
|
45859
|
+
height: bn(block2.height),
|
45374
45860
|
time: block2.header.time,
|
45375
45861
|
transactionIds: block2.transactions.map((tx) => tx.id)
|
45376
45862
|
};
|
@@ -45385,7 +45871,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45385
45871
|
const { blocks: fetchedData } = await this.operations.getBlocks(params);
|
45386
45872
|
const blocks = fetchedData.edges.map(({ node: block2 }) => ({
|
45387
45873
|
id: block2.id,
|
45388
|
-
height: bn(block2.
|
45874
|
+
height: bn(block2.height),
|
45389
45875
|
time: block2.header.time,
|
45390
45876
|
transactionIds: block2.transactions.map((tx) => tx.id)
|
45391
45877
|
}));
|
@@ -45412,7 +45898,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45412
45898
|
}
|
45413
45899
|
return {
|
45414
45900
|
id: block2.id,
|
45415
|
-
height: bn(block2.
|
45901
|
+
height: bn(block2.height, 10),
|
45416
45902
|
time: block2.header.time,
|
45417
45903
|
transactionIds: block2.transactions.map((tx) => tx.id),
|
45418
45904
|
transactions: block2.transactions.map(
|
@@ -45592,8 +46078,11 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45592
46078
|
prevRoot: messageBlockHeader.prevRoot,
|
45593
46079
|
time: messageBlockHeader.time,
|
45594
46080
|
applicationHash: messageBlockHeader.applicationHash,
|
45595
|
-
|
45596
|
-
|
46081
|
+
messageReceiptCount: bn(messageBlockHeader.messageReceiptCount),
|
46082
|
+
messageOutboxRoot: messageBlockHeader.messageOutboxRoot,
|
46083
|
+
consensusParametersVersion: messageBlockHeader.consensusParametersVersion,
|
46084
|
+
eventInboxRoot: messageBlockHeader.eventInboxRoot,
|
46085
|
+
stateTransitionBytecodeVersion: messageBlockHeader.stateTransitionBytecodeVersion
|
45597
46086
|
},
|
45598
46087
|
commitBlockHeader: {
|
45599
46088
|
id: commitBlockHeader.id,
|
@@ -45604,8 +46093,11 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45604
46093
|
prevRoot: commitBlockHeader.prevRoot,
|
45605
46094
|
time: commitBlockHeader.time,
|
45606
46095
|
applicationHash: commitBlockHeader.applicationHash,
|
45607
|
-
|
45608
|
-
|
46096
|
+
messageReceiptCount: bn(commitBlockHeader.messageReceiptCount),
|
46097
|
+
messageOutboxRoot: commitBlockHeader.messageOutboxRoot,
|
46098
|
+
consensusParametersVersion: commitBlockHeader.consensusParametersVersion,
|
46099
|
+
eventInboxRoot: commitBlockHeader.eventInboxRoot,
|
46100
|
+
stateTransitionBytecodeVersion: commitBlockHeader.stateTransitionBytecodeVersion
|
45609
46101
|
},
|
45610
46102
|
sender: Address.fromAddressOrString(sender),
|
45611
46103
|
recipient: Address.fromAddressOrString(recipient),
|
@@ -45614,6 +46106,16 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45614
46106
|
data
|
45615
46107
|
};
|
45616
46108
|
}
|
46109
|
+
async getLatestGasPrice() {
|
46110
|
+
const { latestGasPrice } = await this.operations.getLatestGasPrice();
|
46111
|
+
return bn(latestGasPrice.gasPrice);
|
46112
|
+
}
|
46113
|
+
async estimateGasPrice(blockHorizon) {
|
46114
|
+
const { estimateGasPrice } = await this.operations.estimateGasPrice({
|
46115
|
+
blockHorizon: String(blockHorizon)
|
46116
|
+
});
|
46117
|
+
return bn(estimateGasPrice.gasPrice);
|
46118
|
+
}
|
45617
46119
|
/**
|
45618
46120
|
* Returns Message Proof for given transaction id and the message id from MessageOut receipt.
|
45619
46121
|
*
|
@@ -45897,36 +46399,33 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45897
46399
|
* @param fee - The estimated transaction fee.
|
45898
46400
|
* @returns A promise that resolves when the resources are added to the transaction.
|
45899
46401
|
*/
|
45900
|
-
async fund(request,
|
45901
|
-
const
|
46402
|
+
async fund(request, params) {
|
46403
|
+
const { addedSignatures, estimatedPredicates, maxFee: fee, requiredQuantities } = params;
|
46404
|
+
const txRequest = request;
|
46405
|
+
const requiredQuantitiesWithFee = addAmountToCoinQuantities({
|
45902
46406
|
amount: bn(fee),
|
45903
46407
|
assetId: BaseAssetId,
|
45904
|
-
coinQuantities
|
46408
|
+
coinQuantities: requiredQuantities
|
45905
46409
|
});
|
45906
46410
|
const quantitiesDict = {};
|
45907
|
-
|
46411
|
+
requiredQuantitiesWithFee.forEach(({ amount, assetId }) => {
|
45908
46412
|
quantitiesDict[assetId] = {
|
45909
46413
|
required: amount,
|
45910
46414
|
owned: bn(0)
|
45911
46415
|
};
|
45912
46416
|
});
|
45913
|
-
|
45914
|
-
const cachedMessages = [];
|
45915
|
-
const owner = this.address.toB256();
|
45916
|
-
request.inputs.forEach((input) => {
|
46417
|
+
txRequest.inputs.forEach((input) => {
|
45917
46418
|
const isResource = "amount" in input;
|
45918
46419
|
if (isResource) {
|
45919
46420
|
const isCoin2 = "owner" in input;
|
45920
46421
|
if (isCoin2) {
|
45921
46422
|
const assetId = String(input.assetId);
|
45922
|
-
if (
|
46423
|
+
if (quantitiesDict[assetId]) {
|
45923
46424
|
const amount = bn(input.amount);
|
45924
46425
|
quantitiesDict[assetId].owned = quantitiesDict[assetId].owned.add(amount);
|
45925
|
-
cachedUtxos.push(input.id);
|
45926
46426
|
}
|
45927
|
-
} else if (input.
|
46427
|
+
} else if (input.amount && quantitiesDict[BaseAssetId]) {
|
45928
46428
|
quantitiesDict[BaseAssetId].owned = quantitiesDict[BaseAssetId].owned.add(input.amount);
|
45929
|
-
cachedMessages.push(input.nonce);
|
45930
46429
|
}
|
45931
46430
|
}
|
45932
46431
|
});
|
@@ -45941,12 +46440,23 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45941
46440
|
});
|
45942
46441
|
const needsToBeFunded = missingQuantities.length;
|
45943
46442
|
if (needsToBeFunded) {
|
45944
|
-
const
|
45945
|
-
|
45946
|
-
|
45947
|
-
|
45948
|
-
|
46443
|
+
const excludedIds = cacheTxInputsFromOwner(txRequest.inputs, this.address.toB256());
|
46444
|
+
const resources = await this.getResourcesToSpend(missingQuantities, excludedIds);
|
46445
|
+
txRequest.addResources(resources);
|
46446
|
+
}
|
46447
|
+
txRequest.shiftPredicateData();
|
46448
|
+
txRequest.updatePredicateGasUsed(estimatedPredicates);
|
46449
|
+
const requestToBeReEstimate = clone_default(txRequest);
|
46450
|
+
if (addedSignatures) {
|
46451
|
+
Array.from({ length: addedSignatures }).forEach(
|
46452
|
+
() => requestToBeReEstimate.addEmptyWitness()
|
46453
|
+
);
|
45949
46454
|
}
|
46455
|
+
const { maxFee } = await this.provider.estimateTxGasAndFee({
|
46456
|
+
transactionRequest: requestToBeReEstimate
|
46457
|
+
});
|
46458
|
+
txRequest.maxFee = maxFee;
|
46459
|
+
return txRequest;
|
45950
46460
|
}
|
45951
46461
|
/**
|
45952
46462
|
* A helper that creates a transfer transaction request and returns it.
|
@@ -45954,28 +46464,25 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
45954
46464
|
* @param destination - The address of the destination.
|
45955
46465
|
* @param amount - The amount of coins to transfer.
|
45956
46466
|
* @param assetId - The asset ID of the coins to transfer.
|
45957
|
-
* @param txParams - The transaction parameters (gasLimit,
|
46467
|
+
* @param txParams - The transaction parameters (gasLimit, tip, maturity, maxFee, witnessLimit).
|
45958
46468
|
* @returns A promise that resolves to the prepared transaction request.
|
45959
46469
|
*/
|
45960
46470
|
async createTransfer(destination, amount, assetId = BaseAssetId, txParams = {}) {
|
45961
|
-
const
|
45962
|
-
const params = { gasPrice: minGasPrice, ...txParams };
|
45963
|
-
const request = new ScriptTransactionRequest(params);
|
46471
|
+
const request = new ScriptTransactionRequest(txParams);
|
45964
46472
|
request.addCoinOutput(Address.fromAddressOrString(destination), amount, assetId);
|
45965
|
-
const
|
46473
|
+
const txCost = await this.provider.getTransactionCost(request, {
|
45966
46474
|
estimateTxDependencies: true,
|
45967
46475
|
resourcesOwner: this
|
45968
46476
|
});
|
45969
|
-
|
45970
|
-
|
45971
|
-
|
45972
|
-
|
45973
|
-
|
45974
|
-
|
45975
|
-
|
45976
|
-
|
45977
|
-
await this.fund(request,
|
45978
|
-
request.updatePredicateInputs(estimatedInputs);
|
46477
|
+
if ("gasLimit" in txParams) {
|
46478
|
+
this.validateGas({
|
46479
|
+
gasUsed: txCost.gasUsed,
|
46480
|
+
gasLimit: request.gasLimit
|
46481
|
+
});
|
46482
|
+
}
|
46483
|
+
request.gasLimit = txCost.gasUsed;
|
46484
|
+
request.maxFee = txCost.maxFee;
|
46485
|
+
await this.fund(request, txCost);
|
45979
46486
|
return request;
|
45980
46487
|
}
|
45981
46488
|
/**
|
@@ -46014,31 +46521,30 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
46014
46521
|
);
|
46015
46522
|
}
|
46016
46523
|
const contractAddress = Address.fromAddressOrString(contractId);
|
46017
|
-
const { minGasPrice } = this.provider.getGasConfig();
|
46018
|
-
const params = { gasPrice: minGasPrice, ...txParams };
|
46019
46524
|
const { script, scriptData } = await assembleTransferToContractScript({
|
46020
46525
|
hexlifiedContractId: contractAddress.toB256(),
|
46021
46526
|
amountToTransfer: bn(amount),
|
46022
46527
|
assetId
|
46023
46528
|
});
|
46024
46529
|
const request = new ScriptTransactionRequest({
|
46025
|
-
...
|
46530
|
+
...txParams,
|
46026
46531
|
script,
|
46027
46532
|
scriptData
|
46028
46533
|
});
|
46029
46534
|
request.addContractInputAndOutput(contractAddress);
|
46030
|
-
const
|
46031
|
-
|
46032
|
-
[{ amount: bn(amount), assetId: String(assetId) }]
|
46033
|
-
);
|
46034
|
-
request.gasLimit = bn(params.gasLimit ?? gasUsed);
|
46035
|
-
this.validateGas({
|
46036
|
-
gasUsed,
|
46037
|
-
gasPrice: request.gasPrice,
|
46038
|
-
gasLimit: request.gasLimit,
|
46039
|
-
minGasPrice
|
46535
|
+
const txCost = await this.provider.getTransactionCost(request, {
|
46536
|
+
resourcesOwner: this,
|
46537
|
+
quantitiesToContract: [{ amount: bn(amount), assetId: String(assetId) }]
|
46040
46538
|
});
|
46041
|
-
|
46539
|
+
if (txParams.gasLimit) {
|
46540
|
+
this.validateGas({
|
46541
|
+
gasUsed: txCost.gasUsed,
|
46542
|
+
gasLimit: request.gasLimit
|
46543
|
+
});
|
46544
|
+
}
|
46545
|
+
request.gasLimit = txCost.gasUsed;
|
46546
|
+
request.maxFee = txCost.maxFee;
|
46547
|
+
await this.fund(request, txCost);
|
46042
46548
|
return this.sendTransaction(request);
|
46043
46549
|
}
|
46044
46550
|
/**
|
@@ -46050,7 +46556,6 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
46050
46556
|
* @returns A promise that resolves to the transaction response.
|
46051
46557
|
*/
|
46052
46558
|
async withdrawToBaseLayer(recipient, amount, txParams = {}) {
|
46053
|
-
const { minGasPrice } = this.provider.getGasConfig();
|
46054
46559
|
const recipientAddress = Address.fromAddressOrString(recipient);
|
46055
46560
|
const recipientDataArray = arrayify(
|
46056
46561
|
"0x".concat(recipientAddress.toHexString().substring(2).padStart(64, "0"))
|
@@ -46063,21 +46568,19 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
46063
46568
|
...recipientDataArray,
|
46064
46569
|
...amountDataArray
|
46065
46570
|
]);
|
46066
|
-
const params = { script,
|
46571
|
+
const params = { script, ...txParams };
|
46067
46572
|
const request = new ScriptTransactionRequest(params);
|
46068
|
-
const
|
46069
|
-
const
|
46070
|
-
|
46071
|
-
|
46072
|
-
|
46073
|
-
|
46074
|
-
|
46075
|
-
|
46076
|
-
|
46077
|
-
|
46078
|
-
|
46079
|
-
});
|
46080
|
-
await this.fund(request, requiredQuantities, maxFee);
|
46573
|
+
const quantitiesToContract = [{ amount: bn(amount), assetId: BaseAssetId }];
|
46574
|
+
const txCost = await this.provider.getTransactionCost(request, { quantitiesToContract });
|
46575
|
+
if (txParams.gasLimit) {
|
46576
|
+
this.validateGas({
|
46577
|
+
gasUsed: txCost.gasUsed,
|
46578
|
+
gasLimit: request.gasLimit
|
46579
|
+
});
|
46580
|
+
}
|
46581
|
+
request.maxFee = txCost.maxFee;
|
46582
|
+
request.gasLimit = txCost.gasUsed;
|
46583
|
+
await this.fund(request, txCost);
|
46081
46584
|
return this.sendTransaction(request);
|
46082
46585
|
}
|
46083
46586
|
async signMessage(message) {
|
@@ -46135,18 +46638,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
46135
46638
|
}
|
46136
46639
|
return this.provider.simulate(transactionRequest, { estimateTxDependencies: false });
|
46137
46640
|
}
|
46138
|
-
validateGas({
|
46139
|
-
gasUsed,
|
46140
|
-
gasPrice,
|
46141
|
-
gasLimit,
|
46142
|
-
minGasPrice
|
46143
|
-
}) {
|
46144
|
-
if (minGasPrice.gt(gasPrice)) {
|
46145
|
-
throw new FuelError(
|
46146
|
-
ErrorCode.GAS_PRICE_TOO_LOW,
|
46147
|
-
`Gas price '${gasPrice}' is lower than the required: '${minGasPrice}'.`
|
46148
|
-
);
|
46149
|
-
}
|
46641
|
+
validateGas({ gasUsed, gasLimit }) {
|
46150
46642
|
if (gasUsed.gt(gasLimit)) {
|
46151
46643
|
throw new FuelError(
|
46152
46644
|
ErrorCode.GAS_LIMIT_TOO_LOW,
|
@@ -47529,12 +48021,12 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
47529
48021
|
};
|
47530
48022
|
|
47531
48023
|
// ../../node_modules/.pnpm/uuid@9.0.0/node_modules/uuid/dist/esm-node/rng.js
|
47532
|
-
var
|
48024
|
+
var import_crypto17 = __toESM(__require("crypto"));
|
47533
48025
|
var rnds8Pool = new Uint8Array(256);
|
47534
48026
|
var poolPtr = rnds8Pool.length;
|
47535
48027
|
function rng() {
|
47536
48028
|
if (poolPtr > rnds8Pool.length - 16) {
|
47537
|
-
|
48029
|
+
import_crypto17.default.randomFillSync(rnds8Pool);
|
47538
48030
|
poolPtr = 0;
|
47539
48031
|
}
|
47540
48032
|
return rnds8Pool.slice(poolPtr, poolPtr += 16);
|
@@ -47550,9 +48042,9 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
47550
48042
|
}
|
47551
48043
|
|
47552
48044
|
// ../../node_modules/.pnpm/uuid@9.0.0/node_modules/uuid/dist/esm-node/native.js
|
47553
|
-
var
|
48045
|
+
var import_crypto18 = __toESM(__require("crypto"));
|
47554
48046
|
var native_default = {
|
47555
|
-
randomUUID:
|
48047
|
+
randomUUID: import_crypto18.default.randomUUID
|
47556
48048
|
};
|
47557
48049
|
|
47558
48050
|
// ../../node_modules/.pnpm/uuid@9.0.0/node_modules/uuid/dist/esm-node/v4.js
|
@@ -47735,7 +48227,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
47735
48227
|
* @param transactionRequestLike - The transaction request to send.
|
47736
48228
|
* @returns A promise that resolves to the TransactionResponse object.
|
47737
48229
|
*/
|
47738
|
-
async sendTransaction(transactionRequestLike, { estimateTxDependencies =
|
48230
|
+
async sendTransaction(transactionRequestLike, { estimateTxDependencies = false, awaitExecution } = {}) {
|
47739
48231
|
const transactionRequest = transactionRequestify(transactionRequestLike);
|
47740
48232
|
if (estimateTxDependencies) {
|
47741
48233
|
await this.provider.estimateTxDependencies(transactionRequest);
|
@@ -50495,14 +50987,15 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
50495
50987
|
process.env.GENESIS_SECRET || randomBytes22(32),
|
50496
50988
|
wallet.provider
|
50497
50989
|
);
|
50498
|
-
const
|
50499
|
-
|
50500
|
-
|
50501
|
-
|
50502
|
-
gasPrice: minGasPrice
|
50990
|
+
const request = new ScriptTransactionRequest();
|
50991
|
+
quantities.forEach((quantity) => {
|
50992
|
+
const { amount, assetId } = coinQuantityfy(quantity);
|
50993
|
+
request.addCoinOutput(wallet.address, amount, assetId);
|
50503
50994
|
});
|
50504
|
-
|
50505
|
-
|
50995
|
+
const txCost = await genesisWallet.provider.getTransactionCost(request);
|
50996
|
+
request.gasLimit = txCost.gasUsed;
|
50997
|
+
request.maxFee = txCost.maxFee;
|
50998
|
+
await genesisWallet.fund(request, txCost);
|
50506
50999
|
await genesisWallet.sendTransaction(request, { awaitExecution: true });
|
50507
51000
|
};
|
50508
51001
|
|
@@ -50532,7 +51025,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
50532
51025
|
|
50533
51026
|
// src/test-utils/launchNode.ts
|
50534
51027
|
var import_child_process = __require("child_process");
|
50535
|
-
var
|
51028
|
+
var import_crypto22 = __require("crypto");
|
50536
51029
|
var import_fs2 = __require("fs");
|
50537
51030
|
var import_os = __toESM(__require("os"));
|
50538
51031
|
var import_path8 = __toESM(__require("path"));
|
@@ -50581,12 +51074,12 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
50581
51074
|
// eslint-disable-next-line no-async-promise-executor
|
50582
51075
|
new Promise(async (resolve, reject) => {
|
50583
51076
|
const remainingArgs = extractRemainingArgs(args, [
|
50584
|
-
"--
|
51077
|
+
"--snapshot",
|
50585
51078
|
"--consensus-key",
|
50586
51079
|
"--db-type",
|
50587
51080
|
"--poa-instant"
|
50588
51081
|
]);
|
50589
|
-
const chainConfigPath = getFlagValueFromArgs(args, "--
|
51082
|
+
const chainConfigPath = getFlagValueFromArgs(args, "--snapshot");
|
50590
51083
|
const consensusKey = getFlagValueFromArgs(args, "--consensus-key") || defaultConsensusKey;
|
50591
51084
|
const dbTypeFlagValue = getFlagValueFromArgs(args, "--db-type");
|
50592
51085
|
const useInMemoryDb = dbTypeFlagValue === "in-memory" || dbTypeFlagValue === void 0;
|
@@ -50604,37 +51097,55 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
50604
51097
|
})).toString();
|
50605
51098
|
let chainConfigPathToUse;
|
50606
51099
|
const prefix = basePath || import_os.default.tmpdir();
|
50607
|
-
const suffix = basePath ? "" : (0,
|
50608
|
-
const tempDirPath = import_path8.default.join(prefix, ".fuels", suffix);
|
51100
|
+
const suffix = basePath ? "" : (0, import_crypto22.randomUUID)();
|
51101
|
+
const tempDirPath = import_path8.default.join(prefix, ".fuels", suffix, "chainConfigs");
|
50609
51102
|
if (chainConfigPath) {
|
50610
51103
|
chainConfigPathToUse = chainConfigPath;
|
50611
51104
|
} else {
|
50612
51105
|
if (!(0, import_fs2.existsSync)(tempDirPath)) {
|
50613
51106
|
(0, import_fs2.mkdirSync)(tempDirPath, { recursive: true });
|
50614
51107
|
}
|
50615
|
-
|
50616
|
-
|
51108
|
+
let { stateConfigJson } = defaultChainConfigs;
|
51109
|
+
const { chainConfigJson, metadataJson } = defaultChainConfigs;
|
51110
|
+
stateConfigJson = {
|
51111
|
+
...stateConfigJson,
|
51112
|
+
coins: [
|
51113
|
+
...stateConfigJson.coins.map((coin) => ({
|
51114
|
+
...coin,
|
51115
|
+
amount: "18446744073709551615"
|
51116
|
+
}))
|
51117
|
+
],
|
51118
|
+
messages: stateConfigJson.messages.map((message) => ({
|
51119
|
+
...message,
|
51120
|
+
amount: "18446744073709551615"
|
51121
|
+
}))
|
51122
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
51123
|
+
};
|
50617
51124
|
if (!process.env.GENESIS_SECRET) {
|
50618
51125
|
const pk = Signer.generatePrivateKey();
|
50619
51126
|
const signer = new Signer(pk);
|
50620
51127
|
process.env.GENESIS_SECRET = hexlify(pk);
|
50621
|
-
|
50622
|
-
|
50623
|
-
|
50624
|
-
|
50625
|
-
|
50626
|
-
|
50627
|
-
|
50628
|
-
|
50629
|
-
|
50630
|
-
|
50631
|
-
}
|
50632
|
-
]
|
50633
|
-
}
|
50634
|
-
};
|
51128
|
+
stateConfigJson.coins.push({
|
51129
|
+
tx_id: hexlify(randomBytes3(34)),
|
51130
|
+
owner: signer.address.toHexString(),
|
51131
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
51132
|
+
amount: "18446744073709551615",
|
51133
|
+
asset_id: BaseAssetId,
|
51134
|
+
output_index: 0,
|
51135
|
+
tx_pointer_block_height: 0,
|
51136
|
+
tx_pointer_tx_idx: 0
|
51137
|
+
});
|
50635
51138
|
}
|
50636
|
-
|
50637
|
-
|
51139
|
+
let fixedStateConfigJSON = JSON.stringify(stateConfigJson);
|
51140
|
+
const regexMakeNumber = /("amount":)"(\d+)"/gm;
|
51141
|
+
fixedStateConfigJSON = fixedStateConfigJSON.replace(regexMakeNumber, "$1$2");
|
51142
|
+
const chainConfigWritePath = import_path8.default.join(tempDirPath, "chainConfig.json");
|
51143
|
+
const stateConfigWritePath = import_path8.default.join(tempDirPath, "stateConfig.json");
|
51144
|
+
const metadataWritePath = import_path8.default.join(tempDirPath, "metadata.json");
|
51145
|
+
(0, import_fs2.writeFileSync)(chainConfigWritePath, JSON.stringify(chainConfigJson), "utf8");
|
51146
|
+
(0, import_fs2.writeFileSync)(stateConfigWritePath, fixedStateConfigJSON, "utf8");
|
51147
|
+
(0, import_fs2.writeFileSync)(metadataWritePath, JSON.stringify(metadataJson), "utf8");
|
51148
|
+
chainConfigPathToUse = tempDirPath;
|
50638
51149
|
}
|
50639
51150
|
const child = (0, import_child_process.spawn)(
|
50640
51151
|
command,
|
@@ -50643,10 +51154,10 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
50643
51154
|
["--ip", ipToUse],
|
50644
51155
|
["--port", portToUse],
|
50645
51156
|
useInMemoryDb ? ["--db-type", "in-memory"] : ["--db-path", tempDirPath],
|
50646
|
-
["--min-gas-price", "
|
51157
|
+
["--min-gas-price", "1"],
|
50647
51158
|
poaInstant ? ["--poa-instant", "true"] : [],
|
50648
51159
|
["--consensus-key", consensusKey],
|
50649
|
-
["--
|
51160
|
+
["--snapshot", chainConfigPathToUse],
|
50650
51161
|
"--vm-backtrace",
|
50651
51162
|
"--utxo-validation",
|
50652
51163
|
"--debug",
|
@@ -50705,7 +51216,7 @@ ${PANIC_DOC_URL}#variant.${status.reason}`;
|
|
50705
51216
|
walletCount = 10
|
50706
51217
|
} = {}) => {
|
50707
51218
|
const { cleanup: closeNode, ip, port } = await launchNode(launchNodeOptions || {});
|
50708
|
-
const provider = await Provider.create(`http://${ip}:${port}/graphql`);
|
51219
|
+
const provider = await Provider.create(`http://${ip}:${port}/v1/graphql`);
|
50709
51220
|
const wallets = await generateWallets(walletCount, provider);
|
50710
51221
|
const cleanup = () => {
|
50711
51222
|
closeNode();
|