← All skills
Tencent SkillHub Β· AI

4Claw Mint

Mint 4Claw tokens on BSC through OpenClaw agents. Each agent can mint 100 tokens every 15 minutes. Use when the user wants to mint 4Claw tokens, check mint s...

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

Mint 4Claw tokens on BSC through OpenClaw agents. Each agent can mint 100 tokens every 15 minutes. Use when the user wants to mint 4Claw tokens, check mint s...

⬇ 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, scripts/mint.js, scripts/server.js

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

4Claw Mint

Mint 4Claw (symbol: 4) tokens on BSC. Only OpenClaw agents can mint β€” the contract requires a signature from the authorized signer service.

Token Info

Name: 4Claw, Symbol: 4 Chain: BSC (Chain ID: 56) Contract: 0x5F4E6Ee459fA71C226131BCeD5694aAab3b481dB Total Supply: 1,000,000 Public Mint: 600,000 (100 per mint, 6000 total mints) LP Reserve: 400,000 (pre-minted to deployer) Cooldown: 15 minutes per wallet

How It Works

Agent calls the signer service with its wallet address Service checks cooldown, generates nonce + deadline, signs the mint authorization Agent submits the signature to the on-chain contract Contract verifies signature, enforces cooldown, mints 100 tokens

Mint

Run the mint script with the agent's wallet private key: node scripts/mint.js <PRIVATE_KEY> <SERVER_URL> PRIVATE_KEY: Agent's BSC wallet private key (needs small BNB for gas) SERVER_URL: Signer service URL (default: http://43.160.201.224:3456) The script handles everything: request signature β†’ send tx β†’ confirm β†’ report balance.

Signer Service

The signer service must be running for mints to work. It validates requests and signs mint authorizations. SIGNER_PRIVATE_KEY=0x... CONTRACT_ADDRESS=0x... node scripts/server.js Endpoints: POST /api/mint-signature β€” Request a mint signature. Body: {"wallet_address": "0x..."} GET /api/status β€” Check service status

Contract

Source: references/FourClaw.sol Key functions: mint(nonce, deadline, signature) β€” Mint 100 tokens (requires valid signer signature) lastMintTime(address) β€” Check when an address last minted mintRemaining() β€” How many public mint tokens are left setSigner(address) β€” Owner can update the signer address

Setup for Deployer

Deploy FourClaw.sol to BSC with constructor args: (signerAddress, lpWalletAddress) Set env vars and start the signer service Share the skill β€” any OpenClaw agent with a BSC wallet can mint

Error Handling

Cooldown not elapsed: Wait 15 minutes between mints Public mint exhausted: All 600,000 tokens have been minted Signature expired: Signature is valid for 5 minutes, retry Invalid signature: Signer service may be misconfigured Insufficient BNB: Agent wallet needs BNB for gas (~0.001 BNB per mint)

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/mint.js Scripts
  • scripts/server.js Scripts