$npx -y skills add draguris/dragonclaw --skill four-memeCreate and trade meme tokens on Four.meme (BSC). Includes auto-snipe for new launches, buy/sell with quotes, token rankings, on-chain events, TaxToken queries, transfers, and EIP-8004 NFTs. Use when user asks about Four.meme, creating meme tokens on BSC, sniping new tokens, four.
| 1 | # Four.meme — Token Creation, Trading & Auto-Snipe (BSC) |
| 2 | |
| 3 | ## When to Use |
| 4 | |
| 5 | - User wants to create/launch a meme token on BSC |
| 6 | - User wants to buy or sell tokens on Four.meme |
| 7 | - User wants to auto-snipe new token launches |
| 8 | - User asks about Four.meme rankings, hot tokens, or new launches |
| 9 | - User wants token info, quotes, events, or tax config |
| 10 | - User mentions Four.meme, four-meme, BSC meme token, token sniping |
| 11 | |
| 12 | ## DragonClaw Exclusive: Auto-Snipe |
| 13 | |
| 14 | DragonClaw can watch Four.meme for new token launches 24/7 and auto-buy tokens that match your criteria. This runs in the background — no commands needed after setup. |
| 15 | |
| 16 | OpenClaw's four-meme plugin can only run commands when you ask. DragonClaw's sniper watches, evaluates, and acts on its own. |
| 17 | |
| 18 | ### Start Auto-Snipe |
| 19 | |
| 20 | When the user wants to enable sniping, configure and start: |
| 21 | |
| 22 | ```tool |
| 23 | {"tool": "four_meme_sniper", "action": "start", "config": { |
| 24 | "buyAmountBnb": "0.01", |
| 25 | "labels": ["Meme", "AI"], |
| 26 | "excludeTaxToken": true, |
| 27 | "maxConcurrent": 5, |
| 28 | "notifyOnSnipe": true |
| 29 | }} |
| 30 | ``` |
| 31 | |
| 32 | ### Stop Auto-Snipe |
| 33 | |
| 34 | ```tool |
| 35 | {"tool": "four_meme_sniper", "action": "stop"} |
| 36 | ``` |
| 37 | |
| 38 | ### Check Sniper Status |
| 39 | |
| 40 | ```tool |
| 41 | {"tool": "four_meme_sniper", "action": "status"} |
| 42 | ``` |
| 43 | |
| 44 | ### Update Sniper Config |
| 45 | |
| 46 | ```tool |
| 47 | {"tool": "four_meme_sniper", "action": "update", "config": { |
| 48 | "buyAmountBnb": "0.05", |
| 49 | "labels": ["Meme"] |
| 50 | }} |
| 51 | ``` |
| 52 | |
| 53 | ### Sniper Config Options |
| 54 | |
| 55 | | Option | Default | Description | |
| 56 | |--------|---------|-------------| |
| 57 | | buyAmountBnb | "0.01" | BNB to spend per new token | |
| 58 | | labels | ["Meme", "AI"] | Only snipe tokens with these labels (empty = all) | |
| 59 | | excludeTaxToken | true | Skip tokens with trading tax | |
| 60 | | maxTaxRate | 0 | Max acceptable tax % (0 = no tax) | |
| 61 | | maxConcurrent | 5 | Max snipes per hour | |
| 62 | | cooldownMs | 5000 | Wait between snipes (ms) | |
| 63 | | pollIntervalMs | 3000 | Block scanning interval (ms) | |
| 64 | | notifyOnSnipe | true | Send chat notification on successful buy | |
| 65 | | notifyOnSkip | false | Notify when skipping a token | |
| 66 | |
| 67 | ### What the Sniper Does |
| 68 | |
| 69 | 1. Polls BSC blocks for TokenCreate events on TokenManager2 |
| 70 | 2. For each new token: |
| 71 | - Checks if V2 (V1 not supported) |
| 72 | - Checks if already graduated to DEX (skip) |
| 73 | - Checks tax token status (skip if tax > maxTaxRate) |
| 74 | - Gets buy quote from Helper3 |
| 75 | - Calculates slippage protection |
| 76 | - Executes buyTokenAMAP on TokenManager2 |
| 77 | 3. Sends notification to all connected chat platforms (DingTalk, Telegram, etc.) |
| 78 | 4. Respects rate limits (maxConcurrent per hour, cooldown between buys) |
| 79 | |
| 80 | ### Example Conversations |
| 81 | |
| 82 | ``` |
| 83 | 用户: 帮我监控 Four.meme 新发币,只要 Meme 标签,每个买 0.02 BNB |
| 84 | 龙爪: 已配置 Four.meme 自动狙击: |
| 85 | |
| 86 | 平台: Four.meme (BSC) |
| 87 | 标签: Meme |
| 88 | 金额: 0.02 BNB / 每个新币 |
| 89 | 排除税币: 是 |
| 90 | 每小时上限: 5 个 |
| 91 | |
| 92 | 监控已启动。发现符合条件的新币会自动买入并通知你。 |
| 93 | 说 "停止监控" 随时关闭。 |
| 94 | ``` |
| 95 | |
| 96 | ``` |
| 97 | 用户: 狙击状态怎么样? |
| 98 | 龙爪: Four.meme 狙击状态: |
| 99 | |
| 100 | 状态: 运行中 |
| 101 | 本小时已狙击: 2/5 |
| 102 | 总计狙击: 7 个代币 |
| 103 | 买入金额: 0.02 BNB/个 |
| 104 | 最新区块: 48,234,567 |
| 105 | ``` |
| 106 | |
| 107 | ``` |
| 108 | 用户: 停止 Four.meme 监控 |
| 109 | 龙爪: Four.meme 狙击已停止。共狙击 7 个代币。 |
| 110 | ``` |
| 111 | |
| 112 | ## Manual Trading |
| 113 | |
| 114 | ### Get Token Info (on-chain) |
| 115 | |
| 116 | ```tool |
| 117 | {"tool": "four_meme", "action": "getTokenInfo", "params": {"tokenAddress": "TOKEN_ADDRESS"}} |
| 118 | ``` |
| 119 | |
| 120 | ### Token List (hot, new, graduated) |
| 121 | |
| 122 | ```tool |
| 123 | {"tool": "four_meme", "action": "tokenList", "params": {"orderBy": "Hot", "pageSize": 10}} |
| 124 | ``` |
| 125 | |
| 126 | ### Token Rankings |
| 127 | |
| 128 | ```tool |
| 129 | {"tool": "four_meme", "action": "tokenRankings", "params": {"orderBy": "Hot"}} |
| 130 | ``` |
| 131 | |
| 132 | orderBy: Time (newest), ProgressDesc (bonding curve), TradingDesc (volume), Hot, Graduated |
| 133 | |
| 134 | ### Token Detail |
| 135 | |
| 136 | ```tool |
| 137 | {"tool": "four_meme", "action": "tokenGet", "params": {"tokenAddress": "TOKEN_ADDRESS"}} |
| 138 | ``` |
| 139 | |
| 140 | ### Buy Quote (estimate, no tx) |
| 141 | |
| 142 | ```tool |
| 143 | {"tool": "four_meme", "action": "quoteBuy", "params": {"tokenAddress": "TOKEN_ADDRESS", "fundsWei": "10000000000000000"}} |
| 144 | ``` |
| 145 | |
| 146 | ### Sell Quote (estimate, no tx) |
| 147 | |
| 148 | ```tool |
| 149 | {"tool": "four_meme", "action": "quoteSell", "params": {"tokenAddress": "TOKEN_ADDRESS", "amountWei": "1000000000000000000"}} |
| 150 | ``` |
| 151 | |
| 152 | ### Execute Buy (requires PRIVATE_KEY) |
| 153 | |
| 154 | ```tool |
| 155 | {"tool": "four_meme", "action": "buy", "params": {"tokenAddress": "TOKEN_ADDRESS", "fundsWei": "10000000000000000", "minAmountWei": "0"}} |
| 156 | ``` |
| 157 | |
| 158 | ### Execute Sell (requires PRIVATE_KEY) |
| 159 | |
| 160 | ```tool |
| 161 | {"tool": "four_meme", "action": "sell", "params": {"tokenAddress": "TOKEN_ADDRESS", "amountWei": "1000000000000000000"}} |
| 162 | ``` |
| 163 | |
| 164 | ### Get On-chain Events |
| 165 | |
| 166 | ```tool |
| 167 | {"tool": "four_meme", "action": "getEvents", "params": {"fromBlock": "48000000"}} |
| 168 | ``` |
| 169 | |
| 170 | ### Tax Token Info |
| 171 | |
| 172 | ```tool |
| 173 | {"tool": "four_meme", "action": "getTaxInfo", "params": {"tokenAddress": "TOKEN_ADDRESS"}} |
| 174 | ``` |
| 175 | |
| 176 | ### Send BNB |
| 177 | |
| 178 | ```tool |
| 179 | {"tool": "four_meme", "action": "sendBnb", "params": { |