-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtruffle-config.js
More file actions
executable file
·38 lines (34 loc) · 944 Bytes
/
truffle-config.js
File metadata and controls
executable file
·38 lines (34 loc) · 944 Bytes
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
require('dotenv').config();
const HDWalletProvider = require('truffle-hdwallet-provider')
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// for more about customizing your Truffle configuration!
networks: {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*", // Match any network id
gas: 6721975,
},
ropsten: {
provider: function(){
return new HDWalletProvider(process.env.MNEMONIC,'https://ropsten.infura.io/v3/a5c0811537054f2d9396aeb399c2efc7');
},
gas: 8000000,
gasPrice: 25000000000,
network_id: 3
},
rinkeby: {
provider: () => new HDWalletProvider(process.env.MNEMONIC, "https://rinkeby.infura.io/v3/" + process.env.INFURA_API_KEY),
network_id: 4,
gas: 3000000,
gasPrice: 10000000000
},
},
solc: {
optimizer: {
enabled: true,
runs: 200
}
}
};