forked from MolochVentures/moloch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buidler.config.js
42 lines (39 loc) · 1013 Bytes
/
buidler.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
usePlugin('@nomiclabs/buidler-truffle5')
require('./scripts/moloch-tasks')
require('./scripts/pool-tasks')
const INFURA_API_KEY = ''
const MAINNET_PRIVATE_KEY = ''
const ROPSTEN_PRIVATE_KEY = ''
module.exports = {
networks: {
develop: {
deployedContracts: {
moloch: '',
pool: ''
}
},
ropsten: {
url: `https://ropsten.infura.io/v3/${INFURA_API_KEY}`,
accounts: [ ROPSTEN_PRIVATE_KEY ],
deployedContracts: {
moloch: '0xa9566CA3Fb25a45dafc978D9FFc3bc6a148EA7E6',
pool: '0x35ac1b6df3cEC340476bd59BeEA30d80e8388bDb'
}
},
mainnet: {
url: `https://mainnet.infura.io/v3/${INFURA_API_KEY}`,
accounts: [ MAINNET_PRIVATE_KEY ],
deployedContracts: {
moloch: '0xcc7dcdb700eed457c8180406d7d699877f4eee24',
pool: '0xcf2Ad8b7094A1b5ebf679d114F9658acD8645488'
}
},
coverage: {
url: 'http://localhost:8555'
}
},
solc: {
version: '0.5.3',
evmVersion: 'byzantium'
}
}