-
Notifications
You must be signed in to change notification settings - Fork 2
/
hardhat.config.ts
87 lines (81 loc) · 2.18 KB
/
hardhat.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import '@typechain/hardhat'
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'
import '@nomiclabs/hardhat-etherscan'
import { task, HardhatUserConfig } from "hardhat/config";
import { resolve } from "path";
import { config as dotenvConfig } from "dotenv";
dotenvConfig({ path: resolve(__dirname, "./.env") });
// 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);
}
});
module.exports = {
solidity:{
version: '0.8.3',
settings: {
optimizer: {
enabled: true,
runs: 200,
details: {
yul: true,
yulDetails: {
stackAllocation: true,
}
}
}
}
},
typechain: {
outDir: 'typechain',
target: 'ethers-v5',
alwaysGenerateOverloads: false // should overloads with full signatures like deposit(uint256) be generated always, even if there are no overloads?
},
mocha: {
timeout: 10000000,
},
//defaultNetwork: "dev",
networks: {
dev: {
url: process.env['RPC'] || process.exit(-1),
accounts: [process.env.DEVNET_PRIVKEY],
gas: 2100000,
gasPrice: 3000000000
},
metis: {
url: "https://stardust.metis.io/?owner=588",
accounts: [process.env.DEVNET_PRIVKEY]
},
tbsc: {
url: "https://data-seed-prebsc-1-s1.binance.org:8545",
accounts: [process.env.DEVNET_PRIVKEY]
},
eig: {
url: "https://node.ieigen.com",
accounts: [process.env.DEVNET_PRIVKEY]
},
tpolygon: {
url: "https://rpc-mumbai.maticvigil.com/",
accounts: [process.env.DEVNET_PRIVKEY]
}
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: {
ropsten: '8HHE3RBH3MZ29E9I9XYP8VP6D9SQIINUIU'
}
},
gasReporter: {
currency: 'USD',
gasPrice: 20,
token: 'ETH',
gasPriceApi: 'https://api.etherscan.io/api?module=proxy&action=eth_gasPrice',
coinmarketcap: 'f6673cc5-a673-4e07-8461-f7281a5de7d7',
onlyCalledMethods: false
}
}