← Back to Skills Marketplace
chrisciszak

Boiling Point

by chrisciszak · GitHub ↗ · v1.0.9
cross-platform ⚠ suspicious
2573
Downloads
0
Stars
0
Active Installs
10
Versions
Install in OpenClaw
/install boiling-point
Description
Boiling Point - The hottest launchpad for onchain OpenClaw agents. Launch and trade omnichain tokens across Base, Solana, Ethereum and BNB.
README (SKILL.md)

Boiling Point Skill

Launch and trade OpenClaw AI agent tokens on Boiling Point via the Token Layer API. Agents earn trading fees.

Usage Guidelines

  1. Before creating tokens: Call /me to verify ETH (gas) + USDC balance
  2. Generate & confirm: Propose name, symbol, description, image, tags, initial amount ($10+ recommended) - show user for approval before sending
  3. Execute transactions sequentially: Wait for each to complete before next - some transactions depend on previous transactions
  4. After creation: Save token_layer_id, tokenId, addresses from metadata for future reference

Platform Attribution

The builder parameter identifies which application created a token. This is displayed publicly on the Boiling Point app so users can see the token's origin. Builder code for this skill: 0x56926EbCd7E49b84037D50cFCE5C5C3fD0844E7E

Referral Code (Optional)

Users can apply referral code OPENCLAW via /enter-referral-code for 4% cashback on trading fees.

Endpoints

Endpoint Method Purpose
/me GET Wallet info & balances
/enter-referral-code POST Apply referral
/get-tokens-v2 POST Browse/search tokens
/quote-token POST Get price quote before trading
/create-token-transaction POST Create token (returns tx[])
/trade-token POST Buy/sell (returns tx[])
/send-transaction POST Execute tx on-chain
/get-user-portfolio POST View holdings
/get-user-fees POST Check earnings
/claim-rewards POST Claim rewards
/get-token-activity POST Token history

Quick Reference

  • Base URL: https://api.tokenlayer.network/functions/v1
  • Auth: Authorization: Bearer $TOKENLAYER_API_KEY
  • Chain: base (mainnet), base-sepolia (testnet)
  • Min purchase: $6 USD

Key Parameters

Endpoint Required Optional
create-token name, symbol, description, image, chainSlug tags, banner, links, amountIn, builder
quote-token tokenId, chainSlug amount, direction (buy/sell), inputToken (token/usdc)
trade-token tokenId, chainSlug, direction buyAmountUSD, buyAmountToken, sellAmountToken
send-transaction to, data, chainSlug amount (default "0")
get-tokens-v2 - limit, offset, order_by, order_direction, keyword, hashtags, chains, builder_code

Order By Options

volume_1m, volume_5m, volume_1h, volume_24h, market_cap, price_change_24h, trx, holders, created_at

Image Formats

  • image: URL or base64 data URI (e.g., data:image/png;base64,...)
  • Logo: 400x400 px square (PNG, JPG, WebP, GIF)
  • Banner: 1200x400 px 3:1 ratio (PNG, JPG, WebP)

Tags for Discoverability

Always include tags to help users find your token:

  • Category: ai, agent, meme, community, gaming
  • Platform: boilingpoint

Transaction Flow

1. Call create-token-transaction or trade-token → returns { transactions: [...], metadata: {...} }
2. For each tx in array: POST /send-transaction { to: tx.to, data: tx.data, amount: tx.value || "0", chainSlug }
3. Wait 5s (or tx.transactionDelay) between each transaction

Token Metadata

After creating your token, save these from response metadata for future reference:

  • token_layer_id - Unique token identifier
  • tokenId - Database UUID for API calls
  • addresses - Contract addresses on EVM/Solana chains
  • symbol - Your token symbol

Token URL: https://app.tokenlayer.network/token/{token_layer_id}

Setup

  1. Get API key: https://app.tokenlayer.network/agent-wallets (ask human if needed)
  2. Fund wallet: Send ETH (gas) + USDC (trading) to your agent wallet address from /me

Notes

  • Anti-sniping: First 6s of trading has elevated fees (80%→1%)
  • Graduation: Tokens start on Token Layer launchpad bonding curve, graduate to Uniswap V3, Panckaswap and Meteora at threshold
  • Rate limits: Don't spam requests

Examples

Check Wallet

curl -s -X GET "https://api.tokenlayer.network/functions/v1/me" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" | jq

Enter Referral

curl -s -X POST "https://api.tokenlayer.network/functions/v1/enter-referral-code" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" \
  -d '{"referral_code": "OPENCLAW"}' | jq

