@fuel-ts/account 0.89.0 → 0.89.2

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.

@@ -8644,6 +8644,7 @@ var launchNode = async ({
8644
8644
  const useInMemoryDb = dbTypeFlagValue === "in-memory" || dbTypeFlagValue === void 0;
8645
8645
  const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
8646
8646
  const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
8647
+ const nativeExecutorVersion = getFlagValueFromArgs(args, "--native-executor-version") || "0";
8647
8648
  const graphQLStartSubstring = "Binding GraphQL provider to";
8648
8649
  const command = fuelCorePath ?? "fuel-core";
8649
8650
  const ipToUse = ip || "0.0.0.0";
@@ -8684,7 +8685,7 @@ var launchNode = async ({
8684
8685
  const signer = new Signer(pk);
8685
8686
  process.env.GENESIS_SECRET = (0, import_utils36.hexlify)(pk);
8686
8687
  stateConfigJson.coins.push({
8687
- tx_id: (0, import_utils36.hexlify)((0, import_crypto7.randomBytes)(import_abi_coder7.UTXO_ID_LEN)),
8688
+ tx_id: (0, import_utils36.hexlify)((0, import_crypto7.randomBytes)(import_abi_coder7.BYTES_32)),
8688
8689
  owner: signer.address.toHexString(),
8689
8690
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
8690
8691
  amount: "18446744073709551615",
@@ -8716,6 +8717,7 @@ var launchNode = async ({
8716
8717
  useInMemoryDb ? ["--db-type", "in-memory"] : ["--db-path", tempDirPath],
8717
8718
  ["--min-gas-price", "1"],
8718
8719
  poaInstant ? ["--poa-instant", "true"] : [],
8720
+ ["--native-executor-version", nativeExecutorVersion],
8719
8721
  ["--consensus-key", consensusKey],
8720
8722
  ["--snapshot", snapshotDirToUse],
8721
8723
  "--vm-backtrace",