
Manual Installation
Hardware requirement
1. System updates, installation of required environments:
sudo apt update
sudo apt install curl git make jq build-essential gcc unzip wget lz4 aria2 -y2. Install Go:
cd $HOME && \
ver="1.22.0" && \
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" && \
sudo rm -rf /usr/local/go && \
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" && \
rm "go$ver.linux-amd64.tar.gz" && \
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile && \
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> ~/.bash_profile && \
source ~/.bash_profile && \
go version3. Git clone:
4. Variable settings:
5. Node init:
6. Download genesis.json file:
7. Custom port setting (Optional)
8. PEERS, SEED setting:
9. Config pruning, set gas price, enable prometheus, disable indexer:
10. Create service file
11. Download snapshot
Snapshot12. Service execution:
13. Check Latest Block Height:
# Block sync left:
14. Wallet config, check EVM address:
Add new wallet:
Or recover by seed phrase
Export to evm address:
15. Faucet token:
16. Check Balance & Create Validator & Check Validator:
Check balance:
Create Validator:
Check Validator:
Delegate:
Last updated