-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
francois branciard
committed
Apr 12, 2018
1 parent
db90dd5
commit 1fa4f1e
Showing
3 changed files
with
100 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
var HDWalletProvider = require("truffle-hdwallet-provider"); | ||
var mnemonic = "12 words"; | ||
|
||
|
||
module.exports = { | ||
networks: { | ||
ropsten: { | ||
provider: new HDWalletProvider(mnemonic, "https://ropsten.infura.io/berv5GTB5cSdOJPPnqOq"), | ||
network_id: "3", | ||
gas: 4400000, | ||
gasPrice: 22000000000, | ||
}, | ||
rinkeby: { | ||
provider: new HDWalletProvider(mnemonic, "https://rinkeby.infura.io/berv5GTB5cSdOJPPnqOq"), | ||
network_id: "4", | ||
gas: 4400000, | ||
gasPrice: 22000000000, | ||
}, | ||
kovan: { | ||
provider: new HDWalletProvider(mnemonic, "https://kovan.infura.io/berv5GTB5cSdOJPPnqOq"), | ||
network_id: "42", | ||
gas: 4400000, | ||
gasPrice: 22000000000, | ||
},/* | ||
mainnet: { | ||
provider: new HDWalletProvider(mnemonic, "https://mainnet.infura.io/berv5GTB5cSdOJPPnqOq"), | ||
network_id: "1", | ||
gas: 4400000, | ||
gasPrice: 22000000000, | ||
},*/ | ||
}, | ||
solc: { | ||
optimizer: { | ||
enabled: true, | ||
runs: 200 | ||
} | ||
}, | ||
mocha: { | ||
enableTimeouts: false | ||
} | ||
}; |