Hardware Requirements:
Install Required Dependencies:
sudo apt update
sudo apt install -y build-essential curl git jq
Install Docker and Docker-Compose:
sudo apt install -y docker.io
sudo systemctl enable docker --now
sudo usermod -aG docker $USER
Install Go (version used by Lucidity)
wget <https://go.dev/dl/go1.20.4.linux-amd64.tar.gz>
sudo tar -xvf go1.20.4.linux-amd64.tar.gz -C /usr/local
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
git clone <https://github.com/Lucidity-Finance/lucidity-node.git>
cd lucidity-node
make install
This will compile the node software.
Initialize your node with a unique moniker (replace YourNodeName
with your desired name):
lucidityd init YourNodeName --chain-id lucidity-chain
Download the official genesis file and set the necessary configurations:
curl -o ~/.lucidity/config/genesis.json <https://raw.githubusercontent.com/Lucidity-Finance/lucidity-node/main/genesis.json>
Edit the config.toml
to adjust peer settings:
nano ~/.lucidity/config/config.toml
Add the list of persistent peers (get from official Discord or documentation):
persistent_peers = "<PEER_LIST>"