@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.

@@ -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(txs: $encodedTransactions, utxoValidation: $utxoValidation) {
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
- devnet: 0,
4890
- testnet: 0
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.devnet,
4947
+ chainId: CHAIN_IDS.fuel.beta5,
4939
4948
  decimals: 9,
4940
- assetId: "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
4949
+ assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
4941
4950
  },
4942
4951
  {
4943
4952
  type: "fuel",
4944
- chainId: CHAIN_IDS.fuel.testnet,
4953
+ chainId: CHAIN_IDS.fuel.devnet,
4945
4954
  decimals: 9,
4946
- assetId: "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
4955
+ assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
4947
4956
  }
4948
4957
  ]
4949
4958
  }