web3 getAccounts无法解决

时间:2019-02-25 10:05:35

标签: ethereum solidity web3 web3js

web3.eth.getAccounts()对我不起作用。下面的代码在执行时显示“错误”(被拒绝)。我正在使用web3 1.0.0 beta-46。我正在从Stephen Grider的教程视频中学习,他使用了beta-26,是与版本有关的问题,还是我做错了什么?

const assert = require('assert');
const ganache = require('ganache-cli');
const Web3 = require('web3');
const web3 = new Web3(ganache.provider());

web3.eth.getAccounts()
    .then(fetchedAccounts => {
      console.log(fetchedAccounts);
    },() => {
      console.log("error");
    });

1 个答案:

答案 0 :(得分:5)

我自己没有尝试过,但这似乎是web3最新版本的版本。尝试使用1.0.0 beta-37吗?