telegram-ethereum-insider-buy-alert — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-ethereum-insider-buy-alert (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.
Flags wallets on Ethereum that buy tokens before public announcements.
from lib.gumloop_telegram import BotConfig, send_alert, build_alert, ScheduledBot, escape_md
import requests, os, jsonconfig = BotConfig(bot_token=os.environ["TELEGRAM_BOT_TOKEN"], chat_id=os.environ["TELEGRAM_CHAT_ID"])
EXPLORER = "https://etherscan.io"def early_buyers(tok, block):
url = f"{EXPLORER}/api?module=account&action=tokentx&contractaddress={tok}&startblock={block}&endblock={block+100}&sort=asc"
buyers = {}
for tx in requests.get(url, timeout=15).json().get("result", []):
addr = tx["to"].lower()
val = float(tx.get("value", 0)) / 10**int(tx.get("tokenDecimal", 18))
buyers[addr] = buyers.get(addr, 0) + val
return buyersfrom flask import Flask, request
app = Flask(__name__)
@app.route("/webhook/insider-check", methods=["POST"])
def check():
data = request.json
buyers = early_buyers(data["token"], data.get("deployBlock", 0))
for addr, amt in sorted(buyers.items(), key=lambda x: -x[1])[:5]:
send_alert(config, f"👀 *Insider Buy*\nToken: {data['token'][:8]}...\nWallet: `{addr[:6]}...`\nAmount: {amt:,.2f}")
return "ok", 200FROM python:3.11-slim
WORKDIR /app
RUN pip install lib-gumloop-telegram requests flask
COPY bot.py .
CMD ["python", "bot.py"]docker build -t tg-eth-insider .
docker run -d -e TELEGRAM_BOT_TOKEN=x -e TELEGRAM_CHAT_ID=y tg-eth-insiderNot financial advice. Insider detection is probabilistic.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.