Agent skill
lookup-bsv-address
Look up BSV address information using WhatsOnChain API. Shows balance, transaction history, and UTXO details.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/lookup-bsv-address
SKILL.md
Lookup BSV Address
Look up BSV address information using WhatsOnChain API.
When to Use
- Check address balance
- View transaction history
- List unspent outputs (UTXOs)
- Verify address activity
Usage
# Get address info
bun run /path/to/skills/lookup-bsv-address/scripts/lookup.ts <address>
# Get address balance only
bun run /path/to/skills/lookup-bsv-address/scripts/lookup.ts <address> balance
# Get transaction history
bun run /path/to/skills/lookup-bsv-address/scripts/lookup.ts <address> history
# Get UTXOs
bun run /path/to/skills/lookup-bsv-address/scripts/lookup.ts <address> utxos
API Endpoints
WhatsOnChain Address API:
- Balance:
GET /v1/bsv/main/address/{address}/balance - History:
GET /v1/bsv/main/address/{address}/history - UTXOs:
GET /v1/bsv/main/address/{address}/unspent
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?