Installation

Automatic Installation

source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/tangle)

Manual Installation

# Update the repositories
apt update && apt upgrade -y
apt install curl iptables build-essential git wget jq make gcc nano tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev libgmp3-dev tar clang bsdmainutils ncdu unzip llvm libudev-dev make protobuf-compiler -y
# Update or install rust
if command -v rustup &> /dev/null; then
    rustup update
else
    curl https://sh.rustup.rs -sSf | sh
    source $HOME/.cargo/env
fi
rustc --version
cd $HOME
git clone https://github.com/webb-tools/tangle.git
cd tangle/
git checkout v0.6.1
cargo build --release
cp target/release/tangle /usr/local/bin/
tangle --version

Check your node in telemetry

Validator

  1. Create polkadot.js account or connect your subwallet

  2. Set on-chain identity

  3. Join to discord

  4. Go to #-faucet channel and send message with your address (!send 5FejFZ55......) for request tokens

  • Go to Network - Staking - Accounts and add stash

  • Connect your stash account with your node

Paste key from terminal to browser

  • Active validator

  • Check your validator

Last updated

Was this helpful?