Welcome to validator AlxVoy ⚡ ANODE.TEAM



Realio Network

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Realio.sh https://anode.team/Realio/main/Realio.sh && chmod u+x Realio.sh && ./Realio.sh

Installation

Software Requirements

  • Prerequisite: go1.18.5+ required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/realiotech/realio-network
cd realio-network
git checkout v0.9.2
make install

Init the config files

realio-networkd init <moniker> --chain-id realionetwork_3300-1
realio-networkd config chain-id realionetwork_3300-1

Create a wallet

realio-networkd keys add <wallet_name>

Download genesis and addrbook

curl https://anode.team/Realio/main/genesis.json > ~/.realio-network/config/genesis.json
curl https://anode.team/Realio/main/addrbook.json > ~/.realio-network/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="b2e50a471151aecedde282055a8f0e829aa2170b@65.109.29.224:28656,759b796d1f7c8c8362b525aaad2531591762723a@88.198.32.17:46656,5d2c9ea486a09700435ee1c0ba5291f8f1078c96@10.233.89.226:26656,4361e0e3f73ece1e6fcb9f603f0ba4ccd8ae957b@142.132.202.50:39656,9521958ef1eea934bba7f28376b7341e4dbb5f36@65.109.104.118:60856"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.realio-network/config/config.toml

Add min gas

sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0ario\"/" $HOME/.realio-network/config/app.toml

Create the service file

sudo tee /etc/systemd/system/realio-networkd.service > /dev/null <<EOF
[Unit]
Description=Realio Network
After=network-online.target

[Service]
User=$USER
ExecStart=$(which realio-networkd) start
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable realio-networkd
sudo systemctl restart realio-networkd && journalctl -fu realio-networkd -o cat

Create Validator

realio-networkd tx staking create-validator \
  --amount=1000000000000000000ario \
  --pubkey=$(realio-networkd tendermint show-validator) \
  --moniker="<moniker>" \
  --identity="<identity>" \
  --website="<website>" \
  --details="<details>" \
  --security-contact="<contact>" \
  --chain-id="realionetwork_3300-1" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="2000000" \
  --from=<wallet_name>

State-Sync

SNAP_RPC=https://realio.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 500)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) && \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh realio-networkd realio-network
peers="b285929f2a8bc21b13d0057f438a374143fdd2e9@173.214.171.102:26706"
sed -i.bak -e  "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.realio-network/config/config.toml
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ; \
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.realio-network/config/config.toml
sudo systemctl restart realio-networkd && journalctl -fu realio-networkd -o cat

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Service script (Install, State-Sync, Snapshot, Delete)

wget -O Realio.sh https://anode.team/Realio/test/Realio.sh && chmod u+x Realio.sh && ./Realio.sh

Installation

Hardware Requirements

  • Memory 8GM (Recommended 16GB)
  • CPUs 4 cores (Recommended 8 cores)
  • Disk 20GB (Recommended 300GB+)

Software Requirements

  • Prerequisite: go1.18.5+ required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/realiotech/realio-network
cd realio-network
git checkout v0.8.0-rc4
make install

Init the config files

realio-networkd init <moniker> --chain-id realionetwork_3300-2
realio-networkd config chain-id realionetwork_3300-2

Create a wallet

realio-networkd keys add <wallet_name>

Download genesis and addrbook

curl https://anode.team/Realio/test/genesis.json > ~/.realio-network/config/genesis.json
curl https://anode.team/Realio/test/addrbook.json > ~/.realio-network/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="5bd91f6e7e3bcaaddead32fd37d67458723fec73@159.223.132.183:46656,eced2e7edfe6c530ccf319ca7c6ce0b72d1d5570@144.126.196.99:46656,39e84967c02c7c04a0dd4bd426d484a65373d158@206.189.49.63:46656"
sed -i.bak -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.realio-network/config/config.toml

Add min gas

sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0\"/" $HOME/.realio-network/config/app.toml

Create the service file

sudo tee /etc/systemd/system/realio-networkd.service > /dev/null <<EOF
[Unit]
Description=Realio Network
After=network-online.target

[Service]
User=$USER
ExecStart=$(which realio-networkd) start
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

sudo systemctl daemon-reload && sudo systemctl enable realio-networkd
sudo systemctl restart realio-networkd && journalctl -fu realio-networkd -o cat

Create Validator

realio-networkd tx staking create-validator \
  --amount=1000000000000000000ario \
  --pubkey=$(realio-networkd tendermint show-validator) \
  --moniker="<moniker>" \
  --identity="<identity>" \
  --website="<website>" \
  --details="<details>" \
  --security-contact="<contact>" \
  --chain-id="realionetwork_3300-2" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="2000000" \
  --gas auto \
  --from=<wallet_name>

State-Sync

SNAP_RPC=https://realio.rpc.t.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 500)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) && \
echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH
wget https://anode.team/unsafe-reset-all.sh && chmod u+x unsafe-reset-all.sh && ./unsafe-reset-all.sh realio-networkd realio-network
peers="1dcf307315f780d8287ce44c26fe57598bf51333@144.76.97.251:31656"
sed -i.bak -e  "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.realio-network/config/config.toml
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ; \
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.realio-network/config/config.toml
sudo systemctl restart realio-networkd && journalctl -fu realio-networkd -o cat