@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/test-utils.mjs
CHANGED
@@ -304,6 +304,7 @@ var MessageProofFragmentDoc = gql`
|
|
304
304
|
proofIndex
|
305
305
|
}
|
306
306
|
messageBlockHeader {
|
307
|
+
version
|
307
308
|
id
|
308
309
|
daHeight
|
309
310
|
consensusParametersVersion
|
@@ -319,6 +320,7 @@ var MessageProofFragmentDoc = gql`
|
|
319
320
|
applicationHash
|
320
321
|
}
|
321
322
|
commitBlockHeader {
|
323
|
+
version
|
322
324
|
id
|
323
325
|
daHeight
|
324
326
|
consensusParametersVersion
|
@@ -505,6 +507,9 @@ var GasCostsFragmentDoc = gql`
|
|
505
507
|
wqmm
|
506
508
|
xor
|
507
509
|
xori
|
510
|
+
alocDependentCost {
|
511
|
+
...DependentCostFragment
|
512
|
+
}
|
508
513
|
call {
|
509
514
|
...DependentCostFragment
|
510
515
|
}
|
@@ -883,8 +888,12 @@ var GetRelayedTransactionStatusDocument = gql`
|
|
883
888
|
}
|
884
889
|
${RelayedTransactionStatusFragmentDoc}`;
|
885
890
|
var DryRunDocument = gql`
|
886
|
-
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
|
887
|
-
dryRun(
|
891
|
+
mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean, $gasPrice: U64) {
|
892
|
+
dryRun(
|
893
|
+
txs: $encodedTransactions
|
894
|
+
utxoValidation: $utxoValidation
|
895
|
+
gasPrice: $gasPrice
|
896
|
+
) {
|
888
897
|
...dryRunTransactionExecutionStatusFragment
|
889
898
|
}
|
890
899
|
}
|
@@ -4886,8 +4895,8 @@ var CHAIN_IDS = {
|
|
4886
4895
|
foundry: 31337
|
4887
4896
|
},
|
4888
4897
|
fuel: {
|
4889
|
-
|
4890
|
-
|
4898
|
+
beta5: 0,
|
4899
|
+
devnet: 10
|
4891
4900
|
}
|
4892
4901
|
};
|
4893
4902
|
|
@@ -4935,15 +4944,15 @@ var rawAssets = [
|
|
4935
4944
|
},
|
4936
4945
|
{
|
4937
4946
|
type: "fuel",
|
4938
|
-
chainId: CHAIN_IDS.fuel.
|
4947
|
+
chainId: CHAIN_IDS.fuel.beta5,
|
4939
4948
|
decimals: 9,
|
4940
|
-
assetId: "
|
4949
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
4941
4950
|
},
|
4942
4951
|
{
|
4943
4952
|
type: "fuel",
|
4944
|
-
chainId: CHAIN_IDS.fuel.
|
4953
|
+
chainId: CHAIN_IDS.fuel.devnet,
|
4945
4954
|
decimals: 9,
|
4946
|
-
assetId: "
|
4955
|
+
assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
|
4947
4956
|
}
|
4948
4957
|
]
|
4949
4958
|
}
|