🖥️Installation
Hardware Specifications
CPU
RAM
Storage
Network Port
Install Dependencies
sudo apt install --assume-yes git clang curl libssl-dev llvm libudev-dev make protobuf-compilerOpen Port
sudo ufw allow 22; sudo ufw allow 30333Download Binary & Copy to /usr/bin
mkdir -p $HOME/.tangle
wget -O tangle https://github.com/webb-tools/tangle/releases/download/v0.6.1/tangle-testnet-linux-amd64 && chmod +x tangle
sudo cp tangle /usr/bin/Create Daemon Service
sudo tee /etc/systemd/system/tangle.service > /dev/null << EOF
[Unit]
Description=Tangle Validator Node
After=network-online.target
StartLimitIntervalSec=0
[Service]
User=$USER
Restart=always
RestartSec=3
ExecStart=/usr/bin/tangle \
--base-path $HOME/.tangle/data/validator/YourMoniker \
--name YourName \
--chain tangle-testnet \
--auto-insert-keys \
--node-key-file "/home/YourMoniker/node-key" \
--port 30333 \
--telemetry-url "wss://telemetry.polkadot.io/submit/ 0" \
--validator \
--no-mdns
[Install]
WantedBy=multi-user.target
EOFStart Tangle service
Check logs
Bond TNT and setup validator Account

Generate Session Key
Last updated