wget -qO- https://raw.githubusercontent.com/linoxbt/layer-edge-setup/main/setup.sh | bash
then run
chmod +x ~/light-node/setup-light-node.sh
Step 2: Start the Merkle Service
#!/bin/bash
cd ~/light-node/risc0-merkle-service
cargo build && cargo run
then run
chmod +x ~/light-node/start-merkle.sh
then
~/light-node/start-merkle.sh
Step 3: Build and Run the LayerEdge Light Node
#!/bin/bash
cd ~/light-node
./light-node
chmod +x ~/light-node/start-light-node.sh
~/light-node/start-light-node.sh
Step 4: (Optional) Check Points on Dashboard
curl https://light-node.layeredge.io/api/cli-node/points/YOUR_WALLET_ADDRESS
Explanation: Run this command in a terminal, replacing YOUR_WALLET_ADDRESS with your actual wallet address, to check your points via the LayerEdge API.