-
Notifications
You must be signed in to change notification settings - Fork 15
/
truffle.js
87 lines (77 loc) · 2.05 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
/**
* https://github.com/aragon/aragonOS/blob/v4.0.0/truffle-config.js
*/
const homedir = require('homedir')
const path = require('path')
const HDWalletProvider = require('truffle-hdwallet-provider')
const HDWalletProviderPrivkey = require('truffle-hdwallet-provider-privkey')
const DEFAULT_MNEMONIC =
'explain tackle mirror kit van hammer degree position ginger unfair soup bonus'
const defaultRPC = network => `https://${network}.eth.aragon.network`
const configFilePath = filename => path.join(homedir(), `.aragon/${filename}`)
const mnemonic = () => {
try {
return require(configFilePath('mnemonic.json')).mnemonic
} catch (e) {
return DEFAULT_MNEMONIC
}
}
const settingsForNetwork = network => {
try {
return require(configFilePath(`${network}_key.json`))
} catch (e) {
return {}
}
}
// Lazily loaded provider
const providerForNetwork = network => () => {
let { rpc, keys } = settingsForNetwork(network)
rpc = rpc || defaultRPC(network)
if (!keys || keys.length === 0) {
return new HDWalletProvider(mnemonic(), rpc)
}
return new HDWalletProviderPrivkey(keys, rpc)
}
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*',
},
rpc: {
host: 'localhost',
port: 8545,
network_id: '15',
},
mainnet: {
network_id: 1,
provider: providerForNetwork('mainnet'),
},
rinkeby: {
network_id: 4,
provider: providerForNetwork('rinkeby'),
},
coverage: {
host: 'localhost',
network_id: '*',
port: 8555,
gas: 0xffffffffff,
gasPrice: 0x01,
},
},
// Configure your compilers
compilers: {
solc: {
version: '0.4.24', // Fetch exact version from solc-bin (default: truffle's version)
// docker: true, // Use "0.5.1" you've installed locally with docker (default: false)
settings: {
// See the solidity docs for advice about optimization and evmVersion
optimizer: {
enabled: true,
runs: 10000,
},
},
},
},
}