Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 2.56 KB

README.md

File metadata and controls

59 lines (39 loc) · 2.56 KB

Validator-directory

Dictionary

Moniker

What is a Validator Profile?

BNB Smart Chain validators power the blockchain network by processing transactions and signing blocks. Validator candidates need to get supports from delegator community to increase their total voting power. This repository is a place for validator candidates to give potential delegators a brief introduction about your team and infrastructure, and present your ecosystem contributions.

How to change your Validator Profile

  1. Fork this repository to your own GitHub account.

  2. Clone the repo from your own account.

git clone git@github.com:xxxxxx/validator-directory.git
cd validator-directory/
  1. Create folder with name of your validator address, like "bva1pnww8kx30sz4xfcqvn8wjhrn796nf4dq77hcpa"

  2. Copy the template README.md and JSON Profile into your folder inside validators/<your-validator-address>. Upload your logo with file named logo.png to previously created folder with smartcontract address, and if you done all correctly your path should look like this. validators/bva1pnww8kx30sz4xfcqvn8wjhrn796nf4dq77hcpa/logo.png Logo must have dimensions: min: 64x64 and max: 512x512

  3. Change the contents and add your information as necessary.

  4. Commit and push the information to your repo.

git add -A
git commit -m "Edit validator profile"
git push origin main
  1. Under your repo page, click the “New pull request” button. Make a Pull Request with our repository with a summary of changes.

  2. We will review your PR as soon as possible.

profile.json

Registered validators (validators who have submitted a profile) can opt-in to receive support by putting their contact information in profile.json.

{
    "contact": { // contact info for delegators / outreach
        "email": "validator@example.com",
        "twitter":"exampleaccount",
        "telegram": "@validator123",
        "website": "https://www.example.com"
    },
    "notifications": { // notification settings
        "email": "technicalemail@example.com" // email to receive notifications
    }
}