-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtruffle.js
116 lines (107 loc) · 3.07 KB
/
truffle.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
require("ts-node/register");
require("dotenv").config();
const HDWalletProvider = require("truffle-hdwallet-provider");
const { execSync } = require("child_process");
const GWEI = 1000000000;
const commitHash = execSync("git describe --always --long")
.toString()
.trim();
if (
(process.env.NETWORK || "").match(/localnet|devnet|testnet|main/) &&
process.env.INFURA_KEY === undefined
) {
throw new Error("Must set INFURA_KEY");
}
const kovanNetwork = {
// @ts-ignore
provider: () =>
new HDWalletProvider(
process.env.MNEMONIC_TESTNET,
`https://kovan.infura.io/v3/${process.env.INFURA_KEY}`
),
network_id: 42,
gas: 6721975,
gasPrice: 6.5 * GWEI,
networkCheckTimeout: 20000
};
const mainNetwork = {
// @ts-ignore
provider: () =>
new HDWalletProvider(
process.env.MNEMONIC_MAINNET,
`https://mainnet.infura.io/v3/${process.env.INFURA_KEY}`
),
network_id: 1,
gas: 6721975,
gasPrice: 42 * GWEI,
networkCheckTimeout: 20000
};
const ethRinkebyNetwork = {
// @ts-ignore
provider: () =>
new HDWalletProvider(
process.env.MNEMONIC_TESTNET || process.env.MNEMONIC_TESTNET,
`https://rinkeby.infura.io/v3/${process.env.INFURA_KEY}`
),
network_id: 4,
// gas: 6721975,
// gasPrice: 6.5 * GWEI,
networkCheckTimeout: 10000
};
module.exports = {
networks: {
localnet: kovanNetwork,
devnet: kovanNetwork,
rinkebyDevnet: ethRinkebyNetwork,
testnet: kovanNetwork,
mainnet: mainNetwork,
chaosnet: mainNetwork,
development: {
host: "localhost",
port: 8545,
network_id: "*"
}
},
mocha: {
// // Use with `npm run test`, not with `npm run coverage`
// reporter: "eth-gas-reporter",
// reporterOptions: {
// currency: "USD",
// gasPrice: 21
// },
enableTimeouts: false,
useColors: true,
bail: false
},
compilers: {
solc: {
version: "0.5.17",
settings: {
// evmVersion: "petersburg", // "istanbul",
optimizer: {
enabled: true,
runs: 200
}
}
}
},
plugins: ["truffle-plugin-verify", "solidity-coverage"],
api_keys: {
etherscan: process.env.ETHERSCAN_KEY
},
verify: {
preamble: `
Deployed by Ren Project, https://renproject.io
Commit hash: ${commitHash}
Repository: https://github.com/renproject/darknode-sol
Issues: https://github.com/renproject/darknode-sol/issues
Licenses
@openzeppelin/contracts: (MIT) https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/LICENSE
darknode-sol: (GNU GPL V3) https://github.com/renproject/darknode-sol/blob/master/LICENSE
`
},
contracts_build_directory: `./build/${process.env.NETWORK ||
"development"}`,
// This is required by truffle to find any ts test files
test_file_extension_regexp: /.*\.ts$/
};