Token Risk Assessment (Deprecated)

Description

We conduct risk assessments on token contracts from various aspects such as contract code security, physical security, business security, and special permissions.

Tips

  1. Currently, the chains we support are ETH, BSC, Avalanche, Arbitrum, Optimism.

Basic Info

  • Request method: GET

  • Interface URL: https://api.beosin.com/api/v2/kyt/token/risk

  • Content-Type: application/json

  • Verification method: SIGN

Header Request Parameter

Parameter
Required Field (Y/N)
Parameter Type
Description

Y

String

Unique authentication APPID assigned by KYT system

Y

String

Unique authentication APP-SECRET assigned by KYT system

Query Parameter

Parameter
Required Field (Y/N)
Parameter Type
Description

Y

String

Chain ID

address

Y

String

Address Hash

Return Parameter

Parameter
Parameter Type
Description

code

Number

Status code

msg

String

Result Message

data

Object

Result set

data.contractName

String

Contract Name

data.riskLevel

String

Contract risk level(severe、high、medium、low)

data.isFrailty

Boolean

Are there any obvious loopholes in the contract or not

data.deployerIsBlack

Boolean

Is deployer a malicious address

data.ownerIsBlack

Boolean

Is owner a malicious address

data.isMintable

Boolean

Are additional shares can be issued

data.canTakeBackOwnership

Boolean

Is ownership can be retrieved

data.selfDestruct

Boolean

Is this token can self destruct

data.externalCall

Boolean

Is there a risk of external contract calls

data.gasAbuse

Boolean

Is there any gas abuse

data.isAntiWhale

Boolean

Is there a maximum selling limit

data.slippageModifiable

Boolean

Is it affected by the risk of transaction tax modification

data.ownerChangeBalance

Boolean

Is balance can be changed by owner

data.hiddenOwner

Boolean

Is there a hidden owner

Example of Request Data

https://api.beosin.com/api/v2/kyt/token/risk?chainId=56&address=0xea51801b8f5b88543ddad3d1727400c15b209d8f

Example of Response Data

{
  "code": 200,
  "msg": "success",
  "data": {
    "contractName": "Inuko Coin",
    "riskLevel": "severe",
    "isFrailty": true,
    "deployerIsBlack": true,
    "ownerIsBlack": true,
    "isMintable": false,
    "canTakeBackOwnership": false,
    "selfDestruct": false,
    "externalCall": false,
    "gasAbuse": false,
    "isAntiWhale": true,
    "slippageModifiable": true,
    "ownerChangeBalance": false,
    "hiddenOwner": true
  }
}

Error Code

Error Code
Description

41001

unsupported platform.

41022

Address hash error.

41015

please try later.

Last updated