telegram-arbitrum-whale-wallet-tracker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telegram-arbitrum-whale-wallet-tracker (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.
Monitors large wallet addresses on Arbitrum for significant token transfers.
from lib.gumloop_telegram import BotConfig, send_alert, build_alert, ScheduledBot, escape_md
import requests, os, json, timeconfig = BotConfig(bot_token=os.environ["TELEGRAM_BOT_TOKEN"], chat_id=os.environ["TELEGRAM_CHAT_ID"])
EXPLORER = "https://arbiscan.io"
WHALES = os.environ.get("WHALE_WALLETS", "").split(",")
MIN_USD = int(os.environ.get("MIN_WHALE_USD", "50000"))def recent_txs(wallet):
url = f"{EXPLORER}/api?module=account&action=tokentx&address={wallet}&sort=desc"
r = requests.get(url, timeout=15).json()
return r.get("result", []) if r.get("status") == "1" else []
def poll():
for w in WHALES:
txs = recent_txs(w.strip())
for tx in txs[:5]:
val = float(tx.get("value", 0)) / 10**int(tx.get("tokenDecimal", 18))
if val > 0:
msg = (
f"🐋 *Whale Move on Arbitrum*\n"
f"Wallet: `{w[:6]}...{w[-4:]}`\n"
f"Token: {escape_md(tx.get('tokenSymbol', '?'))}\n"
f"Amount: {val:,.2f}\n"
f"[Tx]({EXPLORER}/tx/{tx['hash']})"
)
send_alert(config, msg)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-arb-whale .
docker run -d -e TELEGRAM_BOT_TOKEN=x -e TELEGRAM_CHAT_ID=y -e WHALE_WALLETS=0xAddr1,0xAddr2 tg-arb-whale| Platform | Notes |
|---|---|
| Railway | Set env vars, railway up |
| Fly.io | fly secrets set WHALE_WALLETS=... |
| Render | Worker service type |
Not financial advice. Requires reliable RPC/API keys.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.