๐Ÿ” Manage Your Validator

If you're running a validator on the QIE blockchain, youโ€™re eligible to earn rewards and commissions. This page explainsโ€”step by stepโ€”how you can:

  • โœ… Check and claim your staking rewards

  • โœ… Check and claim your commission

  • ๐Ÿ”“ Unstake your QIE coins

  • ๐Ÿ” Restake or increase your staking as a validator

This guide is designed to be beginner-friendly. You donโ€™t need to be highly technicalโ€”just follow along carefully.


โœ… How to Check and Claim Your Rewards

When you stake QIE coins, you earn staking rewards. These build up over time, and you can claim them whenever you like.

๐Ÿ” Step 1: Check Your Rewards

  1. Visit the official validator explorer: https://mainnet.qie.digital/validators

  2. Find your validator and click on its name.

  3. On the validator detail page, youโ€™ll see information like:

    • Rank

    • Description

    • Commission

    • Voting power

    • Rewards received

    • Commission received

If the "Rewards received" section shows a number greater than 0 โ€” congratulations! You have rewards to claim.


๐Ÿ’ฐ Step 2: Claim Your Rewards

On the machine where your node is running, run the following command:

qied tx distribution withdraw-rewards <your-validator-address> \
  --from validator \
  --chain-id qie_1990-1 \
  --gas auto \
  --gas-adjustment 1.5 \
  --gas-prices 10000000000aqie \
  --home "$HOME/.qieMainnetNode/" \
  --yes

๐Ÿ“ Note: Youโ€™ll be asked for your wallet password. Enter the one you created when you set up the wallet.

๐Ÿ”Ž How to find your validator address:

Go to https://mainnet.qie.digital/validators, find your validator, and click on its name. Your validator address will be shown at the top of the page.

โœ… Confirm your rewards are claimed:

Check the "Rewards received" again. If the value is now 0 (or very close), youโ€™ve successfully claimed your rewards. You can also check your Metamask wallet to confirm the reward coins have arrived.

๐Ÿ’ผ How to Claim Commission from Delegators

As a validator, you also earn commission from delegators. Hereโ€™s how to claim it.

๐Ÿ” Step 1: Check Commission

  1. Click on your validatorโ€™s name.

  2. Look for the Commission received section. If there's a value greater than 0, you can claim it.


๐Ÿ’ฐ Step 2: Claim Commission

Use the command below from your validator machine:

qied tx distribution withdraw-rewards <your-validator-address> \
  --commission \
  --from validator \
  --chain-id qie_1990-1 \
  --gas auto \
  --gas-adjustment 1.5 \
  --gas-prices 10000000000aqie \
  --home "$HOME/.qieMainnetNode/" \
  --yes

Again, enter your wallet password when prompted.

โœ… Confirm it worked:

Revisit the validator page and check the "Commission received" section. If itโ€™s now 0 or a small amount, the commission has been claimed. You should also see the commission in your Metamask wallet.


๐Ÿ”“ How to Unstake Your QIE Coins

๐Ÿ› ๏ธ This section is still being updated. Please check back later for the step-by-step guide on unstaking your QIE coins. You can also reach out to the QIE team or community for help in the meantime.


๐Ÿ” How to Restake or Increase Your Staking as a Validator

If you want to add more QIE coins to your current stake (or restake previously claimed rewards), follow these steps.

๐Ÿ” Step-by-Step: Increase Your Stake

Use this command on the machine where your validator is running:

qied tx staking delegate <your-validator-address> 10000000000000000000000aqie \
  --from validator \
  --chain-id qie_1990-1 \
  --gas auto \
  --gas-adjustment 1.5 \
  --gas-prices 10000000000aqie \
  --home "$HOME/.qieMainnetNode/" \
  --yes

โ„น๏ธ Important Notes:

  • Validator Address: Find it by visiting https://mainnet.qie.digital/validators, clicking on your validator, and copying the address from the top.

  • Amount in wei: QIE uses 18 decimal places, just like Ethereum.

    • Example:

      • 1 QIE = 1000000000000000000 aqie (in wei)

      • 10,000 QIE = 10000000000000000000000 aqie

    Use this converter to make it easier: https://eth-converter.com/

โœ… After the Transaction

Once the transaction is successful:

  • The staked amount + gas fee will be deducted from your wallet

  • Visit the validator page again to confirm the updated staked amount

  • You can also check your wallet to verify the transaction and balance changes


๐ŸŽ‰ You're All Set!

Managing your validator on QIE doesnโ€™t have to be complex. With these commands and checks, you can keep your validator running smoothly, maximize your earnings, and stay in control of your funds.

If you get stuck or need help, don't hesitate to reach out to the QIE community.


Last updated