Hardhat plugin for integration with ethers.js.
const { ethers } = await hre.network.connect();
// ethers functionalities
ethers.isAddress("0x1234567890123456789012345678901234567890");
// ethers.Provider
await ethers.provider.getBlockNumber();
// Hardhat helper methods
await ethers.getSigners();
Temporary solution to run manual tests until the V3 node is ready.
- Start a node in Hardhat V2:
npx hardhat node
- Run the tests:
pnpm test:tmp