-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuidler.config.js
47 lines (40 loc) · 903 Bytes
/
buidler.config.js
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
require("dotenv").config();
usePlugin("solidity-coverage");
usePlugin("@nomiclabs/buidler-waffle");
function getEnv(env) {
let value = process.env[env];
if (typeof value == "undefined") {
value = "";
console.error(`WARNING: ${env} environment variable has not been set`);
}
return value;
}
const mainnetEndpoint = getEnv("MAINNET_ENDPOINT");
const mainnetMnemonic = getEnv("MAINNET_MNEMONIC");
const kovanEndpoint = getEnv("KOVAN_ENDPOINT");
const kovanMnemonic = getEnv("KOVAN_MNEMONIC");
module.exports = {
networks: {
mainnet: {
url: mainnetEndpoint,
chainId: 1,
accounts: {
mnemonic: mainnetMnemonic
}
},
kovan: {
url: kovanEndpoint,
chainId: 42,
accounts: {
mnemonic: kovanMnemonic
}
}
},
solc: {
version: "0.6.6",
optimizer: {
enabled: true,
runs: 999999
}
}
};