我将以下ethereum节点运行为:
--rpc --rpcaddr "127.0.0.1" --rpcport "8000" --rpccorsdomain "*" --datadir "/home/mohammad/Ethereum/Data/node1" --port "30303" --maxpeers 2 --ipcapi "admin,db,eth,debug,miner,net,shh,txpool,personal,web3,solc" --rpcapi "db,eth,net,web3,personal" --networkid 1900 --nat "any" --unlock "0" --nodiscover console init ~/Ethereum/Data/node1/customgenesis.json
我已安装web3以从nodejs连接到此节点 如下:
var Web3 = require('web3');
var web3 =Web3(new Web3.providers.HttpProvider('http://127.0.0.1:8000'));
console.log(web3.version.api)
但是,我收到此错误
TypeError:无法读取属性'版本'未定义的
知道为什么会这样吗?
答案 0 :(得分:0)
您在Web3之前忘记了新关键字(...