← All skills
Tencent SkillHub Β· AI

StonebornBot

High-speed NFT mint bot for Ethereum and EVM chains. Use when the user wants to snipe NFT mints, speed-mint collections, set up multi-wallet minting bots, configure mint sniping with pre-signed transactions, or automate NFT minting across multiple wallets. Supports ERC721A, Archetype contracts, Flashbots, war mode gas, WebSocket monitoring, mempool watching, and batch minting with 100+ wallets.

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

High-speed NFT mint bot for Ethereum and EVM chains. Use when the user wants to snipe NFT mints, speed-mint collections, set up multi-wallet minting bots, configure mint sniping with pre-signed transactions, or automate NFT minting across multiple wallets. Supports ERC721A, Archetype contracts, Flashbots, war mode gas, WebSocket monitoring, mempool watching, and batch minting with 100+ wallets.

⬇ 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, assets/config-template.json, references/archetype.md, references/gas-optimization.md, references/wallet-management.md, scripts/batch-test.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 10 sections Open source page

NFT Mint Bot

Sub-100ms NFT mint sniping bot with multi-wallet support, pre-signed transactions, and multi-RPC broadcasting.

Quick Start

# 1. Setup cd scripts && bash setup.sh && cd .. # 2. Configure cp assets/config-template.json scripts/config.json # Edit scripts/config.json with your RPC URLs, contract, wallets, gas settings # 3. Run (instant mode β€” fire immediately) node scripts/mint-bot.js # 4. Run (monitor mode β€” wait for mint to go live) node scripts/mint-bot.js --mode monitor

Config Overview

Edit scripts/config.json. Key sections: rpcUrl / rpcUrls: Primary and backup RPC endpoints. All used for multi-broadcast. wsRpcUrl: WebSocket RPC for block subscriptions and mempool watching. contract: Target contract address, mint function signature, args, price, max per wallet, ABI. gas: EIP-1559 gas settings (maxFeePerGas, maxPriorityFeePerGas, gasLimit). See gas-optimization.md. wallets: Array of {privateKey, label}. See wallet-management.md. monitoring: Mode (instant or monitor), interval, WebSocket/mempool options. archetype: Archetype ERC721a invite-based minting. See archetype.md. flashbots: Flashbots Protect relay for private tx submission. bankr: Bankr API integration for managed wallets. retry: Max retries and delay between attempts.

Instant Mode ("mode": "instant")

Fire transactions immediately. Use when mint is already live or you know the exact block.

Monitor Mode ("mode": "monitor")

Poll the contract to detect when minting goes live, then fire. Supports: Polling (intervalMs): Check every N ms via staticCall WebSocket blocks (useWebSocket: true): React on new blocks Mempool watching (mempoolWatch: true): Watch pending txs for the mint function Set mintLiveCheck to "staticCall" or use flagFunction to check a specific view function.

Archetype ERC721a Support

Enable for Archetype contracts requiring invite-based minting with auth keys and Merkle proofs. See archetype.md.

War Mode Gas

When gas.warMode.enabled is true, the bot auto-escalates gas when the network is congested, capping at configured maximums. See gas-optimization.md.

Multi-Wallet

Supports 200+ wallets with batched signing. Pre-signs all transactions before broadcast. See wallet-management.md.

Batch Testing

Use scripts/batch-test.js to test wallet signing speed and RPC connectivity without sending real transactions.

Architecture

Pre-signed transactions: All wallets sign before any broadcast Multi-RPC broadcast: Every signed tx sent to all endpoints simultaneously Raw JSON-RPC: Bypasses ethers.js overhead for sends Nanosecond timing: process.hrtime.bigint() for precise measurement Configurable batch sizes: Control parallel signing load

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
4 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • references/archetype.md Docs
  • references/gas-optimization.md Docs
  • references/wallet-management.md Docs
  • scripts/batch-test.js Scripts
  • assets/config-template.json Config