@fuel-ts/account 0.0.0-rc-2432-20240610171540 → 0.0.0-rc-2491-20240611075910
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/dist/configs.d.ts +2 -2
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.global.js +2 -2
- package/dist/configs.global.js.map +1 -1
- package/dist/configs.js +6 -6
- package/dist/configs.js.map +1 -1
- package/dist/configs.mjs +4 -4
- package/dist/configs.mjs.map +1 -1
- package/dist/index.global.js +19 -10
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +18 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -9
- package/dist/index.mjs.map +1 -1
- package/dist/providers/__generated__/operations.d.ts +52 -0
- package/dist/providers/__generated__/operations.d.ts.map +1 -1
- package/dist/providers/chains.d.ts +1 -1
- package/dist/test-utils.global.js +24 -9
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +17 -8
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +17 -8
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/index.js
CHANGED
@@ -470,6 +470,7 @@ var MessageProofFragmentDoc = import_graphql_tag.default`
|
|
470
470
|
proofIndex
|
471
471
|
}
|
472
472
|
messageBlockHeader {
|
473
|
+
version
|
473
474
|
id
|
474
475
|
daHeight
|
475
476
|
consensusParametersVersion
|
@@ -485,6 +486,7 @@ var MessageProofFragmentDoc = import_graphql_tag.default`
|
|
485
486
|
applicationHash
|
486
487
|
}
|
487
488
|
commitBlockHeader {
|
489
|
+
version
|
488
490
|
id
|
489
491
|
daHeight
|
490
492
|
consensusParametersVersion
|
@@ -671,6 +673,9 @@ var GasCostsFragmentDoc = import_graphql_tag.default`
|
|
671
673
|
wqmm
|
672
674
|
xor
|
673
675
|
xori
|
676
|
+
alocDependentCost {
|
677
|
+
...DependentCostFragment
|
678
|
+
}
|
674
679
|
call {
|
675
680
|
...DependentCostFragment
|
676
681
|
}
|
@@ -1049,8 +1054,12 @@ var GetRelayedTransactionStatusDocument = import_graphql_tag.default`
|
|
1049
1054
|
}
|
1050
1055
|
${RelayedTransactionStatusFragmentDoc}`;
|
1051
1056
|
var DryRunDocument = import_graphql_tag.default`
|
1052
|
-
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
|
1053
|
-
dryRun(
|
1057
|
+
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean, $gasPrice: U64) {
|
1058
|
+
dryRun(
|
1059
|
+
txs: $encodedTransactions
|
1060
|
+
utxoValidation: $utxoValidation
|
1061
|
+
gasPrice: $gasPrice
|
1062
|
+
) {
|
1054
1063
|
...dryRunTransactionExecutionStatusFragment
|
1055
1064
|
}
|
1056
1065
|
}
|
@@ -5291,8 +5300,8 @@ var CHAIN_IDS = {
|
|
5291
5300
|
foundry: 31337
|
5292
5301
|
},
|
5293
5302
|
fuel: {
|
5294
|
-
|
5295
|
-
|
5303
|
+
beta5: 0,
|
5304
|
+
devnet: 10
|
5296
5305
|
}
|
5297
5306
|
};
|
5298
5307
|
|
@@ -5302,7 +5311,7 @@ var getDefaultChainId = (networkType) => {
|
|
5302
5311
|
return CHAIN_IDS.eth.sepolia;
|
5303
5312
|
}
|
5304
5313
|
if (networkType === "fuel") {
|
5305
|
-
return CHAIN_IDS.fuel.
|
5314
|
+
return CHAIN_IDS.fuel.devnet;
|
5306
5315
|
}
|
5307
5316
|
return void 0;
|
5308
5317
|
};
|
@@ -5394,15 +5403,15 @@ var rawAssets = [
|
|
5394
5403
|
},
|
5395
5404
|
{
|
5396
5405
|
type: "fuel",
|
5397
|
-
chainId: CHAIN_IDS.fuel.
|
5406
|
+
chainId: CHAIN_IDS.fuel.beta5,
|
5398
5407
|
decimals: 9,
|
5399
|
-
assetId: "
|
5408
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
5400
5409
|
},
|
5401
5410
|
{
|
5402
5411
|
type: "fuel",
|
5403
|
-
chainId: CHAIN_IDS.fuel.
|
5412
|
+
chainId: CHAIN_IDS.fuel.devnet,
|
5404
5413
|
decimals: 9,
|
5405
|
-
assetId: "
|
5414
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
5406
5415
|
}
|
5407
5416
|
]
|
5408
5417
|
}
|