# Wallet Health

> Analyze wallet activity and calculate a health/risk score.

- Skill: `jiayaoqijia/wallet-health` (Agent Skill, multi-file: 5 files)
- Install (CLI): `npx skillmds@latest add jiayaoqijia/wallet-health`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jiayaoqijia/wallet-health/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: jiayaoqijia (https://skillmd.com/u/jiayaoqijia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jiayaoqijia/wallet-health

---


# Wallet Health Analyzer

A security skill that profiles an address based on its on-chain footprint. It checks nonce (activity level), balance (liquidity), and contract interaction patterns to assign a rudimentary "Health Score".

## Quick Start

```python
# Analyze a target address
report = await agent.run_tool(
    "wallet_health",
    target_address="0x123..."
)
print(f"Health Score: {report['score']}/100")
```

## Scripts

| Script | Purpose |
|--------|---------|
| [health_score.py](scripts/health_score.py) | Profiling script using `web3` |

## Best Practices

1. Use before interacting with unknown users in a P2P context.
2. High scores indicate active, mature wallets (likely safe).
3. Low scores (fresh wallets with 0 activity) warrant caution.

