-
Notifications
You must be signed in to change notification settings - Fork 3
/
truffle-config.js
84 lines (81 loc) · 1.99 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
72
73
74
75
76
77
78
79
80
81
82
83
84
var HDWalletProvider = require("truffle-hdwallet-provider")
const MNEMONIC = process.env.MNEMONIC
const API_KEY = process.env.API_KEY
const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // match any network
},
kovan: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://kovan.infura.io/${API_KEY}`
)
},
network_id: 42,
gas: 8000000
},
ropsten: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://ropsten.infura.io/v3/${API_KEY}`
)
},
network_id: 3,
gas: 7000000,
gasPrice: 15000000000, // 15 gwei
skipDryRun: true
},
mainnet: {
provider: function() {
return new HDWalletProvider(
MNEMONIC,
`https://mainnet.infura.io/v3/${API_KEY}`
)
},
network_id: 1,
gas: 7000000
}
},
// Set default mocha options here, use special reporters etc.
mocha: {
// timeout: 100000
},
plugins: ['truffle-plugin-verify'],
// Configure your compilers
compilers: {
solc: {
version: "0.7.0", // Fetch exact version from solc-bin (default: truffle's version)
docker: false, // Use "0.5.1" you've installed locally with docker (default: false)
settings: {
// See the solidity docs for advice about optimization and evmVersion
optimizer: {
enabled: false,
runs: 200
}
}
}
},
mocha: {
reporter: "eth-gas-reporter",
reporterOptions: {
currency: "USD",
gasPrice: 21,
outputFile: "/dev/null",
showTimeSpent: true
}
},
verify: {
preamble: 'UniLend Finance LB Contracts'
},
api_keys: {
etherscan: ETHERSCAN_API_KEY
}
}