Overview
- Skill Key
- harleyscodes/xrpl-token-snipe
- Author
- harleyscodes
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/harleyscodes/xrpl-token-snipe
- Latest Commit SHA
- 2634ccdde0da266ced12e3282d4f39b6870a6df7
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Xrpl Token Snipe 技能。 若已安装,则直接安装 Xrpl Token Snipe 技能。
# FirstLedger Sniping
## Overview
Monitor XRPL for new token launches and execute fast purchases before others.
## FirstLedger Endpoints
- **WebSocket**: `wss://xlrps-1.xrpl.link/`
- **REST**: `https://xlrps-1.xrpl.link/api/v1/`
## Detect New Tokens
### Subscribe to Transactions
```typescript
const ws = new WebSocket('wss://xlrps-1.xrpl.link/');
ws.send(JSON.stringify({
command: 'subscribe',
transactions: true
}));
// Watch for Payment transactions with new tokens
ws.onmessage = (msg) => {
const tx = JSON.parse(msg.data);
if (tx.TransactionType === 'Payment' && tx.Amount?.currency) {
console.log('New token:', tx.Amount);
}
};
```
### Check Issuer Flags
```typescript
// Key flags to audit before buying:
const flags = {
lsfDisableMaster: 0x00080000, // CANNOT mint more - SAFE
lsfRipple: 0x00020000, // Default ripple
lsfDefaultRipple: 0x00040000, // Trustline default
lsfRequireAuth: 0x00010000 // Must be authorized
};
// SKIP if:
- lsfDisableMaster is NOT set (issuer can rug)
- No requireAuth (anyone can hold)
```
## Execute Buy
```typescript
const { Client, Wallet } = require('xrpl');
const client = new Client('wss://xrplcluster.com');
const tx = {
TransactionType: 'Payment',
Account: wallet.address,
Destination: issuerAddress,
Amount: {
currency: tokenCode, // e.g., 'SYM123'
issuer: issuerAddress,
value: '100' // Amount to buy
},
DestinationTag: 1 // For tracking
};
const result = await client.submit(tx, { wallet });
```
## Safety Checks
✅ **MUST VERIFY**:
1. `lsfDisableMaster` flag set (no more minting)
2. Contract ownership renounced
3. Liquidity added (check trustlines)
4. Not a honeypot (can sell after buying)
❌ **SKIP IF**:
- No audit
- No liquidity
- Non-renounced contract
## Risk Profile
- **High risk** - Only trade what you can lose
- Always audit token flags before buying
- Keep XRP reserve for fees (~10 XRP)
0xnyk
X Intelligence CLI — search, monitor, analyze, and engage on X/Twitter. TypeScript + Bun. AI agent skill.
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
jackculpan
Track flight prices from Google Flights with this OpenClaw skill. Search routes, monitor prices, and get alerts when prices drop.
openclaw-trade
openclaw trading assistant| openclaw trading skill | nof1.ai & openclaw [moltbot] collaboration | We get the best practices from alpha arena trading seasons and bring it to clawdbot All top AI agents, realtime monitoring and news research, gather info from private insiders and many other! Using Hyperliquid API.
xquik-dev
X (Twitter) automation skill for AI coding agents. Tweet search, user lookup, follower/following extraction, media download, reply/retweet/quote extraction, 40+ tools, account monitoring & trending topics. REST API, MCP server, HMAC webhooks. Works with Claude Code, Cursor, Codex, Copilot, Windsurf & 40+ agents.
mohsinkhadim59
Step-by-step guides for installing and running OpenClaw, an open-source AI agent, on Mac, Linux VPS, and AWS covering setup, security, messaging channels, Google integration, skills, and monitoring.