Skip to content

Commit 0805680

Browse files
committed
updates adding validator
1 parent b1d5d9d commit 0805680

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,20 @@ Subnet attributes details:
3030
3131
## Adding a validator
3232
33-
If you're currently running your own validator and you're open to whitelist someone's subnet, you can add your details here.
33+
If you're currently running your own validator and you're open to whitelist someone's subnet, you can create a PR including your details in the `` file as follows:
34+
35+
```js
36+
{
37+
"nodeID": "NodeID-xxxxxxx", // your validator node id
38+
"totalStake": 23496, // amount stacked in the validator
39+
"feePercentage": 2, // validator fee
40+
"openToValidate": true, // change to false if you just want to list your validator in the site
41+
"contactURL": "" // link to a website contact page, discord or telegram
42+
43+
},
44+
```
45+
46+
**Important**: we do not recommend to include an email address as a contact method to avoid spam.
3447
3548
## Getting Started
3649

components/validator/validator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function Validator({ validator }) {
2828
</Typography>
2929
</div>
3030
{validator.openToValidate && (
31-
<Link href={validator.contactDetails.email}>Contact</Link>
31+
<Link href={validator.contactURL}>Contact</Link>
3232
)}
3333
</div>
3434
</div>

0 commit comments

Comments
 (0)