LayerEdge
Automatic Installation
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/layeredge)
Node
sudo apt-get update
sudo apt-get install -y libzmq3-dev libczmq-dev pkg-config
# Install Go
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/system/go)
git clone https://github.com/layer-edge/verification-layer-tester.git
cd verification-layer-tester
./build.sh
sudo tee /etc/systemd/system/layeredge.service > /dev/null <<EOF
[Unit]
Description=Verification Layer Tester Service
After=network.target
[Service]
Type=simple
User=root
ExecStart=/root/verification-layer-tester/run.sh
Restart=always
RestartSec=5s
WorkingDirectory=/root/verification-layer-tester
StandardOutput=journal
StandardError=journal
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable layeredge
sudo systemctl restart layeredge
journalctl -u layeredge -f -o cat
Last updated
Was this helpful?