Mistake in contract deploy

Hi! At the time of the contract deploy on latest toolchain

forc deploy --node-url http://beta-3.fuel.network/graphql --gas-price 1 

I get this error

Error: Response errors; Unknown field "messageReceiptCount" on type "Header".; 
Unknown field "messageReceiptRoot" on type "Header".; 
Unknown field "chainId" on type "ConsensusParameters".
``
Can you tell me how to fix it?

My contract link 

hi there! @PaulZhemanov
Please attach the output of

 $ fuelup show

So we can know the version of the toolchain you are working with.

Thanks :palm_tree:


Default host: aarch64-apple-darwin
fuelup home: /Users/master/.fuelup

installed toolchains
--------------------
beta-3-aarch64-apple-darwin
latest-aarch64-apple-darwin (default)
latest-2023-01-18-aarch64-apple-darwin
new-creation

active toolchain
-----------------
latest-aarch64-apple-darwin (default)
  forc : 0.42.1
    - forc-client
      - forc-deploy : 0.42.1
      - forc-run : 0.42.1
    - forc-doc : 0.42.1
    - forc-explore : 0.28.1
    - forc-fmt : 0.42.1
    - forc-index : 0.18.5
    - forc-lsp : 0.42.1
    - forc-tx : 0.42.1
    - forc-wallet : 0.2.4
  fuel-core : 0.18.3
  fuel-indexer : 0.18.5

fuels versions
---------------
forc : 0.43
forc-wallet : 0.44.0

So the issue is that you are using latest toolchain on beta-3 infra.

Please run

fuelup toolchain install beta-3

and then

fuelup default beta-3

Let me know if it works!

1 Like