Installation Node

  • Network Type: Testnet
  • Chain-id: limonata_10777-1
  • Current Node version: v0.2.0
  • 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
    apt install zip

    Install go

    ver="1.24.5"
    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://github.com/Limonata-Blockchain/limonata/releases/download/limonata-testnet-v0.2.0/limonatad-linux-amd64.tar.gz
    tar xzf limonatad-linux-amd64.tar.gz
    chmod +x limonatad
    mv limonatad /usr/local/bin/
    rm -rf limonatad-linux-amd64.tar.gz

    Initialize Node

    Please change <MONIKER> To your own Moniker.

    limonatad init <Moniker> --chain-id limonata_10777-1

    Download Genesis file and addrbook

    • Genesis
    curl -L https://snapshot.vinjan-inc.com/limonata/genesis.json > $HOME/.evmd/config/genesis.json
    • Addrbook
    curl -L https://snapshot.vinjan-inc.com/limonata/addrbook.json > $HOME/.evmd/config/addrbook.json

    Configure Seeds and Peers

    peers="f8bef28f14306bb9b70e026bcc3c89b6188a6688@95.216.102.220:19156"
    sed -i -e "s|^persistent_peers *=.*|persistent_peers = \"$peers\"|" $HOME/.evmd/config/config.toml
    sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0aLIMO\"/" $HOME/.evmd/config/app.toml
    sed -i -E "s|type = \".*\"|type = \"app\"|g" $HOME/.evmd/config/config.toml

    Indexer

    sed -i 's|^indexer *=.*|indexer = "null"|' $HOME/.evmd/config/config.toml

    create service file and start node

    sudo tee /etc/systemd/system/limonatad.service > /dev/null <<EOF
    [Unit]
    Description=limonata
    After=network-online.target
    [Service]
    User=$USER
    ExecStart=$(which limonatad) start --chain-id limonata_10777-1 --evm.evm-chain-id 10777 --minimum-gas-prices 0aLIMO
    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 limonatad
    • Use Statesync

    Statesync

    sudo systemctl restart limonatad
    sudo journalctl -u limonatad -f -o cat