omnia_checkRugPull
Returns security details indicating whether the token can generate a Rug pull event or not.
Note: A rug pull event means a massive sell-off of the token by the first holders, often time by it's creators.
Parameters
DATA
, 20 Bytes - contractAddress. The contract address that is checked. REQUIRED
Returns
Object with following details:
Parameter | Description | Notice |
| (1) | When there is no owner function, or the ownership is unreadable or private, it would return empty. |
| It describes whether the contract owner can withdraw all the assets in the contract, without users' permission. "1" means true; "0" means false; "-1" means unknown. | |
| It describes whether the contract lacks a withdrawal method. If it is missing, users will be unable to withdraw the assets they have put in. "1" means true; "0" means false; "-1" means unknown. | |
| It describes whether this contract is open source. "1" means true; "0" means false. | |
| It describes whether the contract has a blacklist function that would block users from withdrawing their assets. "1" means true; "0" means false; "-1" means unknown. | |
| Name of the contract. | |
| It describes whether this contract can self-destruct. "1" means true; "0" means false; "-1" means unknown. | |
| It describes whether the owner can spend the allowance obtained by the contract. If so, this function could potentially be abused to steal user assets. "1" means true; "0" means false; "-1" means unknown. | |
| It describes whether this contract has a proxy contract. "1" means true; "0" means false; "-1" means unknown. |
Example
Request
Response
Last updated