wallet-pnl

v1.0.0

Analyze any Solana wallet's trading history: win rate, realized PnL, trader type, and copy-trade rating. Use when the user wants to check if a wallet is wort...

0· 285·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, required binary (python3), and primaryEnv (HELIUS_API_KEY) align with the implementation: scripts/pnl.py fetches transactions and RPC data from Helius/Solana to compute PnL and win rates. Minor metadata inconsistency: registry 'Homepage: none' at top vs. clawhub.json/README pointing to a GitHub repo.
Instruction Scope
SKILL.md instructs running the bundled Python code or using the provided HTTP endpoint. The instructions and code only request transaction data (Helius API and Solana RPC) and do not read unrelated local files or environment variables. The API server optionally integrates a payment facilitator for a paid endpoint, which results in outbound requests to the configured FACILITATOR_URL.
Install Mechanism
No automated install script in the registry; the skill is instruction-first and includes source files. Self-hosting instructions use pip with a small set of common Python dependencies (fastapi, uvicorn, requests, aiofiles). No high-risk remote download or obscure install URLs are present.
Credentials
Only HELIUS_API_KEY is declared as required (primaryEnv). That is appropriate for fetching parsed transaction history and Solana RPC access. Optional env vars in the server (PAY_TO, FACILITATOR_URL, PRICE_PER_REQUEST) relate to the documented paid API and are justified by that functionality.
Persistence & Privilege
always is false and the skill does not request persistent system-wide privileges. Hosting the included server is optional and confined to its own process; the skill does not modify other skills or agent configuration.
Assessment
This skill appears to do what it claims: it needs a Helius API key to fetch Solana swap data and will compute PnL locally or via the included API server. Before installing or running: 1) Provide only a Helius API key (no other secrets required). 2) If you use the hosted/paid API, note the $0.03/request facilitator flow — the server will call an external FACILITATOR_URL and may require configuring PAY_TO. 3) If self-hosting, run pip install in an isolated environment (venv/container) and review the PAY_TO/FACILITATOR_URL env vars to avoid unexpected payments. 4) The registry metadata has a minor inconsistency around homepage/source; consider verifying the upstream GitHub repo and reviewing the code yourself if you need stronger assurance.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binspython3
Primary envHELIUS_API_KEY
Environment variables
HELIUS_API_KEYrequired
copy-tradevk97fhn86ykvpg4t8k4fe6hc2fd82bemacryptovk97fhn86ykvpg4t8k4fe6hc2fd82bemadefivk97fhn86ykvpg4t8k4fe6hc2fd82bemalatestvk97fhn86ykvpg4t8k4fe6hc2fd82bemapnlvk97fhn86ykvpg4t8k4fe6hc2fd82bemasmart-moneyvk97fhn86ykvpg4t8k4fe6hc2fd82bemasolanavk97fhn86ykvpg4t8k4fe6hc2fd82bematradingvk97fhn86ykvpg4t8k4fe6hc2fd82bemawallet-analysisvk97fhn86ykvpg4t8k4fe6hc2fd82bemawin-ratevk97fhn86ykvpg4t8k4fe6hc2fd82bema
285downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Solana Wallet PnL Analyzer

Analyze any Solana wallet's swap history to determine if it's worth copy-trading. Returns win rate, realized PnL in SOL, trader classification, and top traded tokens.

Paid API

$0.03 USDC per request via x402 on Base chain:

npx awal@latest x402 pay "https://wallet-pnl-production.up.railway.app/pnl?wallet=WALLET_ADDRESS"

API Response

{
  "wallet": "AbCd...XyZw",
  "summary": {
    "trader_type": "TRADER",
    "copy_rating": "FOLLOW",
    "total_trades": 87,
    "win_rate_pct": 64.3,
    "win_trades": 36,
    "loss_trades": 20,
    "realized_pnl_sol": 12.45,
    "avg_trade_size_sol": 0.85
  },
  "most_traded_tokens": [...],
  "recent_trades": [...]
}

Copy Rating Guide

RatingMeaning
✅ FOLLOWWin rate ≥ 60% and positive PnL — worth copying
⚠️ NEUTRALMixed results — monitor before copying
🚨 AVOIDLow win rate or negative PnL — do not copy

Trader Types

TypeMeaning
WHALEAvg trade > 10 SOL
DEGEN50+ trades, high frequency
TRADERBalanced buy/sell activity
HOLDERMostly buying, holding
INACTIVEFewer than 5 trades found

Self-Hosted

pip install -r {baseDir}/api/requirements.txt
python3 {baseDir}/scripts/pnl.py <WALLET_ADDRESS>

Requires HELIUS_API_KEY for transaction history (free at helius.xyz).

Comments

Loading comments...