How to run as DBC validator?
How to run as DBC validator?
0. Recommended hardware
- RAM:8G
- CPU:2 cores
- Disk:100G
- OS: ubuntu20.04 ++
1. Generate stash account
(If you already have stash account, you can skip this)
Reference: Generate new dbc account
dbc-chain
binary
2. Get Option 1: use pre-build version (recommended)
If any errors, please use Option 2
mkdir dbc-chain-mainnet && cd dbc-chain-mainnet
wget https://github.com/DeepBrainChain/DeepBrainChain-MainChain/releases/download/v3.3/dbc_chain_linux_x64.tar.gz -O dbc_chain_linux_x64.tar.gz
tar xf dbc_chain_linux_x64.tar.gz
Option 2: compile from source
# install dependency
curl https://getsubstrate.io -sSf | bash -s -- --fast
source ~/.cargo/env
# compile dbc-chain
git clone https://github.com/DeepBrainChain/DeepBrainChain-MainChain.git
cd DeepBrainChain-MainChain && git checkout v3.3
cargo build --release
3. Synchronize Chain Data
./dbc-chain --base-path ./db_data --pruning archive
If you compile from source, the binary path is
./target/release/dbc-chain
After finished synchronize, type
Control + C
to close the above command. You can comparetarget
andbest
to infer if sync is finished. Whentarget
is closed (100 blocks, for example) tobest
, it can be regard sync is finished.
- Flags in detail:
--base-path
:Specifies a directory where Substrate should store all the data related to this chain. If this value is not specified, a default path will be used. If the directory does not exist it will be created for you. If other blockchain data already exists there you will get an error. Either clear the directory or choose a different one.--chain ./dbcSpecRaw.json
:Specifies which chain specification to use.--pruning=archive
:synchronize chain data--bootnodes
:specified a single boot node. ( If you encounter a synchronization status of 0 peers, you can try to specify --bootnodes /ip4/122.99.183.53/tcp/3308/p2p/12D3KooWDx4pgzT2RAPF12QkmiBZy6BUsTtPt7JgiYxgFm6Z5Hc5 or other known synchronization nodes)
4.Then run the node as a validator:
#Start node
nohup ./dbc-chain --base-path ./db_data --chain dbcSpecRaw.json --validator --name YourNodeName 1>dbc_node.log 2>&1 &
#If you encounter a startup error
./dbc-chain: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by ./dbc-chain)
./dbc-chain: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29' not found (required by ./dbc-chain)
./dbc-chain: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./dbc-chain)
./dbc-chain: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./dbc-chain)
./dbc-chain: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by ./dbc-chain)
#solution:
#1. Users in China:
echo "deb http://mirrors.aliyun.com/ubuntu/ jammy main" >> /etc/apt/sources.list
sudo apt update
sudo apt install libc6 libstdc++6 -y
#2. Non-China users
echo "deb http://archive.ubuntu.com/ubuntu/ jammy main" >> /etc/apt/sources.list
sudo apt update
sudo apt install libc6 libstdc++6 -y
- If you compile from source, the binary path is
./target/release/dbc-chain
- You can give your validator any name that you like, but note that others will be able to see it, and it will be included in the list of all servers using the same telemetry server. Since numerous people are using telemetry, it is recommended that you choose something likely to be unique.
rotateKey
5. generateRun the following command in the terminal, and record the result.
curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "author_rotateKeys", "params":[]}' http://localhost:9933
6. Bond stash
open https://www.dbcwallet.io/?rpc=wss%3A%2F%2Finfo.dbcwallet.io#/accounts you will see your balance:
navigate to
Staking > Account actions
,clickstash
You should set bond balance(Make sure not to bond all your DBC balance since you will be unable to pay transaction fees from your bonded balance.):
Description:
Stash account
:Select your Stash account. In this example, we will bond 45 DBC - make sure that your Stash account contains at least this much. You can, of course, stake more than this.controller account
:Select the Controller account created earlier. This account will also need a small amount of DBC in order to start and stop validating.value bonded
:How much DBC from the Stash account you want to bond/stake. Note that you do not need to bond all of the DBC in that account. Also note that you can always bond more DBC later.payment destination
:The account where the rewards from validating are sent.
7. Set Session Keys
After bond your stash,you can see in Polkadot UI
Session Key
button:click it and input the result in step 5
rotateKeys
Now, check in Telemetry and you can see your node.
8. Validate
- After steps above you can see
Validate
button and click it,
- You should set your preference as a validator.
- In
reward commission percentage
you should input your commission preference. Then clieckValidate
to send this transaction。Then,inWaiting
page,you are waiting statusEra
to be a validator.
9. Claim your rewards payout?
Navigate to Staking > Payouts > Max, 84 eras
,you may see all the rewards to be payout:
chick Payout all
button to send a transaction.