regen-network / mainnet

Regen Mainnet information and scripts

Home Page:https://docs.regen.network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

  • Step-1: Verify installation

    regen version --long

    it should display the following details:

    name: regen
    server_name: regen
    version: v1.0.0
    commit: 1b7c80ef102d3ae7cc40bba3ceccd97a64dadbfd
    build_tags: netgo,ledger
    go: go version go1.15.6 linux/amd64
  • Step-2: Download the mainnet genesis

    curl -s https://raw.githubusercontent.com/regen-network/mainnet/main/regen-1/genesis.json > ~/.regen/config/genesis.json
  • Step-3: Verify genesis

    jq -S -c -M '' ~/.regen/config/genesis.json | shasum -a 256

    It should be equal to the contents in checksum

  • Step-4: Update seeds and persistent peers

    Open ~/.regen/config/config.toml and update persistent_peers and seeds (comma separated list)

    Persistent peers

    69975e7afdf731a165e40449fcffc75167a084fc@104.131.169.70:26656,d35d652b6cb3bf7d6cb8d4bd7c036ea03e7be2ab@116.203.182.185:26656,ffacd3202ded6945fed12fa4fd715b1874985b8c@3.98.38.91:26656

    Seeds

    aebb8431609cb126a977592446f5de252d8b7fa1@104.236.201.138:26656
  • Step-5: Create systemd

    DAEMON_PATH=$(which regen)
    
    echo "[Unit]
    Description=regen daemon
    After=network-online.target
    [Service]
    User=${USER}
    ExecStart=${DAEMON_PATH} start
    Restart=always
    RestartSec=3
    LimitNOFILE=4096
    [Install]
    WantedBy=multi-user.target
    " >regen.service
  • Step-6: Update system daemon and start regen node

    sudo mv regen.service /lib/systemd/system/regen.service
    sudo -S systemctl daemon-reload
    sudo -S systemctl enable regen
    sudo -S systemctl start regen
    

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>

About

Regen Mainnet information and scripts

https://docs.regen.network


Languages

Language:Go 80.1%Language:Shell 19.6%Language:Makefile 0.2%