We'll come.
We are a bright team with neon lights. The Next Generation Crypto-Powered Platform Built on Binance Smart Chain.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
NFTNEON.allowance(address,address).owner (#530) shadows:
- Ownable.owner() (#413-415) (function)
NFTNEON._approve(address,address,uint256).owner (#639) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.
Additional information: link
NFTNEON.updateFee(uint256,uint256,uint256) (#625-633) should emit an event for:
- _TAX_FEE = _txFee * 100 (#627)
- _BURN_FEE = _burnFee * 100 (#628)
- _CHARITY_FEE = _charityFee * 100 (#629)
- ORIG_TAX_FEE = _TAX_FEE (#630)
- ORIG_BURN_FEE = _BURN_FEE (#631)
- ORIG_CHARITY_FEE = _CHARITY_FEE (#632)
Emit an event for critical parameter changes.
Additional information: link
NFTNEON.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address)._FeeAddress (#484) lacks a zero-check on :
- FeeAddress = _FeeAddress (#497)
NFTNEON.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address).tokenOwner (#484) lacks a zero-check on :
- _owner = tokenOwner (#498)
NFTNEON.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address).service (#484) lacks a zero-check on :
- address(service).transfer(msg.value) (#500)
NFTNEON.setAsCharityAccount(address).account (#620) lacks a zero-check on :
- FeeAddress = account (#621)
Check that the address is not zero.
Additional information: link
Address.isContract(address) (#275-284) uses assembly
- INLINE ASM (#282)
Address._functionCallWithValue(address,bytes,uint256,string) (#368-389) uses assembly
- INLINE ASM (#381-384)
Do not use evm assembly.
Additional information: link
NFTNEON.includeAccount(address) (#607-618) has costly operations inside a loop:
- _excluded.pop() (#614)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#368-389) is never used and should be removed
Address.functionCall(address,bytes) (#328-330) is never used and should be removed
Address.functionCall(address,bytes,string) (#338-340) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#353-355) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#363-366) is never used and should be removed
Address.isContract(address) (#275-284) is never used and should be removed
Address.sendValue(address,uint256) (#302-308) is never used and should be removed
Context._msgData() (#18-21) is never used and should be removed
NFTNEON._getTaxFee() (#827-829) is never used and should be removed
SafeMath.mod(uint256,uint256) (#232-234) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#248-251) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.2 (#10) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#302-308):
- (success) = recipient.call{value: amount}() (#306)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#368-389):
- (success,returndata) = target.call{value: weiValue}(data) (#372)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._owner (#405) is not in mixedCase
Parameter NFTNEON.updateFee(uint256,uint256,uint256)._txFee (#625) is not in mixedCase
Parameter NFTNEON.updateFee(uint256,uint256,uint256)._burnFee (#625) is not in mixedCase
Parameter NFTNEON.updateFee(uint256,uint256,uint256)._charityFee (#625) is not in mixedCase
Variable NFTNEON._NAME (#459) is not in mixedCase
Variable NFTNEON._SYMBOL (#460) is not in mixedCase
Variable NFTNEON._DECIMALS (#461) is not in mixedCase
Variable NFTNEON.FeeAddress (#462) is not in mixedCase
Variable NFTNEON._MAX (#464) is not in mixedCase
Variable NFTNEON._DECIMALFACTOR (#465) is not in mixedCase
Variable NFTNEON._GRANULARITY (#466) is not in mixedCase
Variable NFTNEON._TAX_FEE (#475) is not in mixedCase
Variable NFTNEON._BURN_FEE (#476) is not in mixedCase
Variable NFTNEON._CHARITY_FEE (#477) is not in mixedCase
Variable NFTNEON.ORIG_TAX_FEE (#480) is not in mixedCase
Variable NFTNEON.ORIG_BURN_FEE (#481) is not in mixedCase
Variable NFTNEON.ORIG_CHARITY_FEE (#482) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#19)" inContext (#13-22)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in NFTNEON.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address) (#484-502):
External calls:
- address(service).transfer(msg.value) (#500)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#501)
Apply the check-effects-interactions pattern.
Additional information: link
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._getRTransferAmount(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#780) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._transferStandard(address,address,uint256).rTransferAmount (#678) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._transferFromExcluded(address,address,uint256).rTransferAmount (#710) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._getValues(uint256).rTransferAmount (#756) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._standardTransferContent(address,address,uint256,uint256).rTransferAmount (#686) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#701) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON._transferBothExcluded(address,address,uint256).rTransferAmount (#726) is too similar to NFTNEON._transferToExcluded(address,address,uint256).tTransferAmount (#693)
Variable NFTNEON._excludedToTransferContent(address,address,uint256,uint256,uint256).rTransferAmount (#718) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._getValues(uint256).tTransferAmount (#753)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._transferFromExcluded(address,address,uint256).tTransferAmount (#710)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._excludedFromTransferContent(address,address,uint256,uint256,uint256).tTransferAmount (#701)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._transferBothExcluded(address,address,uint256).tTransferAmount (#726)
Variable NFTNEON._transferToExcluded(address,address,uint256).rTransferAmount (#693) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Variable NFTNEON.reflectionFromToken(uint256,bool).rTransferAmount (#587) is too similar to NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).tTransferAmount (#734)
Variable NFTNEON._bothTransferContent(address,address,uint256,uint256,uint256,uint256).rTransferAmount (#734) is too similar to NFTNEON._transferStandard(address,address,uint256).tTransferAmount (#678)
Prevent variables from having similar names.
Additional information: link
NFTNEON._GRANULARITY (#466) should be constant
NFTNEON._MAX (#464) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
owner() should be declared external:
- Ownable.owner() (#413-415)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#432-435)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
name() should be declared external:
- NFTNEON.name() (#504-506)
symbol() should be declared external:
- NFTNEON.symbol() (#508-510)
decimals() should be declared external:
- NFTNEON.decimals() (#512-514)
totalSupply() should be declared external:
- NFTNEON.totalSupply() (#516-518)
balanceOf(address) should be declared external:
- NFTNEON.balanceOf(address) (#520-523)
transfer(address,uint256) should be declared external:
- NFTNEON.transfer(address,uint256) (#525-528)
allowance(address,address) should be declared external:
- NFTNEON.allowance(address,address) (#530-532)
approve(address,uint256) should be declared external:
- NFTNEON.approve(address,uint256) (#534-537)
transferFrom(address,address,uint256) should be declared external:
- NFTNEON.transferFrom(address,address,uint256) (#539-543)
increaseAllowance(address,uint256) should be declared external:
- NFTNEON.increaseAllowance(address,uint256) (#545-548)
decreaseAllowance(address,uint256) should be declared external:
- NFTNEON.decreaseAllowance(address,uint256) (#550-553)
isExcluded(address) should be declared external:
- NFTNEON.isExcluded(address) (#555-557)
totalFees() should be declared external:
- NFTNEON.totalFees() (#560-562)
totalBurn() should be declared external:
- NFTNEON.totalBurn() (#564-566)
totalCharity() should be declared external:
- NFTNEON.totalCharity() (#568-570)
deliver(uint256) should be declared external:
- NFTNEON.deliver(uint256) (#572-579)
reflectionFromToken(uint256,bool) should be declared external:
- NFTNEON.reflectionFromToken(uint256,bool) (#581-590)
updateFee(uint256,uint256,uint256) should be declared external:
- NFTNEON.updateFee(uint256,uint256,uint256) (#625-633)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Average 30d PancakeSwap liquidity is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 10% buy tax and 8% sell tax.
Taxes are low and contract ownership is renounced.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Discord account