我开始在私有网络上通过平价进入以太坊区块链。我能够通过 Parity UI 在我的私有网络上的开发模式链上配置奇偶校验并执行智能合约的部署,该 UI 还能够调用合约的方法。
我面临的问题与使用 Web3.js 在智能合约中调用函数有关。我能够使用 Web.js 库连接到链;
Web3 = require('web3')
web3 = new Web3('ws://localhost:8546')
mycontract = web3.eth.Contract([{"constant":false,"inputs":[],"name":"greet","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"}],0xEb112542a487941805F7f3a04591F1D6b04D513c)
当我调用下面的方法时;
mycontract.methods.greet().call()
它给了我以下输出,而不是通过智能合约问候函数中编写的承诺对象返回预期的字符串“OK Computer”。
{ [Function: anonymousFunction]
send: { [Function] request: [Function] },
estimateGas: [Function],
encodeABI: [Function] }
智能合约代码:
pragma solidity ^0.4.22;
//Compiler Version: 0.4.22
contract Greeter {
address owner;
constructor() public {
owner = msg.sender;
}
function greet() public returns(string){
return "OK Computer";
}
}