Solidity编译器-HelloWorld智能合约的问题 [英] Solidity compiler - problem with HelloWorld smart contract

查看:458
本文介绍了Solidity编译器-HelloWorld智能合约的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在Enthereum网络上运行我的第一个HelloWorld智能合约。这是我的HelloWorld.sol合同。

Im trying to run my first HelloWorld smart contract on the Enthereum network. This is my HelloWorld.sol contract.

pragma solidity ^0.5.0;

contract HelloWorld {
  bytes32 message;
  constructor (bytes32 myMessage) public {
    message = myMessage;
  }
  function getMessage() public returns(bytes32) {
    return message;
  }
}

当我尝试使用<$ c $进行构建时c> solcjs HelloWorld.sol --bin ,只有一个警告,没有错误。我已经使用npm安装了web3和solc。当我在节点上运行此程序

When I try to build this using solcjs HelloWorld.sol --bin, there is just one Warning and no errors. I have installed web3 and solc using npm. When I run this on a node

var solc = require('solc');
var x = fs.readFileSync('./HelloWorld.sol').toString();
var compiledContract = solc.compile(x);

compiledContract 包含以下内容:

'{"errors":[{"component":"general","formattedMessage":"* Line 1, Column 1\\n  Syntax error: value, object or array expected.\\n* Line 1, Column 2\\n  Extra non-whitespace after JSON value.\\n","message":"* Line 1, Column 1\\n  Syntax error: value, object or array expected.\\n* Line 1, Column 2\\n  Extra non-whitespace after JSON value.\\n","severity":"error","type":"JSONError"}]}'

是问题吗?

推荐答案

问题是,您无法将原始固体智能合约放入 solc.compile()函数。必须有编译器标准输入JSON 。根据我的另一个线程,我找到了以下解决方案:

The problem was, that you I can not put raw solidity smart contract into solc.compile() function. There must be Compiler Standard Input JSON. Based on my another thread I found this solution:

> var Web3 = require('web3');
> var solc = require('solc');
> var web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545'));
> var CONTRACT_FILE = 'HelloWorld.sol'
> var content =fs.readFileSync(CONTRACT_FILE).toString()
> var input = {
  language: 'Solidity',
  sources: {
    [CONTRACT_FILE]: {
      content: content
    }
  },
  settings: {
    outputSelection: {
      '*': {
        '*': ['*']
      }
    }
  }
}

> var compiled = solc.compile(JSON.stringify(input))
> var output = JSON.parse(compiled)
> var abi = output.contracts[CONTRACT_FILE]['HelloWorld'].abi
> var bytecode = output.contracts[CONTRACT_FILE]['HelloWorld'].evm.bytecode.object
> var HelloWorld = new web3.eth.Contract(abi);
> var HelloWorldTx = HelloWorld.deploy({data: bytecode, arguments: [web3.utils.asciiToHex('Hello')]});
> web3.eth.estimateGas(HelloWorldTx).then(console.log); //this does not work, because it can not connect to the localhost:8545. I don't know why.
> HelloWorldTx.send({from: '0x99d54a45f2cd3b9c6443d623003416aaf944338e', gas: 1000000}).then(console.log);

这篇关于Solidity编译器-HelloWorld智能合约的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