agentsclimarketplace

Dexranger skill

Skill sashazykov/dexranger-skill

Check crypto tokens for rug pull risk and scams using DEX Ranger. Use when the user wants to check a token's trust score, safety, warnings, or red flags on Ethereum (ETH), Solana (SOL), BSC, or TON. Also use when the user provides a token contract address and wants to know if it's safe, a scam, or a rug pull.From its SKILL.md

Install
npx -y skills add sashazykov/dexranger-skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.2 KB, 542 tokens by cl100k_base, as published. Nobody here has run it

DEX Ranger Token Checker

Check any token on ETH, SOL, BSC, or TON for rug pull risk via dexranger.com. No API key required.

Usage

Run the bundled script:

python3 scripts/dexranger_check.py <CHAIN> <TOKEN_ADDRESS>
python3 scripts/dexranger_check.py <CHAIN> <TOKEN_ADDRESS> --json
python3 scripts/dexranger_check.py <CHAIN> <TOKEN_ADDRESS> --raw
  • Default output: human-readable summary
  • --json: structured JSON (excludes bulky trade_activity)
  • --raw: full JSON including trade_activity

Chain Detection

If the user provides only a token address, infer the chain:

  • Starts with 0x → try ETH, then BSC
  • Base58 string (32-44 chars) → SOL
  • Starts with EQ or UQTON

When unsure, try chains in order: SOLETHBSCTON.

Trust Score

ScoreRatingMeaning
80-100GOODLow risk
50-79WARNINGModerate risk, warning factors
0-49DANGERHigh risk, red flags

Key Response Fields

  • score: Trust score 0-100
  • warnings: Moderate risk factors (e.g., "Pause/Unpause function present")
  • red_flags: High risk factors
  • price, market_cap, total_liquidity: Market data
  • verified: Contract verified (ETH/BSC only)
  • ETH/BSC flags: mint, burn, pause, blacklist, setfees, transferownership, emergencywithdraw
  • SOL flags: mint_authority, freeze_authority, mutable, transfer_fee_config
  • social_links, top5_holders, wp_link, coingecko_id

Presenting Results

When presenting to the user, highlight:

  1. Token name, symbol, and chain
  2. Trust score with rating (GOOD/WARNING/DANGER)
  3. Any warnings or red flags (these are the most important)
  4. Key market data (price, liquidity, market cap)
  5. Notable contract flags that are enabled (pause, mint, blacklist, etc.)
  6. Link to the full report: https://dexranger.com/{CHAIN}/{ADDRESS}/

What ships with it: 2 files

11.7 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,422. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.