forked from maticnetwork/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
106 lines (103 loc) · 2.42 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
require('babel-register')
require('babel-polyfill')
const chai = require('chai')
const chaiAsPromised = require('chai-as-promised')
chai.use(chaiAsPromised).should()
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
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: 'localhost',
port: 9545,
network_id: '*', // match any network
skipDryRun: true,
gas: 7000000
},
bor: {
provider: () =>
new HDWalletProvider(
MNEMONIC,
`http://localhost:8545`
),
network_id: '*', // match any network
gasPrice: '0'
},
matic: {
provider: () =>
new HDWalletProvider(
MNEMONIC,
`https://rpc-mainnet.matic.network`
),
network_id: '137',
gasPrice: '90000000000'
},
mumbai: {
provider: () =>
new HDWalletProvider(
MNEMONIC,
`https://rpc-mumbai.matic.today`
),
network_id: '80001',
},
goerli: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://goerli.infura.io/v3/${API_KEY}`
)
},
network_id: 5,
gas: 8000000,
gasPrice: 10000000000, // 10 gwei
skipDryRun: true
},
mainnet: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://mainnet.infura.io/v3/${API_KEY}`
)
},
network_id: 1,
gas: 3000000,
gasPrice: '45000000000'
}
},
compilers: {
solc: {
version: '0.5.17',
docker: true,
parser: 'solcjs',
settings: {
optimizer: {
enabled: true,
runs: 200
},
evmVersion: 'constantinople'
}
}
},
mocha: {
reporter: 'eth-gas-reporter',
reporterOptions: {
currency: 'USD',
gasPrice: 21,
outputFile: '/dev/null',
showTimeSpent: true
}
},
plugins: ['solidity-coverage', 'truffle-plugin-verify', 'truffle-contract-size'],
verify: {
preamble: 'Matic network contracts'
},
api_keys: {
etherscan: ETHERSCAN_API_KEY
}
}