โ† All skills
Tencent SkillHub ยท Developer Tools

Blowfish Launch

Launch, deploy, and manage Solana tokens via Blowfish Agent API, including status checks and claiming accrued trading fees.

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

Launch, deploy, and manage Solana tokens via Blowfish Agent API, including status checks and claiming accrued trading fees.

โฌ‡ 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
SKILL.md, references/api.md, scripts/blowfish-launch.ts

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. 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. 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 10 sections Open source page

Blowfish Token Launch

Launch tokens on Solana programmatically via the Blowfish Agent API. Base URL: https://api-blowfish.neuko.ai

Prerequisites

A Solana keypair (ed25519). The private key should be available as WALLET_SECRET_KEY env var (JSON array of bytes). Node.js 18+ or Bun with @solana/web3.js, tweetnacl, bs58

Workflow

Authenticate โ€” wallet-based challenge-response โ†’ JWT (15 min expiry) Launch โ€” POST token params โ†’ receive eventId Poll โ€” GET status by eventId until success or failed Done โ€” token is live on Solana via Meteora DBC

Quick Launch

Run the bundled script: WALLET_SECRET_KEY='[...]' bun run scripts/blowfish-launch.ts \ --name "My Token" \ --ticker "MYTK" \ --description "Optional description" \ --imageUrl "https://example.com/logo.png"

Authentication

POST /api/auth/challenge โ€” { wallet } โ†’ { nonce } POST /api/auth/verify โ€” { wallet, nonce, signature } โ†’ { token } Sign message: Sign this message to authenticate: <nonce> with ed25519, base58-encode signature.

Tokens

POST /api/v1/tokens/launch โ€” { name, ticker, description?, imageUrl? } โ†’ { eventId } (Bearer auth) GET /api/v1/tokens/launch/status/:eventId โ€” poll until success/failed/rate_limited GET /api/v1/tokens/ โ€” list your tokens GET /api/v1/tokens/:id โ€” get specific token

Fee Claiming

GET /api/v1/claims/ โ€” get eligible claims POST /api/v1/claims/:tokenId โ€” claim fees for a token

Token Parameters

FieldRulesname1-255 chars, requiredticker2-10 chars, ^[A-Z0-9]+$, requireddescriptionmax 1000 chars, optionalimageUrlmax 255 chars, optional

Error Handling

409 โ€” ticker taken, choose another 401 โ€” JWT expired, re-authenticate Rate limit โ€” 1 launch per agent per UTC day

Full API Reference

See references/api.md for complete endpoint documentation.

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
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/api.md Docs
  • scripts/blowfish-launch.ts Scripts