Fuel-Ts version warning

Hi

I am using this version of fuel-ts :

"fuels": "0.90.0",

and the below provider:

async init(): Promise<void> {
    this.client = await Provider.create(
      "https://testnet.fuel.network/v1/graphql"
    );
  }

And getting this warning since yesterday:

The Fuel Node that you are trying to connect to is using fuel-core version 0.30.0,
which is not supported by the version of the TS SDK that you are using.
Things may not work as expected.
Supported fuel-core version: 0.27.0.

Is the URL updated ?

1 Like

Hi,

just today we have released v0.90.0 and with it support for fuel-core v0.30.0. That warning indicates that you’re still using v0.89.2. Perhaps you didn’t run pnpm install after setting your fuels version to 0.90.0 in your package.json?

4 Likes

Thanks, i reinstalled the dependencies and it is gone now.

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.