forked from DecentralizedClimateFoundation/DCIPs
32 lines
648 B
TypeScript
32 lines
648 B
TypeScript
import { HardhatUserConfig, task } from "hardhat/config";
|
|
import "@nomiclabs/hardhat-waffle";
|
|
import "@typechain/hardhat";
|
|
|
|
// 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 (taskArgs, hre) => {
|
|
const accounts = await hre.ethers.getSigners();
|
|
|
|
for (const account of accounts) {
|
|
console.log(account.address);
|
|
}
|
|
});
|
|
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: {
|
|
version: "0.8.9",
|
|
settings: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 200
|
|
}
|
|
}
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|