-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtruffle-config.js
More file actions
35 lines (34 loc) · 797 Bytes
/
truffle-config.js
File metadata and controls
35 lines (34 loc) · 797 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
31
32
33
34
35
const path = require('path')
module.exports = {
contracts_build_directory: path.join(__dirname, 'client/src/contracts'),
networks: {
development: {
host: '127.0.0.1',
port: 8545,
network_id: '*'
},
docker: {
host: 'ganache',
port: 8545,
network_id: '*',
verbose: false
}
},
mocha: {
reporter: 'eth-gas-reporter'
},
compilers: {
solc: {
version: '0.8.13',
docker: false,
settings: {
optimizer: {
enabled: false,
runs: 200
},
evmVersion: 'byzantium'
}
}
},
plugins: ['solidity-coverage']
}