Welcome to validator AlxVoy ANODE.TEAM



Epix

Epix

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

wget -O Epix.sh https://anode.team/Epix/main/Epix.sh && chmod u+x Epix.sh && ./Epix.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: None required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/EpixZone/EpixChain.git
cd EpixChain
git checkout v0.7.0
make install

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

wget -O $HOME/go/bin/epixd https://anode.team/Epix/main/epixd && chmod +x $HOME/go/bin/epixd

Init the config files

epixd init [moniker] --chain-id None
sed -i "s/chain-id = .*/chain-id = \"None\"/" $HOME/.epixd/config/client.toml

Create a wallet

epixd keys add [wallet_name] --algo eth_secp256k1

Download genesis and addrbook

curl https://anode.team/Epix/main/genesis.json > ~/.epixd/config/genesis.json
curl https://anode.team/Epix/main/addrbook.json > ~/.epixd/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="a32a7e52701de6efecfc4388b4c9f3c086c37387@65.108.229.19:26986"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.epixd/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.001aepix"|g' $HOME/.epixd/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(epixd comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
  "amount": "1000000000000000000000000aepix",
  'moniker": "[moniker]",
  "identity": "[identity]",
  "website": "[website]",
  "details": "[details],
  "security-contact": "[contact]",
  "commission-rate": "0.05",
  "commission-max-rate": "0.20",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1000000000000000000000000"
}" > validator.json
epixd tx staking create-validator validator.json \
    --from AlxVoy \
    --chain-id epix_1916-1 \
    --gas 400000 \
    --gas-prices 40000000000aepix

State-Sync

SNAP_RPC=https://epix.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
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 epixd .epixd
peers="a32a7e52701de6efecfc4388b4c9f3c086c37387@65.108.229.19:26986"
sed -i.bak -e  "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.epixd/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/.epixd/config/config.toml
sudo systemctl restart epixd && journalctl -fu epixd -o cat

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

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

wget -O Epix.sh https://anode.team/Epix/test/Epix.sh && chmod u+x Epix.sh && ./Epix.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: None required. ref
  • Prerequisite: git. ref

Install last binary

git clone https://github.com/EpixZone/EpixChain.git
cd EpixChain
git checkout v0.7.0
make install

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

wget -O $HOME/go/bin/epixd https://anode.team/Epix/test/epixd && chmod +x $HOME/go/bin/epixd

Init the config files

epixd init [moniker] --chain-id None
sed -i "s/chain-id = .*/chain-id = \"None\"/" $HOME/.epixd/config/client.toml

Create a wallet

epixd keys add [wallet_name] --algo eth_secp256k1

Download genesis and addrbook

curl https://anode.team/Epix/test/genesis.json > ~/.epixd/config/genesis.json
curl https://anode.team/Epix/test/addrbook.json > ~/.epixd/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="a32a7e52701de6efecfc4388b4c9f3c086c37387@65.108.229.19:26986"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.epixd/config/config.toml

Add min gas

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.001aepix"|g' $HOME/.epixd/config/app.toml

Set custom ports

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

Pruning and indexer

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

Create the service file

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

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

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

echo "{\"pubkey\":{\"@type\":\"/cosmos.crypto.ed25519.PubKey\",\"key\":\"$(epixd comet show-validator | grep -Po '\"key\":\s*\"\K[^"]*')\"},
  "amount": "1000000000000000000000000aepix",
  'moniker": "[moniker]",
  "identity": "[identity]",
  "website": "[website]",
  "details": "[details],
  "security-contact": "[contact]",
  "commission-rate": "0.05",
  "commission-max-rate": "0.20",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1000000000000000000000000"
}" > validator.json
epixd tx staking create-validator validator.json \
    --from AlxVoy \
    --chain-id epix_1916-1 \
    --gas 400000 \
    --gas-prices 40000000000aepix

State-Sync

SNAP_RPC=https://epix.rpc.m.anode.team:443 && \
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000)); \
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 epixd .epixd
peers="a32a7e52701de6efecfc4388b4c9f3c086c37387@65.108.229.19:26986"
sed -i.bak -e  "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.epixd/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/.epixd/config/config.toml
sudo systemctl restart epixd && journalctl -fu epixd -o cat