forked from CoinbaseStablecoin/eip-3009
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
75 lines (69 loc) · 1.75 KB
/
truffle-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
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
process.env.TS_NODE_FILES = "true";
require("ts-node/register/transpile-only");
// Fix Typescript callsite reporting
Object.defineProperty(Error, "prepareStackTrace", { writable: false });
const HDWalletProvider = require("@truffle/hdwallet-provider");
const fs = require("fs");
const path = require("path");
// Read config file if it exists
let config = { MNEMONIC: "", INFURA_KEY: "" };
if (fs.existsSync(path.join(__dirname, "config.js"))) {
config = require("./config.js");
}
module.exports = {
compilers: {
solc: {
version: "0.6.12",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
},
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
},
mainnet: {
provider: infuraProvider("mainnet"),
network_id: 1,
},
ropsten: {
provider: infuraProvider("ropsten"),
network_id: 3,
},
rinkeby: {
provider: infuraProvider("rinkeby"),
network_id: 4,
},
goerli: {
provider: infuraProvider("goerli"),
network_id: 5,
},
},
mocha: {
timeout: 10000, // prevents tests from failing when pc is under heavy load
reporter: "Spec",
},
plugins: ["solidity-coverage"],
};
function infuraProvider(network) {
return httpProvider(`https://${network}.infura.io/v3/${config.INFURA_KEY}`);
}
function httpProvider(url) {
return () => {
if (!config.MNEMONIC) {
console.error("A valid MNEMONIC must be provided in config.js");
process.exit(1);
}
if (!config.INFURA_KEY) {
console.error("A valid INFURA_KEY must be provided in config.js");
process.exit(1);
}
return new HDWalletProvider(config.MNEMONIC, url);
};
}