Your crypto intelligence agent on Telegram. Real-time prices, charts, market data, trending coins, Fear & Greed and custom price alerts — free, no sign-up.
- 🌐 Website: clawclawxbot.xyz
- 🤖 Bot: @Clawclawx_bot
- 🪙 Token: $CLAWX (Solana)
ℹ️ Information & education only — not financial advice. The bot never holds funds, keys or places trades.
.
├── index.html # landing page
├── docs.html # bot documentation
├── governance.html # $CLAWX governance
├── styles.css # dark / red glassmorphism theme
├── script.js # scroll reveal, countdown, typewriter, marquee
├── assets/ # images (logo, mascot, section art)
└── bot/ # Telegram bot (Python)
├── bot.py
├── requirements.txt
├── .env.example # copy to .env and fill in secrets
├── setup.sh # one-shot VPS setup (deps + systemd)
└── clawclawx-bot.service
Plain static HTML/CSS/JS — host anywhere. Currently served on shared hosting at clawclawxbot.xyz.
cd bot
python3 -m venv .venv
./.venv/bin/pip install -r requirements.txt
cp .env.example .env # then edit .env and add your BOT_TOKEN
./.venv/bin/python bot.pyCreate your bot token with @BotFather. Crypto data comes from the free CoinGecko API; on-chain Solana data uses Helius (optional).
/p /info /chart /convert · /top /trending /gainers /losers /global /feargreed · /tokenomics /launch /sol · /watch /unwatch /watchlist · /alert /alerts /delalert
Runs on a Linux VPS via systemd. On the server:
cd ~/clawclawx-bot && bash setup.sh # installs deps + service
nano .env # add BOT_TOKEN
sudo systemctl restart clawclawx-botOnly one polling instance may run at a time (otherwise Telegram returns 409 Conflict).
OpenClaw · MoltBook · ClawdBot · Anthropic Claude · AWS · Solana · Helius · CoinGecko · Telegram · python-telegram-bot
Never commit bot/.env (it holds your bot token & API keys) — it is git-ignored. Rotate keys if they are ever exposed.


