Trading Security
Method: GET
Request Headers
Parameters | Type | Required | Description |
---|---|---|---|
Authorization | String | False |
Security items | Parameter | Description | Notice |
Buy Tax | buy_tax | It describes the tax when buying the token. Example: "buy_tax": 0.1%. Empty string (i.e., "") means unknown. | (1) When "is_in_dex": "0", there will be no return. (2) Buy tax will cause the actual value received when buying a token to be less than expected, and too much buy tax may lead to heavy losses. (3) When "buy_tax": "1", it means buy tax is 100% or cannot buy. (4) Sometimes token's anti-bot mechanism would affect our sandbox system, leading to "cannoy_buy": "1", causing the display of "buy_tax": "1". (5)Some of the token is deisgned not for sale, leading to "cannot_buy":1, causing the display of "buy_tax": "1". |
Sell Tax | sell_tax | It describes the tax when selling the token. Example: "sell_tax": 0.1%. Empty string (i.e., "") means unknown. | (1) When "is_in_dex": "0", there will be no return. (2) Sell tax will cause the actual value received when selling a token to be less than expected, and too much buy tax may lead to large losses. (3) When "sell_tax": "1", it means sell-tax is 100% or this token cannot be sold. (4) Sometimes token's trading-cool-down mechanism would affect our sandbox system. When "trading_cooldown": "1", "sell_tax" may return "1". |
Cannot be bought | cannot_buy | It deiscribes whether the Token can be bought. "1" means true; "0" means false; No return means unknown. | (1) Generally, "cannot_buy": "1" would be found in Reward Tokens. Such Tokens are issued as rewards for some on-chain applications and cannot be bought directly by users. (2) Sometimes token's anti-bot mechanism would affect our sandbox system, causing the display of "buy_tax": "1". (3) When “cannot_buy”: "1", our sandbox system might be bloked, causing the display of "buy_tax": "1" and "sell_tax": "1" |
Cannot Sell All | cannot_sell_all | It describes whether the contract has the function restricting token holder selling all the token. "1" means true; "0" means false; No return means unknown. | (1) When "is_in_dex": "0", there will be no return. (2) This feature means that you will not be able to sell all your tokens in a single sale. Sometimes you need to leave a certain percentage of the token, e.g. 10%, sometimes you need to leave a fixed number of token, such as 10 token. (3) When "buy_tax": "1", there will be no return. |
Modifiable Tax | slippage_modifiable | It describes whether the trading tax can be modifiable by token contract.
"1" means true;
"0" means false; No return means unknown. | (1) When When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3) Token with modifiable tax means that the contract owner can modify the buy tax or sell tax of the token. This may cause some losses, especially since some contracts have unlimited modifiable tax rates, which would make the token untradeable. (4) This function generally relies on ownership. When the contract does not have an owner (or if the owner is a black hole address) and the owner cannot be retrieved, this function will most likely be disabled. |
Honeypot | is_honeypot | It describes whether the token is a honeypot. "HoneyPot" means that the token maybe cannot be sold because of the token contract's function, Or the token contains malicious code. "1" means true; "0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3) Hight risk, definitely scam. |
Pausable Transfer | transfer_pausable | It describes whether trading can be pausable by token contract.
"1" means true;
"0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3) This feature means that the contract owner will be able to suspend trading at any time, after that anyone will not be able to sell, except those who have special authority. (4) This function generally relies on ownership. When the contract does not have an owner (or if the owner is a black hole address) and the owner cannot be retrieved, this function will most likely be disabled. |
Blacklist | is_blacklisted | It describes whether the blacklist function is not included in the contract. If there is a blacklist, some addresses may not be able to trade normally.
"1" means true;
"0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3) The contract owner may add any address into the blacklist, and the token holder in blacklist will not be able to trade. Abuse of the blacklist function will lead to great risks. (4) For contracts without an owner (or the owner is a black hole address), the blacklist will not be able to get updated. However, the existing blacklist is still in effect. |
Whitelist | is_whitelisted | It describes whether the whitelist function is not included in the contract. If there is a whitelist, some addresses may not be able to trade normally.
"1" means true;
"0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3) Whitelisting is mostly used to allow specific addresses to make early transactions, tax-free, and not affected by transaction suspension. (4) For contracts without an owner (or the owner is a black hole address), the whitelist will not be able to get updated. However, the existing whitelist is still in effect. |
In main Dex | is_in_dex | It describes whether the token can be traded on the main Dex.
"1" means true;
"0" means false | It only counts when the token has a marketing pair with mainstream coins/tokens. |
Dex info | dex | It describes Dex information of where the token that can be traded.
Example: "dexs"[{"name":"PancakeV2","liquidity":1.350124503851149,"pair":"0x714876f7cc6978a44967aBaF89B5a947a3B4906d"}] | (1) When "is_in_dex": "0", there will be empty array. (2) It only counts when the token has a marketing pair with mainstream coins/tokens. (3) Liquidity is converted to USDT denomination. |
Anti Whale | is_anti_whale | It describes whether the contract has the function to limit the maximum amount of transactions or the maximum token position that for single address. "1" means true; "0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. |
Modifiable anti whale | anti_whale_modifiable | It describes whether the contract has the function to modify the maximum amount of transactions or the maximum token position. "1" means true; "0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3)When the anti whale value is set to a very small value, all tradinge would fail. |
Trading with CooldownTime | trading_cooldown | It describes whether the contract has trading-cool-down mechanism which can limits the minimum time between two transactions. "1" means true; "0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. |
Assinged Address' Slippage is Modifiable | personal_slippage_modifiable | It describes whether the owner can set a different tax rate for every assigned address. "1" means ture; "0" means false; No return means unknown. | (1) When "is_open_source": "0", there will be no return. (2) Sometimes, when "is_proxy": "1", there will be no return. (3) The contract owner may set a very outrageous tax rate for assigned address to block it from trading. Abuse of this funtcion will lead to great risks. (4) For contracts without an owner (or the owner is a black hole address), this function would not able to be used. However, the existing tax rate would be still in effect. |
Last modified 8d ago