-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtronbox.js
More file actions
30 lines (30 loc) · 1 KB
/
tronbox.js
File metadata and controls
30 lines (30 loc) · 1 KB
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
module.exports = {
networks: {
development: {
// For trontools/quickstart docker image
privateKey: 'ce0b8d8f8af7f236a6e2bf4c259cda09dd748a20d2c500665d91933fbb4b4850',
consume_user_resource_percent: 30,
fee_limit: 100000000,
fullNode: "http://127.0.0.1:8090",
solidityNode: "http://127.0.0.1:8091",
eventServer: "http://127.0.0.1:8092",
network_id: "*"
},
shasta: {
privateKey: 'ce0b8d8f8af7f236a6e2bf4c259cda09dd748a20d2c500665d91933fbb4b4850',
consume_user_resource_percent: 30,
fee_limit: 100000000,
fullHost: "https://api.shasta.trongrid.io",
network_id: "*"
},
mainnet: {
// Don't put your private key here, pass it using an env variable, like:
// PK=da146374a75310b9666e834ee4ad0866d6f4035967bfc76217c5a495fff9f0d0 tronbox migrate --network mainnet
privateKey: process.env.PK,
consume_user_resource_percent: 30,
fee_limit: 100000000,
fullHost: "https://api.trongrid.io",
network_id: "*"
}
}
};