Validator Name:Baranc Hello, today I will show you how to create a Sei Network validator.What is Sei:Sei Network is the first orderbook-specific L1 blockchain. It is built using the Cosmos SDK and Tendermint core, and features a built-in central limit orderbook (CLOB) module. Decentralized applications building on Sei can build on top of the CLOB, and other Cosmos-based blockchains can leverage Sei's CLOB as a shared liquidity hub and create markets for any asset. Sei Shared Liquidity Model Designed with developers and users in mind, Sei serves as the infrastructure and shared liquidity hub for the next generation of DeFi. Apps can easily plug-and-play to trade on Sei orderbook infrastructure and access pooled liquidity from other apps. To prioritize developer experience, Sei Network has integrated the wasmd module to support CosmWasm smart contracts.
4 CPU
16 RAM
500 SSD NVMe
wget -q -O sei.sh https://api.rues.info/sei.sh && chmod +x sei.sh && sudo /bin/bash sei.sh
seid keys add walletName
seid keys add walletName --recover
seid status 2>&1 | jq .SyncInfo
seid tx staking create-validator \
--moniker="monikername" \
--details="detail" \
--website="website" \
--amount=950000usei \
--pubkey=$(seid tendermint show-validator) \
--chain-id=atlantic-1 \
--commission-max-change-rate=0.01 \
--commission-max-rate=0.20 \
--commission-rate=0.10 \
--min-self-delegation=1 \
--from=name \
--yes