-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
71 lines (66 loc) · 1.88 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
const HDWalletProvider = require('truffle-hdwallet-provider');
const NonceTrackerSubprovider = require("web3-provider-engine/subproviders/nonce-tracker");
const config = require('./config/env');
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*',
gasPrice: '100000000000'
},
ropstenInfura: {
provider: function() {
return new HDWalletProvider(
config.get('ropstenMnemonic'),
`https://ropsten.infura.io/${ config.get('infuraApiKey') }`, 0, 10);
},
network_id: 3,
gas: config.get('ropstenGasLimit'),
gasPrice: config.get('ropstenGasPrice')
},
mainnetInfura: {
provider: function() {
let wallet = new HDWalletProvider(
config.get('mainnetMnemonic'),
`https://mainnet.infura.io/${ config.get('infuraApiKey') }`, 0, 10);
let nonceTracker = new NonceTrackerSubprovider();
wallet.engine._providers.unshift(nonceTracker);
nonceTracker.setEngine(wallet.engine);
return wallet;
},
network_id: 1,
gas: config.get('mainnetGasLimit'),
gasPrice: config.get('mainnetGasPrice')
},
ropstenNode: {
provider: function() {
return new HDWalletProvider(
config.get('ropstenMnemonic'),
'http://127.0.0.1:7545/', 0, 10);
},
network_id: '3',
gas: config.get('ropstenGasLimit'),
gasPrice: config.get('ropstenGasPrice')
},
mainnetNode: {
provider: function() {
return new HDWalletProvider(
config.get('mainnetMnemonic'),
'http://127.0.0.1:7545/', 0, 10);
},
network_id: '1',
gas: config.get('mainnetGasLimit'),
gasPrice: config.get('mainnetGasPrice')
}
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
},
mocha: {
useColors: true
}
};