-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtruffle-config.js
50 lines (49 loc) · 935 Bytes
/
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
const path = require("path");
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
networks: {
develop: {
port: 7545,
gas: 9000000,
network_id: 5777
},
// test: {
// port: 7545,
// gas: 9000000,
// network_id: 4447
// },
vertigo_test_network_1: {
host: "127.0.0.1",
port: 8545,
network_id: "*"
},
vertigo_test_network_2: {
host: "127.0.0.1",
port: 8546,
network_id: "*"
}
// test: {
// gas: 9000000,
// network_id: 4447
// },
},
solc: {
optimizer: {
enabled: true,
runs: 1000
},
},
// use native binaries rather than solc.js
compilers: {
solc: {
version: "0.6.11"
}
},
// plugins: [
// 'truffle-ganache-test'
// ],
// mocha: {
// reporter: 'eth-gas-reporter'
// }
}