mirror of
https://github.com/Instadapp/dsa-resolvers-deprecated.git
synced 2024-07-29 22:38:16 +00:00
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
require("dotenv").config();
|
|
require("@nomiclabs/hardhat-waffle");
|
|
|
|
if (!process.env.ALCHEMY_API_KEY) {
|
|
throw new Error("ENV Variable ALCHEMY_API_KEY not set!");
|
|
}
|
|
const ALCHEMY_API_KEY = process.env.ALCHEMY_API_KEY;
|
|
|
|
// This is a sample Hardhat task. To learn how to create your own go to
|
|
// https://hardhat.org/guides/create-task.html
|
|
task("accounts", "Prints the list of accounts", async () => {
|
|
const accounts = await ethers.getSigners();
|
|
|
|
for (const account of accounts) {
|
|
console.log(account.address);
|
|
}
|
|
});
|
|
|
|
// You need to export an object to set up your config
|
|
// Go to https://hardhat.org/config/ to learn more
|
|
|
|
/**
|
|
* @type import('hardhat/config').HardhatUserConfig
|
|
*/
|
|
module.exports = {
|
|
paths: {
|
|
sources: "./contracts/aggregate",
|
|
},
|
|
solidity: {
|
|
compilers: [
|
|
{
|
|
version: "0.6.10",
|
|
},
|
|
{
|
|
version: "0.7.3",
|
|
},
|
|
],
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 200,
|
|
},
|
|
},
|
|
networks: {
|
|
hardhat: {
|
|
forking: {
|
|
url: "https://eth-mainnet.alchemyapi.io/v2/" + ALCHEMY_API_KEY,
|
|
blockNumber: 12510580,
|
|
},
|
|
},
|
|
},
|
|
mocha: {
|
|
timeout: 100000,
|
|
},
|
|
};
|