-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
executable file
·63 lines (56 loc) · 1.58 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
require('dotenv').config();
require('babel-register');
require('babel-polyfill');
const HDWalletProvider = require('truffle-hdwallet-provider');
const secrets = require('./secrets');
const providerWithMnemonic = (mnemonic, rpcEndpoint) =>
new HDWalletProvider(mnemonic, rpcEndpoint);
const infuraProvider = network => providerWithMnemonic(
secrets.mnemonic,
`https://${network}.infura.io/${secrets.infura_key}`
);
const ropstenProvider = process.env.SOLIDITY_COVERAGE ? undefined : infuraProvider('ropsten');
const mainnetProvider = process.env.SOLIDITY_COVERAGE ? undefined : infuraProvider('mainnet');
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*', // eslint-disable-line camelcase
},
mainnet: {
host: 'localhost',
port: 8545,
network_id: 1, // eslint-disable-line camelcase
},
staging: {
provider: mainnetProvider,
network_id: 1, // eslint-disable-line camelcase,
gas: 4700000,
gasPrice: 2e10,
},
ropsten: {
provider: ropstenProvider,
network_id: 3, // eslint-disable-line camelcase,
gas: 4700000,
gasPrice: 2e10,
},
coverage: {
host: 'localhost',
network_id: '*', // eslint-disable-line camelcase
port: 8555,
gas: 0xfffffffffff,
gasPrice: 0x01,
},
testrpc: {
host: 'localhost',
port: 8545,
network_id: '*', // eslint-disable-line camelcase
},
ganache: {
host: 'localhost',
port: 7545,
network_id: '*', // eslint-disable-line camelcase
},
},
};