用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/0xAxiom/axiom-public --skill pool-scanner命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Claim creator LP fees for Net Protocol / Banger memecoins on Robinhood Chain from locked Uniswap V3 position NFTs, then optionally use the claimed WETH to buy back the memecoin. Use when the user says "claim Robinhood fees", "claim Hoodie fees", "claim Netr/Banger LP fees", links a Robinhood Blockscout UNI-V3-POS NFT instance, or asks to buy back a Robinhood memecoin with claimed fees. Do NOT use for Base Clanker fee claims or Uniswap V4 positions.
Launch Net Protocol Netr memecoins on Robinhood Chain. Use when the user says "launch a Robinhood token", "deploy a memecoin through Net Protocol", "create a Netr token on Robinhood", "buy the token after launch", or needs Bankr-backed or private-key-backed deployment to chain 4663. Supports direct NET_PRIVATE_KEY signing, Bankr wallet API signing, encode-only transaction generation, gas bridging through Bankr, and post-launch verification.
Encode EVM function calls and constructor args from signature + values. Zero deps.
基于 SOC 职业分类
正在显示 SKILL.md
| name | pool-scanner |
| description | Find Uniswap V2/V3 liquidity pools for any token on Base or Ethereum — reserves, pricing, TVL |
| version | 1.0.0 |
| tags | ["defi","uniswap","liquidity","pools","pricing","base","ethereum"] |
| author | Axiom |
Find all Uniswap V2 and V3 liquidity pools for a given token. Reports reserves, pricing, fee tiers, and concentrated liquidity state.
node pool-scanner.mjs <token-address> [options]
| Flag | Description |
|---|---|
--chain <base|mainnet> | Chain to scan (default: base) |
--v2-only | Only scan Uniswap V2 pools |
--v3-only | Only scan Uniswap V3 pools |
--json | Output as JSON |
# Find all pools for AXIOM on Base
node pool-scanner.mjs 0xf3Ce5d55c1602F3370A3E3C7a03431e40A311F48
# Find DEGEN pools, JSON output
node pool-scanner.mjs 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed --json
# Scan Ethereum for UNI pools, V3 only
node pool-scanner.mjs 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 --chain mainnet --v3-only
getPair() for each quote token, then reads reservesslot0 for pricing and liquidity for depthHuman-readable table showing pool type, address, price, reserves, and liquidity. Use --json for structured output suitable for piping into other tools.
None. Uses eth_call against public RPCs.