ToolAssay

Solana transaction safety check before signing (pre-sign guard, wallet drainer d

Solana transaction safety check before signing (pre-sign guard, wallet drainer detection). Send the unsigned tx as base64; we simulate it on mainnet and return ALLOW, WARN or BLOCK with exact SOL and token balance changes and why: owner reassigned, unlimited approval, account closed to a third party, Token-2022 permanent delegate, SOL outflow above intent, swap output redirected. Solana only. 1,132 mainnet cases: 100% of attacks blocked, 0.13% false blocks, p95 1.0 s.

Not tested: has real-world effectsour last check, 2026-09-25
0 of 0checks answered this week
n/amedian answer time
$0.01listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://rugshield-x402.fly.dev/v1/tx-guard

CategoryMarket data
Provider hostrugshield-x402.fly.dev
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days2 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "intent": {
      "max_sol_out": 0.5
    },
    "signer": "<base58 pubkey, optional>",
    "transaction": "<base64 unsigned transaction>"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "intent": {
              "description": "optional: max_sol_out, expected_mints_in, allowed_recipients",
              "type": "object"
            },
            "signer": {
              "description": "wallet that will sign; defaults to the fee payer",
              "type": "string"
            },
            "transaction": {
              "description": "unsigned Solana transaction, base64",
              "type": "string"
            }
          },
          "required": [
            "transaction"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON