> For the complete documentation index, see [llms.txt](https://docs.validator247.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.validator247.com/tanssi.md).

# Tanssi

Server Required

```
4 Core, 8Gb ram, 200Gb SSD NVMe
```

**INFO**

```
Website: https://www.tanssi.network/
Discord: https://discord.com/invite/kuyPhew2KB
X: https://twitter.com/TanssiNetwork
Github: https://github.com/moondance-labs/tanssi
```

## Update system

```
sudo apt update && apt upgrade -y
sudo 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
```

## &#x20;**Download binary**

```
sudo mkdir -p $HOME/tanssi-data
sudo chmod +x  $HOME/tanssi-data
cd $HOME/tanssi-data
https://github.com/moondance-labs/tanssi/releases/download/v0.8.1/tanssi-node && chmod +x tanssi-node
wget https://raw.githubusercontent.com/papermoonio/external-files/main/Tanssi/Dancebox/dancebox-raw-specs.json
wget https://raw.githubusercontent.com/papermoonio/external-files/main/Moonbeam/Moonbase-Alpha/westend-alphanet-raw-specs.json
cd $HOME
relay="_relay"
```

## &#x20;**Create service:**

```
MONIKER=<Your_validator_Name>
```

```
sudo tee /etc/systemd/system/tanssid.service > /dev/null << EOF
[Unit]
Description=Tanssi Validator Node
After=network-online.target
StartLimitIntervalSec=0
[Service]
User=$USER
Restart=always
RestartSec=3
LimitNOFILE=65535
ExecStart=$HOME/tanssi-data/tanssi-node \
--chain=dancebox \
--name=$MONIKER \
--base-path=$HOME/tanssi-data/para \
--state-pruning=2000 \
--blocks-pruning=2000 \
--collator \
--telemetry-url='wss://telemetry.polkadot.io/submit/ 0' \
--database paritydb \
-- \
--name=tanssi-appchain \
--base-path=$HOME/tanssi-data/container \
--telemetry-url='wss://telemetry.polkadot.io/submit/ 0' \
-- \
--name=$MONIKER \
--chain=westend_moonbase_relay_testnet \
--sync=fast \
--base-path=$HOME/tanssi-data/relay \
--state-pruning=2000 \
--blocks-pruning=2000 \
--telemetry-url='wss://telemetry.polkadot.io/submit/ 0' \
--database paritydb \

[Install]
WantedBy=multi-user.target
EOF

sudo systemctl daemon-reload
sudo systemctl enable tanssid
```

## **Launch Node**

```
sudo systemctl restart tanssid
sudo journalctl -u tanssid -f -o cat 
```

## Check Validator&#x20;

```
https://telemetry.polkadot.io/#list/0x27aafd88e5921f5d5c6aebcd728dacbbf5c2a37f63e2eda301f8e0def01c43ea
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.validator247.com/tanssi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
