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

@@ -341,6 +341,7 @@ var MessageProofFragmentDoc = import_graphql_tag.default`
341
341
  proofIndex
342
342
  }
343
343
  messageBlockHeader {
344
+ version
344
345
  id
345
346
  daHeight
346
347
  consensusParametersVersion
@@ -356,6 +357,7 @@ var MessageProofFragmentDoc = import_graphql_tag.default`
356
357
  applicationHash
357
358
  }
358
359
  commitBlockHeader {
360
+ version
359
361
  id
360
362
  daHeight
361
363
  consensusParametersVersion
@@ -542,6 +544,9 @@ var GasCostsFragmentDoc = import_graphql_tag.default`
542
544
  wqmm
543
545
  xor
544
546
  xori
547
+ alocDependentCost {
548
+ ...DependentCostFragment
549
+ }
545
550
  call {
546
551
  ...DependentCostFragment
547
552
  }
@@ -920,8 +925,12 @@ var GetRelayedTransactionStatusDocument = import_graphql_tag.default`
920
925
  }
921
926
  ${RelayedTransactionStatusFragmentDoc}`;
922
927
  var DryRunDocument = import_graphql_tag.default`
923
- mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
924
- dryRun(txs: $encodedTransactions, utxoValidation: $utxoValidation) {
928
+ mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean, $gasPrice: U64) {
929
+ dryRun(
930
+ txs: $encodedTransactions
931
+ utxoValidation: $utxoValidation
932
+ gasPrice: $gasPrice
933
+ ) {
925
934
  ...dryRunTransactionExecutionStatusFragment
926
935
  }
927
936
  }
@@ -4904,8 +4913,8 @@ var CHAIN_IDS = {
4904
4913
  foundry: 31337
4905
4914
  },
4906
4915
  fuel: {
4907
- devnet: 0,
4908
- testnet: 0
4916
+ beta5: 0,
4917
+ devnet: 10
4909
4918
  }
4910
4919
  };
4911
4920
 
@@ -4953,15 +4962,15 @@ var rawAssets = [
4953
4962
  },
4954
4963
  {
4955
4964
  type: "fuel",
4956
- chainId: CHAIN_IDS.fuel.devnet,
4965
+ chainId: CHAIN_IDS.fuel.beta5,
4957
4966
  decimals: 9,
4958
- assetId: "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
4967
+ assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
4959
4968
  },
4960
4969
  {
4961
4970
  type: "fuel",
4962
- chainId: CHAIN_IDS.fuel.testnet,
4971
+ chainId: CHAIN_IDS.fuel.devnet,
4963
4972
  decimals: 9,
4964
- assetId: "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
4973
+ assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
4965
4974
  }
4966
4975
  ]
4967
4976
  }