Installation Node

  • Network Type: Testnet
  • Chain-id: arkeo
  • Current Node version:
  • Hardware requirements

    The following requirements are recommended

    • 4 or more physical CPU cores
    • At least 200GB of SSD disk storage
    • At least 8GB of memory (RAM)
    • At least 100mbps network bandwidth

    Install dependencies Required

    sudo apt update && sudo apt upgrade -y && sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

    Install go

    We are gonna use GO Version 1.19.9 If you already have GO installed you can skip this

    ver="1.20.4"
    cd $HOME
    wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
    sudo rm -rf /usr/local/go
    sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
    rm "go$ver.linux-amd64.tar.gz"
    echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
    source ~/.bash_profile
    go version

    Install binary

    wget https://snap.kynraze.com/test/arkeo/arkeod
    chmod +x arkeod
    mv arkeod $HOME/go/bin/

    Initialize Node

    Please change <MONIKER> To your own Moniker.

    arkeod init $MONIKER --chain-id arkeo
    arkeod init config chain-id arkeo
    arkeod config keyring-backend test

    Download Genesis file and addrbook

    • Genesis
    curl -s http://seed.arkeo.network:26657/genesis | jq '.result.genesis' > $HOME/.arkeo/config/genesis.json
    • Addrbook
    wget -O $HOME/.arkeo/config/addrbook.json https://raw.githubusercontent.com/vinjan23/Testnet.Guide/main/Arkeo/addrbook.json

    Configure Seeds and Peers

    PEERS="d228db1ef905886f0c0511a5830eda4e94611038@:29656,ed6dc23dd027cb0a248abdcad11dd11f3f10fce6@seed.arkeo.network:26656,727929c73968e07bf7a29c91d64eb3fab7269ee8@192.99.160.197:27656"
    SEEDS=""
    sed -i -e "s|^persistent_peers *=.*|persistent_peers = \"$PEERS\"|" $HOME/.arkeo/config/config.toml
    sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" $HOME/.arkeo/config/config.toml
    sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.0uarkeo\"/;" ~/.arkeo/config/app.toml

    config pruning

    pruning="custom"
    pruning_keep_recent="100"
    pruning_keep_every="0"
    pruning_interval="10"
    sed -i -e "s/^pruning *=.*/pruning = \"$pruning\"/" $HOME/.arkeo/config/app.toml
    sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"$pruning_keep_recent\"/" $HOME/.arkeo/config/app.toml
    sed -i -e "s/^pruning-keep-every *=.*/pruning-keep-every = \"$pruning_keep_every\"/" $HOME/.arkeo/config/app.toml
    sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"$pruning_interval\"/" $HOME/.arkeo/config/app.toml

    create service file and start node

    Create service file Create a archwayd.service file in the /etc/systemd/system folder with the following code. You can change USER with your Linux user name. You need sudo previlege to do this step.

    sudo tee /etc/systemd/system/arkeod.service > /dev/null <<EOF
    [Unit]
    Description=arkeo-testnet
    After=network-online.target
    
    [Service]
    User=$USER
    ExecStart=$(which arkeod) start
    Restart=on-failure
    RestartSec=3
    LimitNOFILE=65535
    
    [Install]
    WantedBy=multi-user.target
    EOF
    • Enable Service and Start Node
    sudo systemctl daemon-reload
    sudo systemctl enable arkeod
    sudo systemctl restart arkeod
    sudo journalctl -u arkeod -f -o cat

    Create Validator

    Heads up to the Cheat Sheets to create validator