Home

Awesome

Regen Network Mainnet

Building genesis.json (For admin use)

Execute:

go run . build-genesis regen-1

For pre-launch, we can ignore errors:

go run . build-genesis regen-prelaunch-1 --errors-as-warnings

Join as a validator

Requirements

Check out these instructions for installing regen-ledger@v1.0.0

If you haven't initialized your node, init regen chain by running

regen init --chain-id regen-1 <my_node_moniker>

Start your validator node

That's all! Your node should be up and running now. You can query your node by executing the following command after the genesis time

regen status

Create validator (Optional)

Note: This section is applicable for validators who wants to join post genesis time.

IMPORTANT: Make sure your validator node is fully synced before running this command. Otherwise your validator will start missing blocks.

regen tx staking create-validator \
  --amount=9000000uregen \
  --pubkey=$(regen tendermint show-validator) \
  --moniker="<your_moniker>" \
  --chain-id=regen-1 \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --gas="auto" \
  --from=<your_wallet_name>