@fuel-ts/account 0.0.0-rc-2143-20240430082529 → 0.0.0-rc-2209-20240430130352
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.global.js +2 -4
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/dist/test-utils/launchNode.d.ts +2 -4
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +3 -6
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +3 -5
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +3 -5
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -15
package/dist/test-utils.mjs
CHANGED
@@ -3738,9 +3738,8 @@ var _Provider = class {
|
|
3738
3738
|
static ensureClientVersionIsSupported(nodeInfo) {
|
3739
3739
|
const { isMajorSupported, isMinorSupported, supportedVersion } = checkFuelCoreVersionCompatibility(nodeInfo.nodeVersion);
|
3740
3740
|
if (!isMajorSupported || !isMinorSupported) {
|
3741
|
-
|
3742
|
-
|
3743
|
-
`Fuel client version: ${nodeInfo.nodeVersion}, Supported version: ${supportedVersion}`
|
3741
|
+
console.warn(
|
3742
|
+
`Unsupported fuel client version: ${nodeInfo.nodeVersion}, Supported version: ${supportedVersion}`
|
3744
3743
|
);
|
3745
3744
|
}
|
3746
3745
|
}
|
@@ -8291,7 +8290,6 @@ var launchNode = async ({
|
|
8291
8290
|
ip,
|
8292
8291
|
port,
|
8293
8292
|
args = [],
|
8294
|
-
fuelCorePath = void 0,
|
8295
8293
|
useSystemFuelCore = false,
|
8296
8294
|
loggingEnabled = true,
|
8297
8295
|
debugEnabled = false,
|
@@ -8312,7 +8310,7 @@ var launchNode = async ({
|
|
8312
8310
|
const poaInstantFlagValue = getFlagValueFromArgs(args, "--poa-instant");
|
8313
8311
|
const poaInstant = poaInstantFlagValue === "true" || poaInstantFlagValue === void 0;
|
8314
8312
|
const graphQLStartSubstring = "Binding GraphQL provider to";
|
8315
|
-
const binPath =
|
8313
|
+
const binPath = findBinPath("fuels-core", __dirname);
|
8316
8314
|
const command = useSystemFuelCore ? "fuel-core" : binPath;
|
8317
8315
|
const ipToUse = ip || "0.0.0.0";
|
8318
8316
|
const portToUse = port || (await getPortPromise({
|