Welcome to validator AlxVoy ANODE.TEAM



Konstellation

Konstellation

Links

Mainnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Wasm

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

wget -O Konstellation.sh https://anode.team/Konstellation/main/Konstellation.sh && chmod u+x Konstellation.sh && ./Konstellation.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/konstellation/konstellation
cd konstellation
git checkout v0.6.2
make install

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

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

Init the config files

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

Create a wallet

knstld keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Konstellation/main/genesis.json > ~/.knstld/config/genesis.json
curl https://anode.team/Konstellation/main/addrbook.json > ~/.knstld/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="50a6af6c8fd1cbc4745c018d44d84dc5b365d9e3@144.76.97.251:39656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.knstld/config/config.toml

Add min gas

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

Set custom ports

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

Pruning and indexer

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

Create the service file

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

[Service]
User=root
ExecStart=$(which knstld) start
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

knstld tx staking create-validator \
  --amount=1000000udarc \
  --pubkey=$(knstld tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="darchub" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="200udarc" \
  --from=[wallet_name]

Testnet service

Explorers

Sync

RPC & API

Peers and seeds

Genesis and addrbook

Wasm

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

wget -O Konstellation.sh https://anode.team/Konstellation/test/Konstellation.sh && chmod u+x Konstellation.sh && ./Konstellation.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/konstellation/konstellation
cd konstellation
git checkout v0.6.2
make install

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

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

Init the config files

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

Create a wallet

knstld keys add [wallet_name]

Download genesis and addrbook

curl https://anode.team/Konstellation/test/genesis.json > ~/.knstld/config/genesis.json
curl https://anode.team/Konstellation/test/addrbook.json > ~/.knstld/config/addrbook.json

Add peers, seed

SEEDS=""
PEERS="50a6af6c8fd1cbc4745c018d44d84dc5b365d9e3@144.76.97.251:39656"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.knstld/config/config.toml

Add min gas

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

Set custom ports

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

Pruning and indexer

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

Create the service file

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

[Service]
User=root
ExecStart=$(which knstld) start
Restart=always
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF

Load service and start

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

Create Validator

knstld tx staking create-validator \
  --amount=1000000udarc \
  --pubkey=$(knstld tendermint show-validator) \
  --moniker="[moniker]" \
  --identity="[identity]" \
  --website="[website]" \
  --details="[details]" \
  --security-contact="[contact]" \
  --chain-id="darchub" \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --fees="200udarc" \
  --from=[wallet_name]