omnia_checkNFTSecurity
Returns security details about an NFT (smart contract possible vulnerabilities, community-related risks).
Parameters
DATA
, 20 Bytes - contractAddress. The NFT smart contract address that is checked. REQUIRED
Returns
Object with following details:
Parameter | Description | Notice |
---|---|---|
| ||
| ||
| It describes the introduction of the NFT. Return โnullโ means there is no description of the NFT. | |
| It describes the ERC protocol of the NFT. Example: "nft_erc": "erc721" | |
| It describes the creator's address of the NFT. Return โnullโ means that we didn't find the creator's address. | |
| It describes the number of blocks created for the NFT. Return โnullโ means that we didn't find the number of blocks created for the NFT. | |
| It describes the website URL of the NFT. Return โnullโ means there is no website URL or didn't find the website URL. | |
| It describes the discord URL of the NFT. Return โnullโ means there is no discord URL or didn't find the discord URL. | |
| It describes the GitHub URL of the NFT. Return โnullโ means there is no GitHub URL or didn't find the GitHub URL. | |
| It describes the Twitter URL of the NFT. Return โnullโ means there is no Twitter URL or didn't find the Twitter URL. | |
| It describes the medium URL of the NFT. Return โnullโ means there is no medium URL or didn't find the medium URL. | |
| It describes the telegram URL of the NFT. Return โnullโ means there is no telegram URL or didn't find the telegram URL. | |
| It describes the numbers of the NFT. | |
| It describes the holders of the NFT. | |
| It describes the average price of the NFT in 24h. | |
| It describes the lowest price of the NFT in 24h. | |
| It describes the sales of the NFT in 24h. | |
| It describes the trading volume of the NFT in 24h. | |
| It describes the total volume of the NFT. | |
| It describes the highest price of the NFT. | |
| It describes whether the NFT is verified. "1" means that the NFT is verified; "0" means that we did not find any information about whether the NFT is verified. | |
| It describes the info of other NFTs with duplicate names and symbols. The info includes: (1) "nft_name" describes the name of the NFT; (2) "nft_symbol" describes the symbol of the NFT; (3) โnft_addressโ describes the address of the NFTs; (4) โnft_owner_numberโ describes the holders of the NFT; (5) โcreate_block_numberโ describes the number of blocks created for the NFT. Return "null" means no NFTs with duplicate names and symbols. | |
| It describes whether the NFT is a famous and trustworthy one. "1" means true; Return "null" means no result. | (1) Only "trust_list": "1" means it is a famous and trustworthy NFT. (2) Return "null" doesn't mean it is risky. |
| It describes whether this NFT has performed malicious behaviors. "1" means true; "0" means false. | Malicious behaviors include random additions, blacklist abuse, falsified transactions, and other high-risk behaviors. Interacting with NFTs flagged as Malicious may contain a high level of risk. |
| It describes whether this contract is open source. "1" means true; "0" means false. | Un-open-sourced contracts may hide various unknown mechanisms and are extremely risky. When the contract is not open source, we will not be able to detect other risk items. |
| It describes whether this NFT contract has a proxy contract. "1" means true; "0" means false; "Null" means unknown. | (1) When "is_open_source": "0", it will return "null". (2) Most Proxy contracts are accompanied by modifiable implementation contracts, and implementation contracts may contain significant potential risk. |
| It describes whether the metadata of this NFT is stored in IPFS, AR, generated by contract, or another decentralized way. "1" means true; "0" means false; "Null" means unknown. | When "is_open_source": "0", it will return "null". |
| It describes whether the NFT owner can burn others' NFT. (1)value The "value" describes the status of the risk. null: the contract is not open source or there is a proxy, it is not possible to detect whether the risk exists. -1: the risk is detected but the ownership gives up. If the detection of a code vulnerability, it can also be considered risk-free. 0: the risk is not detected. 1: the risk is detected, and the owner's address is a common address (EOA), then it can be said that there is a clear risk. 2: The risk is detected, but the owner's address is a contract address, the risk is not significant. 3: The risk is detected, but the owner's address is not detectable / or an array. (2)owner_address Owner_address describes the owner's address. null: the owner's address cannot be fetched. (3)owner_type "blackhole": the owner is a blackhole address. "contract": the owner is a contract. "eoa": the owner is a common address (eoa). "multi-address": the owner is an array/list. null: the address is not detected. | Privileged_burn means that the owner can burn others' NFTs directly through the method. |
| It describes whether the NFT owner can transfer NFT without approval. Other contents are the same as above. | Transfer_without_approval generally means the scammer does not need to get approvals to transfer another address's NFT. One typical example is sleep_minting. Sleep_minting means that the scammer will first add the NFT to a well-known wallet address and then retrieve the NFT. After the value of the NFT has appreciated, it will be put back on the market. |
| It describes whether the NFT contract has minting methods which can only be triggered by an address with special privileges. Other contents are the same as above. | Some minting methods can only be triggered by an address with special privileges. Generally speaking, these are usually for the owner to mint. |
| It describes whether this NFT contract can self-destruct. Other contents are the same as above. | When the self-destruct function is triggered, this contract will be destroyed, all functions will be unavailable, and all related assets will be erased. |
| It describes whether the NFT contract can restrict the approval, resulting in NFT can not be traded on the NFT DEX. "1" means true; "0" means false; "Null" means unknown. | If this risk exists, it means that users will not be able to trade the NFT on the exchange and only privileged users in the whitelist will be able to trade normally. |
| It describes whether this NFT owner can bypass the maximum amount of minting specified in the contract, and continue to mint NFTs beyond this limit. "1" means true; "0" means false; "Null" means unknown. | Oversupply minting refers to the existence of a special mint method in the NFT contract โ the owner can bypass the maximum amount of minting specified in the contract, and continue to mint NFTs beyond this limit. |
Example
Request
Response
Last updated