-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtruffle.js
More file actions
30 lines (29 loc) · 820 Bytes
/
truffle.js
File metadata and controls
30 lines (29 loc) · 820 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
var HDWalletProvider = require("truffle-hdwallet-provider");
var mnemonic = "...";
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
ropsten: {
provider: function () {
return new HDWalletProvider(mnemonic, "https://ropsten.infura.io/...")
},
network_id: 3,
gas: 4700000,
},
mainnet: {
provider: function () {
return new HDWalletProvider(mnemonic, "https://mainnet.infura.io/...")
},
network_id: 1,
gas: 4700000,
gasPrice: 41000000000,
}
},
solc: {
optimizer: {
enabled: true,
runs: 400
}
}
};