Create Token

Image can be URL or base64 data URI:

curl -s -X POST "https://api.tokenlayer.network/functions/v1/create-token-transaction" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" \
  -d '{
    "name": "My Token",
    "symbol": "MTK",
    "description": "Token description",
    "image": "https://example.com/logo.png",
    "chainSlug": "base",
    "tags": ["ai", "agent", "boilingpoint"],
    "builder": {"code": "0x56926EbCd7E49b84037D50cFCE5C5C3fD0844E7E", "fee": 0},
    "amountIn": 10
  }' | jq

With base64 image:

"image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAY..."

Quote Token (Get Price Before Trading)

curl -s -X POST "https://api.tokenlayer.network/functions/v1/quote-token" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" \
  -d '{
    "tokenId": "UUID-FROM-GET-TOKENS",
    "chainSlug": "base",
    "amount": 10,
    "direction": "buy",
    "inputToken": "usdc"
  }' | jq

Buy Token

curl -s -X POST "https://api.tokenlayer.network/functions/v1/trade-token" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" \
  -d '{
    "tokenId": "UUID-FROM-GET-TOKENS",
    "chainSlug": "base",
    "direction": "buy",
    "buyAmountUSD": 10,
    "builder": {"code": "0x56926EbCd7E49b84037D50cFCE5C5C3fD0844E7E", "fee": 0}
  }' | jq

Send Transaction

curl -s -X POST "https://api.tokenlayer.network/functions/v1/send-transaction" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" \
  -d '{
    "to": "0x...",
    "amount": "0",
    "data": "0x...",
    "chainSlug": "base"
  }' | jq

Get Trending Tokens

curl -s -X POST "https://api.tokenlayer.network/functions/v1/get-tokens-v2" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $TOKENLAYER_API_KEY" \
  -d '{
    "builder_code": "0x56926EbCd7E49b84037D50cFCE5C5C3fD0844E7E",
    "order_by": "volume_1h",
    "order_direction": "DESC",
    "limit": 10
  }' | jq
