Tangle Tangle - Mainnet
Chain ID: Tangle
Status:

Network Overview

Tangle Network

Tangle Network is a decentralized blockchain platform offering secure infrastructure services. It allows developers to build modular services, earn rewards for contributing, operate validators, and maximize staked asset utilization through an innovative restaking mechanism.

Installation

  • Install Dependencies
sudo apt install -y git clang curl libssl-dev llvm libudev-dev make protobuf-compiler
  • Download Binary
cd $HOME
wget -O tangle https://github.com/webb-tools/tangle/releases/download/v1.0.11/tangle-default-linux-amd64
sudo chmod +x tangle
sudo mv tangle /usr/local/bin/
mkdir -p $HOME/.tangle/data
  • Create a service
sudo tee /etc/systemd/system/tangle.service > /dev/null <<EOF
[Unit]
Description=tangle node service
After=network-online.target
[Service]
User=$USER
Restart=always
RestartSec=3
LimitNOFILE=65535
ExecStart=$(which tangle) start
    --base-path "$HOME/.tangle/data" \
    --chain tangle-mainnet \
    --name "YourName" \
    --telemetry-url "wss://telemetry.polkadot.io/submit/ 1" \
    --validator \
    --no-mdns
[Install]
WantedBy=multi-user.target
EOF
  • Enable service
sudo systemctl daemon-reload
sudo systemctl enable tangle
sudo systemctl start tangle
  • Check the logs
sudo journalctl -u tangle -f --no-hostname -o cat

Example Output after sync:

2024-01-17 15:50:48 ✨ Imported #115248 (0x7a1e…219e)
2024-01-17 15:50:53 💤 Idle (9 peers), best: #115248 (0x7a1e…219e), finalized #115246 (0xa61e…5f6b), ⬇ 436.7kiB/s ⬆ 603.3kiB/s
2024-01-17 15:50:54 ✨ Imported #115249 (0xb687…7b26)
2024-01-17 15:50:54 ♻️  Reorg on #115249,0xb687…7b26 to #115249,0x3787…9cef, common ancestor #115248,0x7a1e…219e
2024-01-17 15:50:54 ✨ Imported #115249 (0x3787…9cef)
2024-01-17 15:50:58 💤 Idle (9 peers), best: #115249 (0x3787…9cef), finalized #115247 (0x9e42…004b), ⬇ 224.4kiB/s ⬆ 771.8kiB/s
2024-01-17 15:51:00 ✨ Imported #115250 (0x7f47…a17d)
2024-01-17 15:51:03 💤 Idle (9 peers), best: #115250 (0x7f47…a17d), finalized #115248 (0x7a1e…219e), ⬇ 437.9kiB/s ⬆ 399.8kiB/s
2024-01-17 15:51:06 ✨ Imported #115251 (0xed59…f167)
2024-01-17 15:51:08 💤 Idle (9 peers), best: #115251 (0xed59…f167), finalized #115249 (0x3787…9cef), ⬇ 243.4kiB/s ⬆ 537.2kiB/s
2024-01-17 15:51:12 ✨ Imported #115252 (0x98ae…797a)
2024-01-17 15:51:13 💤 Idle (9 peers), best: #115252 (0x98ae…797a), finalized #115249 (0x3787…9cef), ⬇ 314.1kiB/s ⬆ 527.8kiB/s

Start validating your node by following this Guide