-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.default.jsonc
78 lines (66 loc) · 2.16 KB
/
config.default.jsonc
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
68
69
70
71
72
73
74
75
76
77
78
{
/**
List of nodes to fetch forging information.
If one become unavailable, a pool will choose live one.
**/
"node_ADM": [
"https://bid.adamant.im",
"http://localhost:36666",
"https://endless.adamant.im",
"https://clown.adamant.im",
"https://unusual.adamant.im",
"https://debate.adamant.im",
"http://23.226.231.225:36666",
"http://78.47.205.206:36666",
"https://lake.adamant.im",
"https://sunshine.adamant.im"
],
/**
The pool's secret phrase. Pool's ADM address/account will correspond this passPhrase.
The account should be a delegate of the ADAMANT blockchain.
**/
"passPhrase": "",
/** Percentage of rewards to distribute to voters **/
"reward_percentage": 80,
/** Percentage of rewards to donate to the ADAMANT Foundation **/
"donate_percentage": 0,
/**
Wallet for donation.
Make sure it's 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 the 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 a payout. Must be not less, than 0.51.
If at the end of a payoutperiod a voter's reward is less than minpayout, it will be pending for the next period.
Voter pays a transaction fee.
**/
"minpayout": 10,
/** If delegate can vote for himself and this will account in reward distribution **/
"considerownvote": false,
/** ADAMANT address for monitoring notifications **/
"adamant_notify": "",
/** Slack key for monitoring notifications **/
"slack": "",
/**
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
}