telegram-polygon-rug-pull-risk-scanner — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-polygon-rug-pull-risk-scanner (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Scores token contracts on Polygon for rug-pull indicators (mint, blacklist, proxy, tax).
from lib.gumloop_telegram import BotConfig, send_alert, build_alert, ScheduledBot, escape_md
import requests, os, json, reconfig = BotConfig(bot_token=os.environ["TELEGRAM_BOT_TOKEN"], chat_id=os.environ["TELEGRAM_CHAT_ID"])
EXPLORER = "https://polygonscan.com"RISKY_PATTERNS = re.compile(r"(mint|blacklist|pause|setTax|upgradeTo|transferOwnership|setMaxTx|cooldown)", re.I)
def score(tok):
s, r = 0, []
try:
resp = requests.get(f"{EXPLORER}/api?module=contract&action=getsourcecode&address={tok}", timeout=15).json()
src = resp.get("result", [{}])[0].get("SourceCode", "")
if not src:
s += 3
r.append("Source unverified")
else:
matches = RISKY_PATTERNS.findall(src)
s += len(matches) * 1.5
if matches:
r.append(f"Risky functions: {', '.join(set(matches))}")
# Check proxy via EIP-1967
except:
s += 3
r.append("API error")
em = "🟢" if s <= 3 else "🟡" if s <= 6 else "🔴"
s = min(s, 10)
send_alert(config, f"{em} *Rug Scan on Polygon*\nScore: {s}/10\n{'; '.join(r) if r else 'No issues found'}")FROM python:3.11-slim
WORKDIR /app
RUN pip install lib-gumloop-telegram requests
COPY bot.py .
CMD ["python", "bot.py"]docker build -t tg-poly-rug .
docker run -d -e TELEGRAM_BOT_TOKEN=x -e TELEGRAM_CHAT_ID=y tg-poly-rug| Platform | Notes |
|---|---|
| Railway | Add POLY_ETHERSCAN_KEY as env var |
| Fly.io | fly secrets set ETH_ETHERSCAN_KEY=... |
| Render | Web service, configure env vars |
Not financial advice. Heuristic only; sophisticated rug contracts may evade detection.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.