You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 18, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/docs/backend/config.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,9 +56,10 @@ An example config may look something like:
56
56
"constraints": {
57
57
"skipConnectionTime": true,
58
58
"skipIdentity": false,
59
-
"skipClientUpgrade": false,
60
59
"skipUnclaimed": false,
61
-
"forceClientVersion": "v0.9.30",
60
+
"clientUpgrade": {
61
+
"skip": false
62
+
},
62
63
"minSelfStake": 10000000000000,
63
64
"commission": 150000000,
64
65
"unclaimedEraThreshold": 4
@@ -69,9 +70,9 @@ The `constraints` section defines validity constraint parameters for validators,
69
70
70
71
-`skipConnectionTime`: Boolean. Skips checking the 7 day required connection time if set to true. __optional__, defaults to `false`.
71
72
-`skipIdentity`: Boolean. Skips the check for a verified identity. __optional__, defaults to `false`.
72
-
-`skipClientUpgrade`: Boolean. Skips client version upgrade check. __optional__, defaults to `false`.
73
73
-`skipUnclaimed`: Boolean. Skips the check for unclaimed rewards. __optional__, defaults to `false`.
74
-
-`forceClientVersion`: String. Specific client version to be enforced. __optional__, if this is set, it will allow versions higher than what is specified.
74
+
-`clientUpgrade.skip`: Boolean. Skips client version upgrade check. __optional__, defaults to `false`.
75
+
-`clientUpgrade.forceVersion`: String. Specific client version to be enforced. __optional__, if this is set, it will allow versions >= than what is specified.
75
76
-`minSelfStake`: Integer. Minimum self-stake required. **required**. This number needs to be specified in `Plancks` (1 DOT = 10^10 Plancks, 1 KSM = 10^12 Plancks).
76
77
-`commission`: Integer. Max commission rate. **required**. This number needs to be specified in chain units that have 6 decimal places - for example `150000000` corresponds to 15% commission.
77
78
-`unclaimedEraThreshold`: Integer. Threshold for unclaimed eras. **required**. A validator having pending rewards for past eras longer than this threshold will be deemed invalid. This gets skipped if `skipUnclaimed` is set to `true`. This number is speciefied as number of eras, so `4` for example means validators are invalid if they have pending rewards older than 4 eras ago.
@@ -459,9 +460,10 @@ An example `core` config run as microservices may look something like:
0 commit comments