# Rug Pull Risk Scorer for ERC-20/BEP-20 Tokens

**Use case:** 

Evaluate the rug-pull risk of ERC-20 and BEP-20 tokens. Get a score based on honeypot simulations and liquidity data for safety assessments.

## Input

```json
{
  "tokens": [
    "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
    "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
    "0x6B175474E89094C44Da98b954EedeAC495271d0F"
  ],
  "chainId": 1,
  "maxConcurrency": 1
}
```

## Output

```json
{
  "token": {
    "label": "Token",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "riskLabel": {
    "label": "Risk",
    "format": "text"
  },
  "riskScore": {
    "label": "Score/100",
    "format": "number"
  },
  "isHoneypot": {
    "label": "Honeypot (empty = not checked)",
    "format": "boolean"
  },
  "confidence": {
    "label": "Confidence",
    "format": "text"
  },
  "buyTax": {
    "label": "Buy tax %",
    "format": "number"
  },
  "sellTax": {
    "label": "Sell tax %",
    "format": "number"
  },
  "liquidityUsd": {
    "label": "Liquidity $",
    "format": "number"
  },
  "checksSkipped": {
    "label": "Checks NOT run",
    "format": "array"
  },
  "riskFlags": {
    "label": "Flags",
    "format": "array"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Rug Pull Risk Scorer](https://apify.com/zinin/rug-pull-scorer) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/rug-pull-scorer) to learn more, explore other use cases, and run it yourself.