npm solc: AssertionError [ERR_ASSERTION]: Invalid callback specified

前端 未结 10 2989
灰色年华
灰色年华 2021-02-19 07:41

I am trying to compile solidity smart contract using npm solc. I tried to follow different examples. Link to example: https://medium.com/coinmonks/how-to-compile-a-solidity-sma

10条回答
  •  无人及你
    2021-02-19 07:45

    This is because of version mismatch of solidity compiler installed during solc package installation and the compiler mentioned in the solidity file.To solve this issue try

    install:

    npm install solc@0.4.25

    in solidity file use :

    pragma solidity^0.4.25;

提交回复
热议问题