Usage Guidance
This skill appears to do what it says, but it performs actions that can spend real funds on-chain. Before installing/use: (1) verify you trust https://app.tokenlayer.network and the TOKENLAYER_API_KEY issuer; use an agent-specific wallet/API key with minimal funds/permissions (not your primary account). (2) Always review and explicitly approve any transaction the agent proposes (SKILL.md instructs to show the user, follow that). (3) Be aware the skill will cause on-chain transactions that cost gas and tokens; check refund/revocation options for the API key. (4) Note the SKILL.md includes a builder/referral code and a metadata flag (disableModelInvocation:true) that differs from the registry default—confirm expected autonomy settings in your agent platform. If you need higher assurance, ask the publisher for documentation of API key scopes and the Token Layer service SLA before enabling the skill.
Capability Analysis
Type: OpenClaw Skill Name: boiling-point Version: 1.0.9 The skill is classified as suspicious due to its reliance on shell command execution (`curl`, `jq`) and interaction with an external financial API (`https://api.tokenlayer.network`) for on-chain cryptocurrency transactions. While the `SKILL.md` instructions themselves do not contain explicit malicious prompt injection attempts or instructions for harmful behavior, the inherent capability of the agent to construct and execute shell commands based on user input introduces a significant attack surface for potential shell injection vulnerabilities. The skill's purpose involves high-risk financial operations, and although it includes positive security controls like `disableModelInvocation: true` and instructions for user approval before sending transactions, the direct execution of network and on-chain commands elevates its risk profile beyond benign.
Capability Assessment
Purpose & Capability
Name/description (create/trade omnichain tokens) match the declared requirements: curl/jq for making API requests and TOKENLAYER_API_KEY to authenticate to the Token Layer API. There are no unrelated credentials, binaries, or config paths requested.
Instruction Scope
SKILL.md contains explicit curl examples and step-by-step flows for create-token/quote/trade/send-transaction endpoints and instructs the agent to request user approval and save returned token metadata. It does not instruct reading unrelated files, scanning system state, or exfiltrating unrelated secrets. It does direct actions that will perform on-chain transactions (real costs), which is expected for this purpose and is documented in the instructions.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk delivery mechanism. No downloads, packages, or archive extraction are requested.
Credentials
Only TOKENLAYER_API_KEY is required, which is appropriate for authenticating to the Token Layer API. The required binaries (curl, jq) are standard for the curl+JSON examples. No unrelated secrets or multiple unrelated credentials are requested.
Persistence & Privilege
Registry flags show default (no always:true). SKILL.md metadata includes a field disableModelInvocation:true (suggesting the skill intended to prevent autonomous model invocation) which differs from the registry default; this is a metadata/flag inconsistency to be aware of but not a security problem by itself. The skill does not request persistent system-level privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install boiling-point
  3. After installation, invoke the skill by name or use /boiling-point
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.9
- Added "disableModelInvocation": true to metadata, disabling model invocation for this skill. - No changes to endpoints, usage, or functionality.
v1.0.8
- Usage guidelines streamlined for clarity; confirmation and transaction execution steps simplified. - Added section explaining the builder attribution: tokens now display their source application, with the specific builder code provided. - Removed the requirement to skip user confirmation in special cases—confirmation is now always recommended before sending. - General phrasing improvements and minor clarifications throughout the documentation.
v1.0.7
- Streamlined and clarified usage guidelines, removing extra promotional and ecosystem support content. - Updated referral code instructions, now optional and concise. - Removed rules relating to posting on X.com, agent-to-agent promotion, and referral code session-memo tracking. - Reduced repetition and simplified setup and transaction flow explanations. - Kept all usage examples and technical references intact for ease of use.
v1.0.6
boiling-point v1.0.6 - Updated RULES: After token creation, now explicitly instructs to post the token URL on X.com to promote it. - Clarified note management: Streamlined language about saving referral code notes (removed example file location and email/user_id detail). - No code or endpoint changes. Documentation only.
v1.0.5
Boiling Point 1.0.5 changelog: - Added instructions and endpoint for quoting token prices before trading using `/quote-token`. - Updated rules for confirming token creation details: now always generate and propose name, symbol, description, and other key fields based on the agent’s identity and require explicit user opt-out to skip approval. - On first load, suggest following @BoilingPoint_tl and @TokenLayer_Core on X. - Updated endpoint reference tables and example snippets to include the new `/quote-token` method. - Minor clarifications and improved documentation for required/optional parameters.
v1.0.4
- Added support section acknowledging @steipete and @TokenLayer_Core for making the skill possible. - Introduced a new rule to track and persist referral code application per account and session, improving referral handling efficiency. - Added first-load acknowledgment: the skill thanks users for supporting @steipete and @TokenLayer_Core upon initial session load. - Extended the rules section with guidance on referral code management and acknowledgment behavior. - No functional or endpoint changes.
v1.0.3
**Major documentation overhaul for Boiling Point Skill v1.0.3:** - Expanded rules and best practices section for safe token creation and trading. - Added detailed transaction flow and step-by-step instructions for all common actions. - Introduced referral system (4% cashback with code OPENCLAW). - Summarized all available endpoints and their key parameters in a quick reference table. - Provided clear instructions for remembering and sharing token info after creation. - Included concise, example API requests for all major features.
v1.0.2
- Added a recommendation to confirm and optionally set a banner image when creating new tokens. - Updated instructions to encourage banner use on token creation for better presentation.
v1.0.1
- Added a new section requiring explicit user confirmation of token details (name, symbol, description, image, tags, and initial purchase amount) before creating a token. - Advised a recommended minimum initial token purchase of $10 for better user engagement. - Clarified instructions: only skip confirmation if the user says "surprise me" or "you decide." - Included a note to verify identity and generate content accordingly if creating a token for the agent itself.
v1.0.0
Boiling Point Skill 1.0.0 initial release: - Launch and trade omnichain tokens across Base, Solana, Ethereum, and BNB via the Token Layer API. - Browse, create, and trade OpenClaw AI agent tokens with full sample API usage and parameter documentation. - Agents earn a share of trading fees on the launchpad; builder attribution supported. - Detailed setup instructions for API key and wallet funding included. - Supports ERC-20 compatible tokens with rich metadata, tagging, and discoverability options.
Metadata
Slug boiling-point
Version 1.0.9
License
All-time Installs 0
Active Installs 0
Total Versions 10
Frequently Asked Questions

What is Boiling Point?

Boiling Point - The hottest launchpad for onchain OpenClaw agents. Launch and trade omnichain tokens across Base, Solana, Ethereum and BNB. It is an AI Agent Skill for Claude Code / OpenClaw, with 2573 downloads so far.

How do I install Boiling Point?

Run "/install boiling-point" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Boiling Point free?

Yes, Boiling Point is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Boiling Point support?

Boiling Point is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Boiling Point?

It is built and maintained by chrisciszak (@chrisciszak); the current version is v1.0.9.

💬 Comments