Became Delegator
💡
Tip: Before you start, it is advisable to have a look at the following documents
First step
Run a node by following the steps above.
Second step
Import a wallet with your TAREAs or create a new wallet and transfer TAREA to it.
areoncli keys add $WALLET
areoncli keys unsafe-import-eth-key $WALLET $PRIVATE
Last step
Once fully synced, delegate to a validator of your choice.
For example 100 AREA;
areoncli delegate $VALIDATOR_ADDRESS 100000000000000000000area \
--from="$WALLET" \
--chain-id="areon_462-1" \
--gas-adjustment="1.5" \
--gas="auto" \
--keyring-backend="file" \
--gas-prices="2500000000area"
Tip: You can use this tool to change species.
Unbond
This method you can use to cancel the coins you delegated.
areoncli unbond $VALIDATOR_ADDRESS 100000000000000000000area \
--from="$WALLET" \
--chain-id="areon_462-1" \
--gas-adjustment="1.5" \
--gas="auto" \
--keyring-backend="file" \
--gas-prices="2500000000area"
Cancel unbond
This method you can use if you want to opt out of the cancellation unbond process.
areoncli tx staking cancel-unbond $VALIDATOR_ADDRESS 100000000000000000000area $BLOCK_HEIGHT \
--from="$WALLET" \
--chain-id="areon_462-1" \
--gas-adjustment="1.5" \
--gas="auto" \
--keyring-backend="file" \
--gas-prices="2500000000area"
Redelegate
This method you can use to transfer your active delegate to another validator.
areoncli redelegate $CURRENT_VALIDATOR_ADDRESS $NEW_VALIDATOR_ADDRESS 100000000000000000000area \
--from="$WALLET" \
--chain-id="areon_462-1" \
--gas-adjustment="1.5" \
--gas="auto" \
--keyring-backend="file" \
--gas-prices="2500000000area"