Telegram solana new token launch scanner
Skill 0xgetz/xi-agent-skills/telegram-bots/telegram-solana-new-token-launch-scanner
Build a Telegram bot to detect new token deployments on Solana, with on-chain/market data sourcing, risk/honeypot filtering, and Telegram alert delivery. Activate when the user wants to detect new token deployments on Solana and get alerts in Telegram.From its SKILL.md
npx -y skills add 0xgetz/xi-agent-skills --skill telegram-solana-new-token-launch-scannerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 454 tokens by cl100k_base, as published. Nobody here has run it
Telegram Solana New Token Launch Scanner
Overview
A Telegram bot skill that helps detect new token deployments on Solana. It is a research/monitoring tool that pushes timely alerts to a Telegram chat or channel — it does not guarantee profit and does not place trades for you unless you explicitly wire that in.
When to use this skill
Activate when the user wants to detect new token deployments on Solana and receive alerts in Telegram.
Architecture
- Data source — pull from on-chain RPC/indexers (e.g. Etherscan-style APIs, DEX subgraphs), market-data APIs (CoinGecko/DEXScreener-style), or social feeds.
- Detection logic — apply thresholds/filters (volume, liquidity, holders, contract checks) to find candidates.
- Risk filtering — run safety checks (honeypot, LP lock, holder concentration) before alerting.
- Telegram delivery — send formatted alerts via the Telegram Bot API
sendMessage. - Scheduling — run on a poll interval or webhook.
Telegram delivery pattern
import requests, os
TOKEN = os.environ["TELEGRAM_BOT_TOKEN"] # store as a secret, never hardcode
CHAT_ID = os.environ["TELEGRAM_CHAT_ID"]
def alert(text):
requests.post(f"https://api.telegram.org/bot{TOKEN}/sendMessage",
json={"chat_id": CHAT_ID, "text": text, "parse_mode": "Markdown"})
Safety checklist (critical for alpha hunting)
- Verify the token is sellable (honeypot check) before acting.
- Check liquidity is locked/burned and not removable by the deployer.
- Inspect holder concentration — avoid tokens where a few wallets hold most supply.
- Review the contract for mint, blacklist, fee-change, and proxy functions.
- Assume most new tokens fail; size any exposure as money you can fully lose.
Disclaimer
High-risk and educational. No profit is guaranteed. This is not financial advice. New/low-cap tokens carry extreme risk of total loss, rug pulls, and scams.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.