@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/index.js
CHANGED
@@ -3996,9 +3996,8 @@ var _Provider = class {
|
|
3996
3996
|
static ensureClientVersionIsSupported(nodeInfo) {
|
3997
3997
|
const { isMajorSupported, isMinorSupported, supportedVersion } = (0, import_versions.checkFuelCoreVersionCompatibility)(nodeInfo.nodeVersion);
|
3998
3998
|
if (!isMajorSupported || !isMinorSupported) {
|
3999
|
-
|
4000
|
-
|
4001
|
-
`Fuel client version: ${nodeInfo.nodeVersion}, Supported version: ${supportedVersion}`
|
3999
|
+
console.warn(
|
4000
|
+
`Unsupported fuel client version: ${nodeInfo.nodeVersion}, Supported version: ${supportedVersion}`
|
4002
4001
|
);
|
4003
4002
|
}
|
4004
4003
|
}
|