forked from loomnetwork/erc721x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
71 lines (65 loc) · 1.5 KB
/
truffle-config.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 fs = require("fs")
const { join } = require('path')
const mochaGasSettings = {
reporter: 'eth-gas-reporter',
reporterOptions: {
currency: 'USD',
gasPrice: 3
}
}
// First read in the secrets.json to get our mnemonic
let secrets
let mnemonic
let filename = process.env.SECRET_FILE
if (filename == "") {
filename = "secrets.json"
}
if(fs.existsSync(filename)) {
secrets = JSON.parse(fs.readFileSync(filename, "utf8"))
mnemonic = secrets.mnemonic
} else {
console.log("No secrets.json found. If you are trying to publish EPM " +
"this will fail. Otherwise, you can ignore this message!")
mnemonic = ""
}
const mocha = process.env.GAS_REPORTER ? mochaGasSettings : {}
module.exports = {
networks: {
development: {
host: '127.0.0.1',
port: 7545,
network_id: '*',
gasPrice: 1
},
ganache: {
host: '127.0.0.1',
port: 8545,
network_id: '*',
gasPrice: 1
},
rinkeby: {
network_id: 4,
provider: function() {
return new HDWalletProvider(mnemonic, 'https://rinkeby.infura.io/', 0, 10)
},
gasPrice: 15000000001,
skipDryRun: true
},
mainnet: {
network_id: 1,
provider: function() {
return new HDWalletProvider(mnemonic, 'https://mainnet.infura.io/', 0, 10)
},
gasPrice: 15000000001,
skipDryRun: true
}
},
mocha,
solc: {
optimizer: {
enabled: true,
runs: 200
}
}
}