Install
openclaw skills install stonebornbotHigh-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.
openclaw skills install stonebornbotSub-100ms NFT mint sniping bot with multi-wallet support, pre-signed transactions, and multi-RPC broadcasting.
# 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
Edit scripts/config.json. Key sections:
{privateKey, label}. See wallet-management.md.instant or monitor), interval, WebSocket/mempool options."mode": "instant")Fire transactions immediately. Use when mint is already live or you know the exact block.
"mode": "monitor")Poll the contract to detect when minting goes live, then fire. Supports:
intervalMs): Check every N ms via staticCalluseWebSocket: true): React on new blocksmempoolWatch: true): Watch pending txs for the mint functionSet mintLiveCheck to "staticCall" or use flagFunction to check a specific view function.
Enable for Archetype contracts requiring invite-based minting with auth keys and Merkle proofs. See archetype.md.
When gas.warMode.enabled is true, the bot auto-escalates gas when the network is congested, capping at configured maximums. See gas-optimization.md.
Supports 200+ wallets with batched signing. Pre-signs all transactions before broadcast. See wallet-management.md.
Use scripts/batch-test.js to test wallet signing speed and RPC connectivity without sending real transactions.
process.hrtime.bigint() for precise measurement