forked from maticnetwork/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle-config.js
90 lines (87 loc) · 1.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
require('babel-register')
require('babel-polyfill')
var HDWalletProvider = require('truffle-hdwallet-provider')
const MNEMONIC =
process.env.MNEMONIC ||
'clock radar mass judge dismiss just intact mind resemble fringe diary casino'
const API_KEY = process.env.API_KEY
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*', // match any network
skipDryRun: true
},
matic_dev: {
host: 'localhost',
port: 8546,
network_id: '*' // match any network
},
ropsten: {
provider: () =>
new HDWalletProvider(
MNEMONIC,
`https://ropsten.infura.io/v3/${API_KEY}`,
1
),
network_id: 3,
gas: 8000000,
gasPrice: 100000000000,
skipDryRun: true
// confirmations: 5
},
kovan: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://kovan.infura.io/v3/${API_KEY}`
)
},
network_id: 42,
gas: 8000000
},
mainnet: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://mainnet.infura.io/v3/${API_KEY}`
)
},
network_id: 1,
gas: 4000000
},
bor_testnet2: {
provider: function() {
return new HDWalletProvider(MNEMONIC, `https://testnet2.matic.network`)
},
network_id: 8995,
gas: 8000000,
confirmations: 2
}
},
compilers: {
solc: {
version: '0.5.11',
// docker: true,
settings: {
optimizer: {
enabled: true,
runs: 200
},
evmVersion: 'constantinople'
}
}
},
mocha: {
reporter: 'eth-gas-reporter',
reporterOptions: {
currency: 'USD',
gasPrice: 21,
outputFile: '/dev/null',
showTimeSpent: true
}
}
}