forked from sunswapteam/smart-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tronbox.js
44 lines (42 loc) · 1.01 KB
/
tronbox.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
const port = process.env.HOST_PORT || 9090
module.exports = {
networks: {
mainnet: {
// Don't put your private key here:
privateKey: process.env.PRIVATE_KEY_MAINNET,
userFeePercentage: 100,
feeLimit: 1000 * 1e6,
fullHost: 'https://api.trongrid.io',
network_id: '1'
},
nile: {
privateKey: process.env.PRIVATE_KEY_NILE,
userFeePercentage: 100,
feeLimit: 10000 * 1e6,
fullHost: 'https://nile.trongrid.io',
network_id: '3'
},
development: {
// Current development is missing.
// For trontools/quickstart docker image
privateKey: 'da146374a75310b9666e834ee4ad0866d6f4035967bfc76217c5a495fff9f0d0',
userFeePercentage: 0,
feeLimit: 1000 * 1e6,
fullHost: 'http://127.0.0.1:' + port,
network_id: '9'
},
compilers: {
solc: {
version: '0.5.12'
}
},
},
compileAll: true,
// solc compiler optimize
solc: {
optimizer: {
enabled: false,
runs: 200
},
}
}