Tag: ethereum solidity

无效的JSON RPC响应:未定义

我试图通过Node.js创build一个以太坊帐户。 这是我的代码: export async function createNewAccount() { var web3Instance = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); return web3Instance.eth.accounts.create(); } 但我得到以下错误(从“创build”function): 无效的JSON RPC响应:未定义 我在我的项目中安装了web3.js。 我错过了什么其他步骤? 顺便说一句,打开浏览器地址http:// localhost:8545返回404.有什么我需要安装,以使其工作? 那是testrpc吗? 请注意,我想对付真正的区块链,而不是testing。