Summary Flags

List of flags that are present in the summary response from IsHoneypot/Summary endpoint.

Severity

Each flag contains a severity and severity index.
Possible values: "info" (4), "low" (8), "medium" (12), "high" (16), "critical" (20).
There's a gap between the severity index values to allow for future values. Severity index is always unsigned integer (thus positive).
The severity for a flag can change.
In the API response, the severity is in lowercase. Example of a flag in the response:

{
  "flag": "TRANSFER_BLOCKED",
  "description": "Normal transfers between wallets are blocked, those are non-DEX transactions.",
  "severity": "medium",
  "severityIndex": 12
}

The description is the English description of the flag, and can often change or be dynamic.
Flags can be added/removed, as well as their threshold for getting triggered can change. If precision is required, it is recommended to use the results from IsHoneypot instead.

Flags

  • Name
    high_siphon_rate
    Type
    SEVERITY: CRITICAL (20)
    Description

    >10% of users' wallets were siphoned (tokens disappeared from their wallets).

  • Name
    medium_siphon_rate
    Type
    SEVERITY: HIGH (16)
    Description

    Some of the users' wallets were siphoned.

  • Name
    high_fail_rate
    Type
    SEVERITY: CRITICAL (20)
    Description

    A very high amount of users can not sell their tokens.

  • Name
    medium_fail_rate
    Type
    SEVERITY: HIGH (16)
    Description

    A high amount of users can not sell their tokens.

  • Name
    low_fail_rate
    Type
    SEVERITY: MEDIUM (12)
    Description

    Some users cannot sell their tokens.

  • Name
    transfer_blocked
    Type
    SEVERITY: MEDIUM (12)
    Description

    Normal transfers between wallets are blocked, those are non-DEX transactions.

  • Name
    extremely_high_taxes
    Type
    SEVERITY: CRITICAL (20)
    Description

    The taxes on the token are extremely high, making it an effective honeypot.

    Actual rate varies, but generally >50%.

  • Name
    high_tax
    Type
    SEVERITY: HIGH (16)
    Description

    The average tax is very high (>40%).

  • Name
    medium_tax
    Type
    SEVERITY: LOW (8)
    Description

    The average tax is quite high (>21%).

  • Name
    high_gas
    Type
    SEVERITY: LOW (8)
    Description

    The gas usage for selling is very high. This means the TX cost for selling will be high.

    Current gas used to trigger this is 3.5M.

  • Name
    medium_gas
    Type
    SEVERITY: INFO (4)
    Description

    The gas usage for selling is quite high. This means the TX cost for selling will be high.

    Current gas used to trigger this is 2M.

  • Name
    all_snipers_honeypot
    Type
    SEVERITY: INFO (4)
    Description

    All snipers are marked as honeypots (blacklisted). If the token just launched, extra caution is advised.

    Sniper detection still needs some improvements.

  • Name
    some_snipers_honeypot
    Type
    SEVERITY: INFO (4)
    Description

    Some of the snipers were blacklisted, but not all.

  • Name
    effective_honeypot_low_sell_limit
    Type
    SEVERITY: CRITICAL (20)
    Description

    The sell limit for the token is so low, it's effectively a honeypot.

  • Name
    extremely_low_sell_limit
    Type
    SEVERITY: CRITICAL (20)
    Description

    The sell limit for the token is extremely low.

    The threshold is very low, so most likely a honeypot. Hence the severity is critical.

  • Name
    low_sell_limit
    Type
    SEVERITY: CRITICAL (20)
    Description

    The sell limit for the token is low.

    The threshold is very low, so most likely a honeypot. Hence the severity is critical.

  • Name
    one_sell_per_block_limit
    Type
    SEVERITY: MEDIUM (12)
    Description

    Only one sell per block is allowed - this limit is shared by everyone, only one user can sell in a block. This is often found in tax farms and broken tokens.

  • Name
    closed_source
    Type
    SEVERITY: HIGH (16)
    Description

    The source code is not available, allowing for hidden functionality.

  • Name
    custom_token_info
    Type
    SEVERITY: INFO (4)
    Description

    Any extra information exclusively about the token. This is usually manually added hence the name. It could be anything.

    More information regarding this flag will be added as we develop this more.