← 返回
效率工具 中文

XRPL Token Sniping

Monitor XRPL for new token launches, verify issuer flags for safety, and execute fast token buys while managing XRP reserves to minimize risk.
监控 XRPL 上的新代币发行,验证发行者标识以确保安全,快速执行代币购买并管理 XRP 储备以降低风险。
harleyscodes
效率工具 clawhub v1.0.0 1 版本 99900.6 Key: 无需
★ 0
Stars
📥 1,005
下载
💾 11
安装
1
版本
#latest

概述

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

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

// 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

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)

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 08:29 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 115,005
developer-tools

Hedera Transaction Builder

harleyscodes
构建、签名并提交 Hedera 交易,包括 HBAR 转账、代币操作和智能合约调用至 Hedera 网络。
★ 0 📥 1,342
productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 440 📥 148,327