This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.json
67 lines (55 loc) · 2.17 KB
/
config.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
/** List of nodes to fetch forging information, needed to count rewards.
If one become unavailable, pool will choose live one.
**/
"node_ADM": [
"http://localhost:36666",
"https://endless.adamant.im",
"https://clown.adamant.im",
"http://23.226.231.225:36666",
"http://88.198.156.44:36666",
"https://lake.adamant.im"
],
/** The pool's secret phrase. Pool's ADM address will correspond this passPhrase.
Must be a delegate of ADAMANT blockchain.
**/
"passPhrase": "",
/** Percentage of rewards to distribute to pool's voters **/
"reward_percentage": 80,
/** Percentage of rewards to donate to ADAMANT Foundation **/
"donate_percentage": 0,
/** Wallet for donation.
Make sure it is the same as on https://adamant.im/donate
**/
"donatewallet": "U380651761819723095",
/** Maintenance wallet to receive (100 - reward_percentage - donate_percentage) rewards
If you wish to leave it on the pool's wallet, set to empty string
**/
"maintenancewallet": "",
/** How often pool will do payouts. All at 00:00.
1d -> every day
5d -> days 1, 5, 10, 15, 20, 25 of the month
10d -> days 1, 10, 20 of the month
15d -> days 1, 15 of the month
30d -> 30th of each month
Mon, Tue, Wed, Thu, Fri, Sat or Sun -> every week
**/
"payoutperiod": "Sun",
/** Minimum amount in ADM for payouts. Must be not less, than 0.51.
If at the end of payoutperiod a voter's reward is less than minpayout, it will be pending for next period.
Voter pays a transaction fee.
**/
"minpayout": 10,
/** If delegate can vote for himself and this will count in rewards distribution **/
"considerownvote": false,
/** ADAMANT address for monitoring notifications **/
"adamant_notify": "",
/** Slack key for monitoring notifications **/
"slack": "https://hooks.slack.com/services/..",
/** The software will use verbosity according to log_level.
It can be none < error < warn < info < log.
**/
"log_level": "log",
/** Port for pool's public Web panel **/
"port": 36667
}