๐ How to Delegate QIE Coins and Earn Rewards
โ
Step 1: Choose a Validator
Visit the QIE Validators List.
Browse through the validators and copy the validator operator address you want to delegate your QIE coins to.
๐ป Step 2: Clone the QIE Repository
Open your terminal and run the following commands:
cd $HOME
sudo apt-get install wget
wget https://github.com/qieadmin/qiev3-mainnet/releases/download/v3/qiemainnetv3.zip
unzip qiemainnetv3.zip
cd QIEV3Mainnet
Step 3: Add the Binary to Your PATH
๐ง Step 3: Add the Binary to Your PATH
To use the QIEV3Mainnet CLI tool globally:
sudo cp -r ./qied /usr/bin
cd $HOME
๐ Step 4: Import Your Wallet
To delegate coins, you need a wallet with QIE funds. Use the following command to import it:
qied keys add <wallet_name> --recover
Replace
<wallet_name>
with any name you choose for your wallet.Enter your wallet mnemonic phrase when prompted.
Set a password to secure access.
โ ๏ธ Important: Copy and save your wallet address. It will be needed for claiming rewards, checking balances, and more.
๐ฐ Step 5: Delegate QIE to a Validator
โ ๏ธ Ensure your wallet has enough QIE coins before proceeding.
In QIE, 1 QIE = 1,000,000,000,000,000,000 aqie
.
So, when specifying the delegation amount, use aqie
units.
Examples:
10 QIE
10000000000000000000
100 QIE
100000000000000000000
1000 QIE
1000000000000000000000
Run this command to delegate:
qied tx staking delegate <validator_operator_address> 1000000000000000000000aqie \
--from <wallet_name> \
--chain-id qie_1990-1 \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 10000000000aqie \
--node "tcp://node5mainnet.qie.digital:26657"
Replace
<validator_operator_address>
with the validator's address.Replace
<amount>
with the amount of QIE you want to delegate (e.g.,100
).Replace
<wallet_name>
with your wallet's name.
๐ Step 6: Confirm Your Delegation
To verify that your delegation was successful, open the following URL in your browser:
https://validators.qie.digital/cosmos/staking/v1beta1/delegations/<your_wallet_address>
Replace <your_wallet_address>
with the address from Step 4.
If the response includes your validator and delegation amount, congratulations โ youโve successfully delegated QIE coins and started earning rewards!
โ
You're Done!
You're now officially staking and helping to secure the QIE network. ๐ Donโt forget to monitor your rewards and keep your keys safe.
Last updated