以太坊 Web3.js 无效 JSON RPC 响应:“”

Ethereum Web3.js Invalid JSON RPC response: ""

我正在为以太坊使用 web3.js 模块。执行交易时收到错误响应。

错误:

"Error: Invalid JSON RPC response: ""
    at Object.InvalidResponse (/home/akshay/WS/ethereum/node_modules/web3-core-helpers/src/errors.js:42:16)
    at XMLHttpRequest.request.onreadystatechange (/home/akshay/WS/ethereum/node_modules/web3-providers-http/src/index.js:73:32)
    at XMLHttpRequestEventTarget.dispatchEvent (/home/akshay/WS/ethereum/node_modules/xhr2/lib/xhr2.js:64:18)
    at XMLHttpRequest._setReadyState (/home/akshay/WS/ethereum/node_modules/xhr2/lib/xhr2.js:354:12)
    at XMLHttpRequest._onHttpResponseEnd (/home/akshay/WS/ethereum/node_modules/xhr2/lib/xhr2.js:509:12)
    at IncomingMessage.<anonymous> (/home/akshay/WS/ethereum/node_modules/xhr2/lib/xhr2.js:469:24)
    at emitNone (events.js:111:20)
    at IncomingMessage.emit (events.js:208:7)
    at endReadableNT (_stream_readable.js:1064:12)
    at _combinedTickCallback (internal/process/next_tick.js:138:11)
    at process._tickCallback (internal/process/next_tick.js:180:9)"

我正在使用 ropsten 测试网络 url 来测试我的智能合约:

https://ropsten.infura.io/API_KEY_HERE

当我调用 balanceOf 函数时,它工作正常,但是当我尝试调用函数 transfer 时,它向我发送了这个错误。代码如下:

router.post('/transfer', (req, res, next)=>{
  contractInstance.methods.transfer(req.body.address, req.body.amount).send({from:ownerAccountAddress})
  .on('transactionHash',(hash)=>{
console.log(hash)
  }).on('confirmation',(confirmationNumber, receipt)=>{
    console.log(confirmationNumber)
    console.log(receipt)
  }).on('receipt', (receipt)=>{
    console.log(receipt)
  }).on('error',(err)=>{
    console.log(err)
  })
})

请让我知道我哪里错了。

编辑:我使用的是 web3js 版本 "web3": "^1.0.0-beta.34"

使用 Web3.js 时,您应该签署交易。当您调用非常量函数(如转账)时,您应该对交易进行签名,然后发送已签名的交易(有一个名为 sendSignedTransaction 的方法)。使用 web3js 很难,我推荐使用 ehtersjs,有了它一切都容易得多。

补充一下 maptuhec 所说的,在 Web3 中调用 "state-changing" 函数或状态更改交易时,必须对其进行签名!

下面是您尝试调用 public 函数(甚至 public 合约变量)的示例,它只是读取(或 "view"ing)并从你的智能合约返回一个值而不改变它的状态,在这种情况下我们不需要指定一个交易主体然后将其签署为交易,因为它不会改变我们合约的状态。

contractInstance.methods.aPublicFunctionOrVariableName().call().then( (result) => {console.log(result);})

**

State-Changing Transactions

**

现在,考虑下面的示例,我们在这里尝试调用一个 "state-changing" 函数,因此我们将为它指定一个适当的事务结构。

web3.eth.getTransactionCount(functioncalleraddress).then( (nonce) => {
        let encodedABI = contractInstance.methods.statechangingfunction().encodeABI();
 contractInstance.methods.statechangingfunction().estimateGas({ from: calleraddress }, (error, gasEstimate) => {
          let tx = {
            to: contractAddress,
            gas: gasEstimate,
            data: encodedABI,
            nonce: nonce
          };
          web3.eth.accounts.signTransaction(tx, privateKey, (err, resp) => {
            if (resp == null) {console.log("Error!");
            } else {
              let tran = web3.eth.sendSignedTransaction(resp.rawTransaction);
              tran.on('transactionHash', (txhash) => {console.log("Tx Hash: "+ txhash);});

有关 signTransaction, sendSignedTransaction, getTransactionCount and estimateGas

的更多信息