-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtruffle-config.js
54 lines (53 loc) · 1.07 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
'use strict'
const HDWalletProvider = require('@truffle/hdwallet-provider')
require('dotenv').config()
const config = require('config')
let provider
if (process.env.DEPLOYMENT_ACCOUNT_KEY) {
provider = new HDWalletProvider(
process.env.DEPLOYMENT_ACCOUNT_KEY,
config.provider
)
}
module.exports = {
networks: {
development: {
host: '127.0.0.1',
port: 8545,
network_id: '*',
gasPrice: 150000000000,
skipDryRun: true,
},
ropsten: {
provider,
network_id: 3,
gas: 7000000,
gasPrice: 5000000000, // 5 Gwei
skipDryRun: true,
},
kovan: {
provider,
network_id: 42,
gas: 5000000,
gasPrice: 5000000000, // 5 Gwei
skipDryRun: true,
},
mainnet: {
provider,
network_id: 1,
gas: 5000000,
gasPrice: 155000000000,
},
},
compilers: {
solc: {
version: '^0.6.6',
settings: {
optimizer: {
enabled: true,
runs: 200 // Optimize for how many times you intend to run the code
}
}
}
}
}