Change Log

This document containts higher overview of changes for the API endpoints. Smaller updates will be posted in the TG channel: https://t.me/honeypotis_news

2024/04/21

  • Docs: fixed incorrect keys risk_level and severity_index to their correct annotation riskLevel and severityIndex.

2024/04/20

  • Added support for Base chain.

2024/03/22

  • Added summary object to response in ishoneypot endpoint. It's a convenient way of getting the most important information about the contract. More Info.
  • Added airdropSummary object to response in ishoneypot endpoint for each token. Docs do not represent this change yet.

2023/12/05

  • Added contractCode to response in ishoneypot endpoint. Contains the open source and proxy information about the contract. More Info. Example:

USDC Example

"contractCode": {
    "openSource": true,
    "rootOpenSource": true,
    "isProxy": true,
    "hasProxyCalls": true
},

2023/08/19

  • Added total holders to token data in the ishoneypot endpoint. Example:

USDC Example

"token": {
    "name": "USD Coin",
    "symbol": "USDC",
    "decimals": 6,
    "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
    "totalHolders": 1755864
},