通过Hardhat导入醚失败,尽管官方测试文档



根据Hardhat的官方测试文档,ethers应该在全局作用域中隐式可用;但是,它可以显式地选择为required,如下所示:

const { ethers } = require("hardhat");

我的本地项目失败。

我的包清单似乎包含了正确的依赖项:

{
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "https://github.com/OpenZeppelin/openzeppelin-contracts#v4.0.0-beta.0",
"chai": "^4.3.1",
"hardhat": "^2.0.11"
}
}

我的单元测试文件似乎也与Hardhat文档中的工作示例相匹配:

const { ethers } = require("hardhat");
const { expect } = require("chai");
describe("Distributor.sol", function() {
it("Distribution should fail for non-owners", async function() {
const DistributorFactory = await ethers.getContractFactory("Distributor");
const Distributor = await Distributor.deploy();
Distributor.distribute([], []);
expect(await hardhatToken.totalSupply()).to.be.revertedWith("foobar");
});
});

尽管如此,使用:

运行测试失败
$ yarn hardhat test
yarn run v1.22.5
$ /home/bob/dev/misc/token-distributor/node_modules/.bin/hardhat test

Distributor.sol
undefined
1) Distribution should fail for non-owners

0 passing (9ms)
1 failing
1) Distributor.sol
Distribution should fail for non-owners:
TypeError: Cannot read property 'getContractFactory' of undefined
at Context.<anonymous> (test/Distributor.js:8:49)
at processImmediate (internal/timers.js:461:21)

error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

我如何解决这个问题?

两件事:

  1. 您也需要单独安装ethers,就像hardhat-ethers的说明一样,例如
    npm install --save-dev @nomiclabs/hardhat-ethers 'ethers@^5.0.0'

  2. 每个Hardhat插件需要在Hardhat配置文件(hardhat.config.js)中注册:
    require("@nomiclabs/hardhat-ethers");

没有必要删除测试文件中的显式导入,但是,Hardhat文档建议遵循这种风格:

const hre = require("hardhat");
const { ethers } = hre;

hardhat.config.js中添加要求

require("@nomiclabs/hardhat-waffle");

并从测试文件中删除这一行:

const { ethers } = require("hardhat");

然后,您可以在测试中使用ethers。在运行测试之前,Hardhat首先查看配置。如果你需要一个包含ethers的包,你可以在全局作用域中使用它。

它仍然显示错误,reading ethers undefined,我用yarn hardhat重新开始项目,并选择第一个选项"创建简单项目"而且效果很好。