Skip to content

Install

Website

Twitter

Discord

GitHub

Explorer


Chain ID: arkeo-main-v1 Latest Version: v1.0.13 Custom Port: 158
Section titled “Chain ID: Latest Version: Custom Port: ”
Specify the name of your “MONIKER” (validator) which will be visible in the explorer
Section titled “Specify the name of your “MONIKER” (validator) which will be visible in the explorer”
MONIKER="YOUR_MONIKER_NAME"
sudo apt update && sudo apt upgrade -y
sudo apt install curl build-essential git jq lz4 ncdu btop -y
cd $HOME
version="1.23.6"
wget "https://golang.org/dl/go$version.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$version.linux-amd64.tar.gz"
rm "go$version.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
cd $HOME
git clone https://github.com/arkeonetwork/arkeo
cd arkeo
git checkout v1.0.13
make install
arkeod version --long | grep -e commit -e version
# Set node configuration
arkeod config set client chain-id arkeo-main-v1
arkeod config set client keyring-backend file
arkeod config set client node tcp://localhost:15857
# Initialize node
arkeod init $MONIKER --chain-id arkeo-main-v1
# Download genesis and addrbook
curl -Ls https://snapshots.moonbridge.org/mainnet/arkeo/genesis.json > $HOME/.arkeo/config/genesis.json
curl -Ls https://snapshots.moonbridge.org/mainnet/arkeo/addrbook.json > $HOME/.arkeo/config/addrbook.json
# Set seeds and peers
SEEDS=""
PEERS=""
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.arkeo/config/config.toml
# Setting minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.001uarkeo\"|" $HOME/.arkeo/config/app.toml
# Setting pruning
sed -i -e 's|^pruning *=.*|pruning = "custom"|' $HOME/.arkeo/config/app.toml
sed -i -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' $HOME/.arkeo/config/app.toml
sed -i -e 's|^pruning-interval *=.*|pruning-interval = "10"|' $HOME/.arkeo/config/app.toml
# Disable indexer
sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.arkeo/config/config.toml
# Enable Prometheus
sed -i -e "s/prometheus = false/prometheus = true/" $HOME/.arkeo/config/config.toml
# Setting custom ports
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:15858\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://0.0.0.0:15857\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:15860\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:15856\"%; s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):15856\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":15866\"%" $HOME/.arkeo/config/config.toml
sed -i -e "s%:1317%:15817%g; s%:8080%:15880%g; s%:9090%:15890%g; s%:9091%:15891%g; s%:8545%:15845%g; s%:8546%:15846%g; s%:6065%:15865%g" $HOME/.arkeo/config/app.toml
mkdir -p $HOME/.arkeo/cosmovisor/genesis/bin
mkdir -p $HOME/.arkeo/cosmovisor/upgrades
cp $HOME/go/bin/arkeod $HOME/.arkeo/cosmovisor/genesis/bin/
sudo tee /etc/systemd/system/arkeod.service > /dev/null << EOF
[Unit]
Description=Arkeo Node
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_NAME=arkeod"
Environment="DAEMON_HOME=$HOME/.arkeo"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable arkeod
curl -o - -L https://snapshots.moonbridge.org/mainnet/arkeo/snapshot_latest.tar.lz4 | lz4 -dc - | tar -x -C $HOME/.arkeo
[[ -f $HOME/.arkeo/data/upgrade-info.json ]] && cp $HOME/.arkeo/data/upgrade-info.json $HOME/.arkeo/cosmovisor/genesis/upgrade-info.json
sudo systemctl start arkeod && sudo journalctl -u arkeod -f --no-hostname -o cat
arkeod keys add wallet
arkeod q bank balances $(arkeod keys show wallet -a)

Get pubkey

arkeod comet show-validator
cd $HOME/.arkeo/config
nano validator.json
{
"pubkey": {"@type":"/cosmos.crypto.ed25519.PubKey","key":"lR1d7YBVK5jYijOfWVKRFoWCsS4dg3kagT7LB9GnG8I="},
"amount": "100000000uarkeo",
"moniker": "YOUR_MONIKER_NAME",
"identity": "YOUR_KEYBASE_ID",
"details": "YOUR_DETAILS",
"website": "YOUR_WEBSITE_URL",
"security": "YOUR_EMAIL_ADDRESS",
"commission-rate": "0.05",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}
arkeod tx staking create-validator $HOME/.arkeo/config/validator.json \
--chain-id arkeo-main-v1 \
--from wallet \
--fees 200uarkeo \
-y
sudo systemctl stop arkeod
sudo systemctl disable arkeod
sudo rm -rf /etc/systemd/system/arkeod.service
sudo systemctl daemon-reload
sudo rm -f $(which arkeod)
sudo rm -rf $HOME/.arkeo
sudo rm -rf $HOME/arkeo