Welcome to validator AlxVoy ANODE.TEAM



Realio

Realio

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

Hardware Requirements

  • Memory 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.23.6 required. ref
  • Prerequisite: git. ref

Install last binary

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

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/realio-networkd https://anode.team/Realio/main/realio-networkd && chmod +x $HOME/go/bin/realio-networkd

Init the config files

realio-networkd init [moniker] --chain-id realionetwork_3301-1
sed -i "s/chain-id = .*/chain-id = \"realionetwork_3301-1\"/" $HOME/.realio-network/config/client.toml

Create a wallet

 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="df74d8e45b853d7e9785e0d7594f223b7fe73775@162.220.162.178:26716"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.realio-network/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0ario"|g' $HOME/.realio-network/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .realio-network

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.realio-network/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.realio-network/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.realio-network/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.realio-network/config/config.toml

Create the service file

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

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

[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

echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(realio-networkd comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
    "amount": "1000000000000000000ario",
    "moniker": "[moniker]",
    "identity": "[identity]",
    "website": "[website]",
    "details": "[details],
    "security-contact": "[contact]",
    "commission-rate": "0.10",
    "commission-max-rate": "0.20",
    "commission-max-change-rate": "0.01",
    "min-self-delegation": "1"
}" > validator.json
realio-networkd tx staking create-validator validator.json \
    --from [wallet_name] \
    --chain-id realionetwork_3301-1 \
    --gas-prices 7ario \
    --gas 200000

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 16GB
  • CPUs Quad Core or larger AMD or Intel (amd64) CPU
  • Disk At least 500GB NVMe Storage

Software Requirements

  • Prerequisite: go1.23.6 required. ref
  • Prerequisite: git. ref

Install last binary

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

if an error has occurred, you can simply download the binary

wget -O $HOME/go/bin/realio-networkd https://anode.team/Realio/test/realio-networkd && chmod +x $HOME/go/bin/realio-networkd

Init the config files

realio-networkd init [moniker] --chain-id realionetwork_3301-1
sed -i "s/chain-id = .*/chain-id = \"realionetwork_3301-1\"/" $HOME/.realio-network/config/client.toml

Create a wallet

 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="df74d8e45b853d7e9785e0d7594f223b7fe73775@162.220.162.178:26716"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.realio-network/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0ario"|g' $HOME/.realio-network/config/app.toml

Set custom ports

curl -sSL https://anode.team/set-ports.sh | bash -s -- .realio-network

Pruning and indexer

sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.realio-network/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.realio-network/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.realio-network/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.realio-network/config/config.toml

Create the service file

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

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

[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

echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(realio-networkd comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
    "amount": "1000000000000000000ario",
    "moniker": "[moniker]",
    "identity": "[identity]",
    "website": "[website]",
    "details": "[details],
    "security-contact": "[contact]",
    "commission-rate": "0.10",
    "commission-max-rate": "0.20",
    "commission-max-change-rate": "0.01",
    "min-self-delegation": "1"
}" > validator.json
realio-networkd tx staking create-validator validator.json \
    --from [wallet_name] \
    --chain-id realionetwork_3301-1 \
    --gas-prices 7ario \
    --gas 200000