Validator Migration Guidelines

This section contains instructions for prior Validators needing to migrate. This does not apply to new Validators.

Please follow the instruction below to ensure a smooth migration process for your Validator Node.

Migration Steps

  1. Download the migration script migrate_node.sh:

curl -O https://entangle-public.s3.amazonaws.com/migrate_node.sh
  1. Run the downloaded script for migrating a node to a new chain:

bash migrate_node.sh
  1. Receive NGL tokens to your account using the Entangle faucet via the Discord channel.

  2. After successfully synchronizing Entangle blocks and receiving NGL tokens to your account, you can use them to start a validator. To do that, specify the number of tokens you are staking for the validator as amount and use the key name from Step 2 as from.

entangled tx staking create-validator \
--amount="5000000000000000000aNGL" \
--pubkey=$(entangled tendermint show-validator) \
--moniker="validator" \
--chain-id=entangle_33133-1 \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--gas=500000 \
--gas-prices="10aNGL" \
--from=<key_name>

Note

  • Blocks will start generating at a rate of one block per second.

  • 1 NGL token equals 1000000000000000000 aNGL.


If you encounter any issues or require assistance, do not hesitate to reach out to the Entangle team or the community for support via the Entangle Discord channel.

Last updated