{
  "schemaVersion": "1.0",
  "item": {
    "slug": "xrpl-token-snipe",
    "name": "XRPL Token Sniping",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/HarleysCodes/xrpl-token-snipe",
    "canonicalUrl": "https://clawhub.ai/HarleysCodes/xrpl-token-snipe",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/xrpl-token-snipe",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xrpl-token-snipe",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/xrpl-token-snipe"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/xrpl-token-snipe",
    "agentPageUrl": "https://openagent3.xyz/skills/xrpl-token-snipe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xrpl-token-snipe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xrpl-token-snipe/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "Monitor XRPL for new token launches and execute fast purchases before others."
      },
      {
        "title": "FirstLedger Endpoints",
        "body": "WebSocket: wss://xlrps-1.xrpl.link/\nREST: https://xlrps-1.xrpl.link/api/v1/"
      },
      {
        "title": "Subscribe to Transactions",
        "body": "const ws = new WebSocket('wss://xlrps-1.xrpl.link/');\n\nws.send(JSON.stringify({\n  command: 'subscribe',\n  transactions: true\n}));\n\n// Watch for Payment transactions with new tokens\nws.onmessage = (msg) => {\n  const tx = JSON.parse(msg.data);\n  if (tx.TransactionType === 'Payment' && tx.Amount?.currency) {\n    console.log('New token:', tx.Amount);\n  }\n};"
      },
      {
        "title": "Check Issuer Flags",
        "body": "// Key flags to audit before buying:\nconst flags = {\n  lsfDisableMaster: 0x00080000,  // CANNOT mint more - SAFE\n  lsfRipple: 0x00020000,         // Default ripple\n  lsfDefaultRipple: 0x00040000,  // Trustline default\n  lsfRequireAuth: 0x00010000      // Must be authorized\n};\n\n// SKIP if:\n- lsfDisableMaster is NOT set (issuer can rug)\n- No requireAuth (anyone can hold)"
      },
      {
        "title": "Execute Buy",
        "body": "const { Client, Wallet } = require('xrpl');\nconst client = new Client('wss://xrplcluster.com');\n\nconst tx = {\n  TransactionType: 'Payment',\n  Account: wallet.address,\n  Destination: issuerAddress,\n  Amount: {\n    currency: tokenCode, // e.g., 'SYM123'\n    issuer: issuerAddress,\n    value: '100' // Amount to buy\n  },\n  DestinationTag: 1 // For tracking\n};\n\nconst result = await client.submit(tx, { wallet });"
      },
      {
        "title": "Safety Checks",
        "body": "✅ MUST VERIFY:\n\nlsfDisableMaster flag set (no more minting)\nContract ownership renounced\nLiquidity added (check trustlines)\nNot a honeypot (can sell after buying)\n\n❌ SKIP IF:\n\nNo audit\nNo liquidity\nNon-renounced contract"
      },
      {
        "title": "Risk Profile",
        "body": "High risk - Only trade what you can lose\nAlways audit token flags before buying\nKeep XRP reserve for fees (~10 XRP)"
      }
    ],
    "body": "FirstLedger Sniping\nOverview\n\nMonitor XRPL for new token launches and execute fast purchases before others.\n\nFirstLedger Endpoints\nWebSocket: wss://xlrps-1.xrpl.link/\nREST: https://xlrps-1.xrpl.link/api/v1/\nDetect New Tokens\nSubscribe to Transactions\nconst ws = new WebSocket('wss://xlrps-1.xrpl.link/');\n\nws.send(JSON.stringify({\n  command: 'subscribe',\n  transactions: true\n}));\n\n// Watch for Payment transactions with new tokens\nws.onmessage = (msg) => {\n  const tx = JSON.parse(msg.data);\n  if (tx.TransactionType === 'Payment' && tx.Amount?.currency) {\n    console.log('New token:', tx.Amount);\n  }\n};\n\nCheck Issuer Flags\n// Key flags to audit before buying:\nconst flags = {\n  lsfDisableMaster: 0x00080000,  // CANNOT mint more - SAFE\n  lsfRipple: 0x00020000,         // Default ripple\n  lsfDefaultRipple: 0x00040000,  // Trustline default\n  lsfRequireAuth: 0x00010000      // Must be authorized\n};\n\n// SKIP if:\n- lsfDisableMaster is NOT set (issuer can rug)\n- No requireAuth (anyone can hold)\n\nExecute Buy\nconst { Client, Wallet } = require('xrpl');\nconst client = new Client('wss://xrplcluster.com');\n\nconst tx = {\n  TransactionType: 'Payment',\n  Account: wallet.address,\n  Destination: issuerAddress,\n  Amount: {\n    currency: tokenCode, // e.g., 'SYM123'\n    issuer: issuerAddress,\n    value: '100' // Amount to buy\n  },\n  DestinationTag: 1 // For tracking\n};\n\nconst result = await client.submit(tx, { wallet });\n\nSafety Checks\n\n✅ MUST VERIFY:\n\nlsfDisableMaster flag set (no more minting)\nContract ownership renounced\nLiquidity added (check trustlines)\nNot a honeypot (can sell after buying)\n\n❌ SKIP IF:\n\nNo audit\nNo liquidity\nNon-renounced contract\nRisk Profile\nHigh risk - Only trade what you can lose\nAlways audit token flags before buying\nKeep XRP reserve for fees (~10 XRP)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/HarleysCodes/xrpl-token-snipe",
    "publisherUrl": "https://clawhub.ai/HarleysCodes/xrpl-token-snipe",
    "owner": "HarleysCodes",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/xrpl-token-snipe",
    "downloadUrl": "https://openagent3.xyz/downloads/xrpl-token-snipe",
    "agentUrl": "https://openagent3.xyz/skills/xrpl-token-snipe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xrpl-token-snipe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xrpl-token-snipe/agent.md"
  }
}