Node39
  • 👋Welcome to Node39.TOP
  • Mainnet
    • 🟢Pactus Blockchain
      • ⚙️Installation
      • 🚄Sync
      • 🖥️Upgrade
      • 🔌Bootstrap node
      • 🛟Command
    • 🟢Muon.net
    • 🟢Massa
    • 🟢Tangle
      • ⚙️Installation
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Nibiru Chain
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
      • 🔭Database option
    • 🟢Seda
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Zeta Chain
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Selfchains
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Shentu
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Entangle
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Kopi Protocol
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
  • 👨‍🏫Testnet
    • 🟢Tanssi
    • ⛔Dusk
    • ⛔Nulink
    • 🟢Kenshi - Unchained
    • ⛔X1 Blockchain
    • 🟢Rivalz
      • ⚙️Installation
  • 👨‍🏫Cosmos
    • 🟢Swisstronik
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Hedge Block
    • 🟢Warden Protocol
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
      • Slinky
    • 🟢Galactica
    • 🟢Airchains
      • Sync
    • 🟢Viper Private Phase 2
      • 🟢Chain 0003
    • 🟢Crowd Control
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
  • 🔴End
    • 🔴Avail
    • 🔴Rollup Madara
    • 🔴Light Node Avail
    • 🔴Self Chain
    • 🔴Pactus blockchain - Testnet
    • 🟢Symphony
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
    • 🟢Airchains Station
    • 🟢Autonity
      • 🟢RPC
    • 🟢Empeiria
      • ⚙️Installation
      • 🚅Sync
      • 🖥️Upgrade
      • 🛟Command
Powered by GitBook
On this page
  1. Cosmos
  2. Warden Protocol

Command

Wallet:

// Add New Wallet
wardend keys add wallet

// Restore executing wallet
wardend keys add wallet --recover

// List All Wallets
wardend keys list

// Delete wallet
wardend keys delete wallet

// Check Balance
wardend q bank balances $(wardend keys show wallet -a)

// Show validator
wardend tendermint show-validator

// Show EVM address
wardend keys unsafe-export-eth-key 

// Backup
Seed + priv_validator_key.json

Validator:

// Create Validator

wardend tendermint show-validator

# EX: pubkey: '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A7JSLhhRRXl3/Cfyi1kDQXBsp8yA5Z2BOIPQQ6JzXy7K"}' type: local Change info
{    
    "pubkey": {"@type":"/cosmos.crypto.secp256k1.PubKey","key":"A7JSLhhRRXl3/Cfyi1kDQXBsp8yA5Z2BOIPQQ6JzXy7K"},
    "amount": "1000000uward",
    "moniker": "Validator name",
    "identity": "123123123-KEYBASE",
    "website": "Link Website",
    "security": "Contact(Email;X;Telegram)",
    "details": "details validator",
    "commission-rate": "0.1",
    "commission-max-rate": "0.2",
    "commission-max-change-rate": "0.01",
    "min-self-delegation": "1"
}

#and

wardend tx staking create-validator $HOME/validator.json \
--from=wallet \
--fees=250000000000000award \
--chain-id=chiado_10010-1 \
--node=https://rpc.chiado.wardenprotocol.org \
--gas=auto \
--gas-adjustment=1.6 \
-y

// Delegate you Validator (Change token 1ward = 1000000uward)

wardend tx staking delegate $(wardend keys show wallet --bech val -a)  1000000award \
--from=wallet \
--fees=250000000000000award \
--chain-id=chiado_10010-1 \
--node=https://rpc.chiado.wardenprotocol.org \
--gas=auto \
--gas-adjustment=1.6 \
-y

// Withdraw rewards and commission from your validator

wardend tx distribution withdraw-rewards $(wardend keys show wallet --bech val -a) \
--from=wallet \
--fees=250000000000000award \
--chain-id=chiado_10010-1 \
--node=https://rpc.chiado.wardenprotocol.org \
--gas=auto \
--gas-adjustment=1.6 \
-y

//Unjail

wardend tx slashing unjail \
--from=wallet \
--fees=250000000000000award \
--chain-id=chiado_10010-1 \
--node=https://rpc.chiado.wardenprotocol.org \
--gas=auto \
--gas-adjustment=1.6 \
-y

Command:

# Reload Service
sudo systemctl daemon-reload

# Enable Service
sudo systemctl enable wardend

# Disable Service
sudo systemctl disable wardend

# Start Service
sudo systemctl start wardend

# Stop Service
sudo systemctl stop wardend

# Restart Service
sudo systemctl restart wardend

# Check Service Status
sudo systemctl status wardend

# Check Service Logs
sudo journalctl -u wardend -f -o cat
PreviousUpgradeNextSlinky

Last updated 7 months ago

👨‍🏫
🟢
🛟