-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtronbox.js
More file actions
35 lines (34 loc) · 812 Bytes
/
tronbox.js
File metadata and controls
35 lines (34 loc) · 812 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 dotenv = require ("dotenv");
dotenv.config();
module.exports = {
networks: {
mainnet: {
privateKey: process.env.DEPLOYER_PRIVATE_KEY_TRON,
userFeePercentage: 100,
feeLimit: 2e9,
fullHost: "https://api.trongrid.io",
network_id: "1",
},
shasta: {
privateKey: process.env.DEPLOYER_PRIVATE_KEY_TRON,
userFeePercentage: 100,
feeLimit: 2e9,
fullHost: "https://api.shasta.trongrid.io",
network_id: "2",
},
// nile: {
// privateKey: process.env.PRIVATE_KEY_NILE,
// userFeePercentage: 100,
// feeLimit: 1e9,
// fullHost: "https://nile.trongrid.io",
// network_id: "3",
// },
compilers: {
solc: {
version: "0.8.18",
},
},
},
// solc compiler optimize
solc: {},
};