智能合约编译步骤及错误解决
Posted 云灬沙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了智能合约编译步骤及错误解决相关的知识,希望对你有一定的参考价值。
编译合约时出现错误,搜了一些资料,最后发现不是合约的问题,而是solc版本号的问题,现在使用npm安装的话,solc版本号已经到了0.8.4,但是很容易出现错误,还是0.4.X的版本稳定一些
‘{“errors”:[{“component”:“general”,“formattedMessage”:"* Line 1,
Column 2\\n Syntax error: value, object or array expected.\\n* Line 1,
Column 3\\n Extra non-whitespace after JSON value.\\n",“message”:"* Line
1, Column 2\\n Syntax error: value, object or array expected.\\n* Line
1, Column 3\\n Extra non-whitespace after JSON
value.\\n",“severity”:“error”,“type”:“JSONError”}]}’
编译合约的步骤:
- 使用
node
命令进入控制台 var Web3 = require('web3')
var web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"))
web3.isConneted()
//看一下是否连接成功,如果没有的话要启动Ganachevar solc = require('solc')
var code = fs.readFileSync('test.sol').toString()
var compiledCode = solc.compile(code)
compiledCode
//查看结果的时候就会出现上述问题,将版本号调整一下npm uninstall solc
npm install solc@0.4.XX
//亲测22可以
- 同时记得重新引入solc以及调整自己的合约solidity版本号
以上是关于智能合约编译步骤及错误解决的主要内容,如果未能解决你的问题,请参考以下文章