emped status | jq '.SyncInfo.latest_block_height // .sync_info.latest_block_height'
View the ports used node
ss -tulpn | grep emped
βοΈ Key Command
Create new wallet
emped keys add wallet
Recovery wallet
emped keys add wallet --recover
List all wallet
emped keys list
Delete wallet
emped keys delete wallet
Export wallet
emped keys export wallet
Import wallet
emped keys import wallet wallet.backup
Check wallet balance
emped q bank balances $(emped keys show wallet -a)
emped q bank balances "Any other or your wallet"
βοΈ Validator Commands
Create validator
emped tx staking create-validator \
--amount 1000000uempe \
--commission-max-change-rate "0.05" \
--commission-max-rate "0.10" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey=$(emped tendermint show-validator) \
--moniker '' \ #Validator name, displayed in explorers.
--website "" \ #Your website is available, or leave the field blank
--identity "" \ #Use your KeyBase ID. If you don't have one, leave it empty.
--details "" \ #Any details about your validator.
--security-contact="" \
--chain-id empe-testnet-2 \
--from wallet #Wallet name, as specified during creation, or typically 'wallet'.
β½ Replace the following values with your own: WALLET - usually it's 'wallet', or your wallet's name.
MONIKER - any convenient name for your validator, displayed in the explorer.
IDENTITY - validator's avatar, displayed in the explorer. Create a KeyBase ID following the instructions or leave it empty, and it will default to a standard one.
DETAILS - details about your validator, also displayed in the explorer.
WEBSITE - your website/github/twitter, etc., if you don't want to specify anything - leave it blank
Replace all necessary values indicated above with the $ sign to successfully create your validator.
β½ Example:
emped tx staking create-validator \
--amount 1000000uempe \
--commission-max-change-rate "0.05" \
--commission-max-rate "0.10" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey=$(emped tendermint show-validator) \
--moniker '' \ #Validator name, displayed in explorers.
--website "" \ #Your website is available, or leave the field blank
--identity "" \ #Use your KeyBase ID. If you don't have one, leave it empty.
--details "" \ #Any details about your validator.
--security-contact="" \
--chain-id empe-testnet-2 \
--from wallet #Wallet name, as specified during creation, or typically 'wallet'.
After entering the command, you will receive hash transactions, check the status in the explorer if the status is successful - you have created a validator.
You can find your validator here: explorerIn the Active / Inactive lists.