Claude Code Plugins

Community-maintained marketplace

Feedback

lookup-bsv-address

@b-open-io/bsv-skills
0
0

Look up BSV address information using WhatsOnChain API. Shows balance, transaction history, and UTXO details.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name lookup-bsv-address
description Look up BSV address information using WhatsOnChain API. Shows balance, transaction history, and UTXO details.
allowed-tools Bash(bun:*)

Lookup BSV Address

Look up BSV address information using WhatsOnChain API.

Status

Complete - All tests passing

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