🔌 Embeddable Token Scanner
Add a free token safety scanner to any website. One line of HTML. Your users can check any Base chain token for rug pulls, honeypots, and scams.
Live Demo
HTML — One Line
Add to any HTML page:
<script src="https://antigravity-connect-ia.vercel.app/embed.js"></script> <token-scanner-widget></token-scanner-widget>
React / Next.js — npm Package
Install from npm, then use as a component:
npm install token-safety-react
import { TokenScanner } from "token-safety-react";
export default function Page() {
return <TokenScanner theme="dark" />;
}token-safety-react on npm
CLI — From Terminal
Scan any token directly from your terminal:
npx scan-token 0x4200000000000000000000000000000000000006
# Output: 🔍 Scanning 0x420000...000006 ================================================== 🟢 WETH (Wrapped Ether) — Score: 10/10 ================================================== 📝 This is a well-known, verified token with no suspicious patterns. 🔗 Full analysis: ...
base-token-scanner on npm
Node.js — API Client
Use the scanner from any Node.js script:
npm install base-token-safety-client
const { scanToken } = require("base-token-safety-client");
const result = await scanToken("0x420000...");
console.log(result.symbol, result.safetyScore);base-token-safety-client on npm
Options
| Attribute | Values | Default |
|---|---|---|
| theme | "dark" | "light" | dark |
<token-scanner-widget theme="light"></token-scanner-widget>