decode-bsv-transaction

📁 b-open-io/bsv-skills 📅 Feb 8, 2026
3
总安装量
3
周安装量
#62140
全站排名
安装命令
npx skills add https://github.com/b-open-io/bsv-skills --skill decode-bsv-transaction

Agent 安装分布

claude-code 3
openclaw 2
gemini-cli 2
replit 2
antigravity 2
cursor 2

Skill 文档

Decode BSV Transaction

Decode BSV transaction hex into human-readable format.

Status

Complete – All tests passing

When to Use

  • Decode raw transaction hex
  • Analyze transaction structure
  • View inputs and outputs
  • Inspect scripts and signatures

Usage

# Decode transaction by hex
bun run /path/to/skills/decode-bsv-transaction/scripts/decode.ts <tx-hex>

# Decode transaction by txid (fetches from chain)
bun run /path/to/skills/decode-bsv-transaction/scripts/decode.ts <txid>

API Endpoints

JungleBus (primary):

  • GET https://junglebus.gorillapool.io/v1/transaction/get/{txid}

WhatsOnChain (fallback):

  • GET https://api.whatsonchain.com/v1/bsv/main/tx/{txid}/hex

Response

Returns decoded transaction with:

  • Version, locktime
  • Inputs (previous outputs, scripts, signatures)
  • Outputs (value, addresses, scripts)
  • Transaction size and fees