@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/index.mjs CHANGED
@@ -309,6 +309,7 @@ var MessageProofFragmentDoc = gql`
309
309
  proofIndex
310
310
  }
311
311
  messageBlockHeader {
312
+ version
312
313
  id
313
314
  daHeight
314
315
  consensusParametersVersion
@@ -324,6 +325,7 @@ var MessageProofFragmentDoc = gql`
324
325
  applicationHash
325
326
  }
326
327
  commitBlockHeader {
328
+ version
327
329
  id
328
330
  daHeight
329
331
  consensusParametersVersion
@@ -510,6 +512,9 @@ var GasCostsFragmentDoc = gql`
510
512
  wqmm
511
513
  xor
512
514
  xori
515
+ alocDependentCost {
516
+ ...DependentCostFragment
517
+ }
513
518
  call {
514
519
  ...DependentCostFragment
515
520
  }
@@ -888,8 +893,12 @@ var GetRelayedTransactionStatusDocument = gql`
888
893
  }
889
894
  ${RelayedTransactionStatusFragmentDoc}`;
890
895
  var DryRunDocument = gql`
891
- mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean) {
892
- dryRun(txs: $encodedTransactions, utxoValidation: $utxoValidation) {
896
+ mutation dryRun($encodedTransactions: [HexString!]!, $utxoValidation: Boolean, $gasPrice: U64) {
897
+ dryRun(
898
+ txs: $encodedTransactions
899
+ utxoValidation: $utxoValidation
900
+ gasPrice: $gasPrice
901
+ ) {
893
902
  ...dryRunTransactionExecutionStatusFragment
894
903
  }
895
904
  }
@@ -5149,8 +5158,8 @@ var CHAIN_IDS = {
5149
5158
  foundry: 31337
5150
5159
  },
5151
5160
  fuel: {
5152
- devnet: 0,
5153
- testnet: 0
5161
+ beta5: 0,
5162
+ devnet: 10
5154
5163
  }
5155
5164
  };
5156
5165
 
@@ -5160,7 +5169,7 @@ var getDefaultChainId = (networkType) => {
5160
5169
  return CHAIN_IDS.eth.sepolia;
5161
5170
  }
5162
5171
  if (networkType === "fuel") {
5163
- return CHAIN_IDS.fuel.testnet;
5172
+ return CHAIN_IDS.fuel.devnet;
5164
5173
  }
5165
5174
  return void 0;
5166
5175
  };
@@ -5252,15 +5261,15 @@ var rawAssets = [
5252
5261
  },
5253
5262
  {
5254
5263
  type: "fuel",
5255
- chainId: CHAIN_IDS.fuel.devnet,
5264
+ chainId: CHAIN_IDS.fuel.beta5,
5256
5265
  decimals: 9,
5257
- assetId: "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
5266
+ assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
5258
5267
  },
5259
5268
  {
5260
5269
  type: "fuel",
5261
- chainId: CHAIN_IDS.fuel.testnet,
5270
+ chainId: CHAIN_IDS.fuel.devnet,
5262
5271
  decimals: 9,
5263
- assetId: "0xf8f8b6283d7fa5b672b530cbb84fcccb4ff8dc40f8176ef4544ddb1f1952ad07"
5272
+ assetId: "0x0000000000000000000000000000000000000000000000000000000000000000"
5264
5273
  }
5265
5274
  ]
5266
5275
  }