โ† All skills
Tencent SkillHub ยท Developer Tools

Spacescan

Access Chia blockchain data including blocks, transactions, addresses, CAT tokens, NFTs, network stats, and XCH price via Spacescan.io API with an API key.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Access Chia blockchain data including blocks, transactions, addresses, CAT tokens, NFTs, network stats, and XCH price via Spacescan.io API with an API key.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SKILL.md, cli.js, index.js, install.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

Spacescan Skill

Explore the Chia blockchain via Spacescan.io API.

What It Does

View blocks and transactions Check address balances Monitor network statistics Search blockchain data Track CAT tokens and NFTs Get XCH price

โš ๏ธ API Key Required

Spacescan requires an API key. Get yours at: https://www.spacescan.io/apis Set the environment variable: export SPACESCAN_API_KEY=your_key_here Or add to your shell profile (~/.zshrc or ~/.bashrc): echo 'export SPACESCAN_API_KEY=your_key_here' >> ~/.zshrc source ~/.zshrc

Commands

All commands can be triggered via: /scan <command> in Telegram /spacescan <command> in Telegram scan <command> in CLI spacescan <command> in CLI

Blocks

/scan block latest Get latest block /scan block <height> Get block by height /scan block <hash> Get block by hash /scan blocks <start> <end> Get block range

Transactions

/scan tx <id> Get transaction details

Addresses

/scan address <addr> Get address info /scan address balance <a> Get address balance /scan address txs <addr> Get recent transactions

Coins

/scan coin <id> Get coin details

Network

/scan stats Network statistics /scan network Network info /scan space Network space (EiB) /scan mempool Mempool status /scan price XCH price

Tokens

/scan cats List CAT tokens /scan cat <id> Get CAT details

NFTs

/scan nft <id> Get NFT details

Search

/scan search <query> Search blockchain /scan <long_hash> Quick search

Agent Usage

const { handleCommand } = require('./skills/spacescan'); // Requires SPACESCAN_API_KEY environment variable const output = await handleCommand('block latest');

API Client

const SpacescanAPI = require('./skills/spacescan/lib/api'); const api = new SpacescanAPI('your-api-key'); // Get latest block const block = await api.getLatestBlock(); // Get address balance const balance = await api.getAddressBalance('xch1...'); // Get network stats const stats = await api.getNetworkStats(); // Search const result = await api.search('xch1...');

Installation

cd skills/spacescan npm install chmod +x cli.js npm link # Makes 'scan' and 'spacescan' global

Configuration

Required: Set your API key export SPACESCAN_API_KEY=your_key_here Get your key at: https://www.spacescan.io/apis Free tier available with rate limits.

Examples

Check latest block: /scan block latest Get address balance: /scan address balance xch1... Network stats: /scan stats XCH price: /scan price

Support

Spacescan: https://www.spacescan.io API Plans: https://www.spacescan.io/apis Bug reports: File in skill repository

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Scripts
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs
  • cli.js Scripts
  • index.js Scripts
  • install.sh Scripts