forked from skmgoldin/tcr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
51 lines (46 loc) · 1.33 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
const HDWalletProvider = require('truffle-hdwallet-provider');
const fs = require('fs');
let mnemonic = '';
if (fs.existsSync('secrets.json')) {
const secrets = JSON.parse(fs.readFileSync('secrets.json', 'utf8'));
({ mnemonic } = secrets);
}
if (process.env.MNEMONIC) {
mnemonic = process.env.MNEMONIC;
}
module.exports = {
networks: {
mainnet: {
provider: () => new HDWalletProvider(mnemonic, 'https://mainnet.infura.io'),
network_id: '1',
gas: 4500000,
gasPrice: 10000000000,
},
ganache: {
provider: () => new HDWalletProvider(mnemonic, 'http://localhost:8545'),
network_id: '*',
gas: 6000000,
gasPrice: 25000000000,
},
rinkeby: {
provider: () => new HDWalletProvider(mnemonic, 'https://rinkeby.infura.io'),
network_id: '*',
gas: 4500000,
gasPrice: 25000000000,
},
ropsten: {
provider: () => new HDWalletProvider(mnemonic, 'https://ropsten.infura.io'),
network_id: '*',
gas: 4500000,
gasPrice: 25000000000,
},
// config for solidity-coverage
coverage: {
host: 'localhost',
network_id: '*',
port: 7545, // <-- If you change this, also set the port option in .solcover.js.
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01, // <-- Use this low gas price
},
},
};