PS:我正在使用web3 beta-37(因为每个版本都有其自身的问题) deploy函数中web3.eth.getAccounts行下的所有内容均不起作用。 当我运行代码时,它什么也没显示! 这是代码:
const HDWalletProvider = require('truffle-hdwallet-provider');
const Web3 = require('web3');
const {interface , bytecode} = require('./compile');
const provider = new HDWalletProvider(mnemonic,
'https://rinkeby.infura.io/v3/my_project_id');
const web3 = new Web3(provider);
const deploy = async() => {
const accounts = await web3.eth.getAccounts();
console.log('Attempting to deploy from account', accounts[0]);
const result = await new web3.eth.Contract(JSON.parse(interface))
.deploy({data: bytecode, arguments: ['Hi There!']})
.send({'from': accounts[0], 'gas': '1000000'});
console.log('Contract deployed to: ', result.options.address);
};
deploy();
此外,在使用ganache-cli进行摩卡测试时会显示错误,
const assert = require('assert');
const HDWalletProvider = require('truffle-hdwallet-provider');
const Web3 = require('web3');
const {bytecode , interface} = require('../compile');
const provider = new HDWalletProvider(mnemonic,
'https://rinkeby.infura.io/v3/project_id');
let accounts;
beforeEach(async () => {
//Get a list of all accounts
accounts = await web3.eth.getAccounts();
});
describe('Inbox', () => {
it('address', () => {
assert.ok(accounts);
})
以下是具有不同版本的结果: beta-46:无法读取未定义的属性map() 关于stackexchange的一个答案说,使用beta-36可以解决此问题
beta-36和beta-37:执行getAccounts()语句后什么都没有,黑屏。
beta-26:core.addProviders不是函数
答案 0 :(得分:1)
我也有同样的问题。
尝试从infura网址中删除“ / v3”部分:
const provider = new HDWalletProvider(mnemonic,
'https://rinkeby.infura.io/my_project_id');
希望这会有所帮助。