Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
AioNFTMetaverse.addLiquidity(uint256,uint256) (#781-794) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in AioNFTMetaverse._transfer(address,address,uint256) (#694-738):
External calls:
- swapAndLiquify(contractTokenBalance) (#727)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#727)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#913)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurn) (#922)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#843)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#844)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _rTotal = _rTotal.sub(rFee) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _tOwned[burnAddress] = _tOwned[burnAddress].add(tBurn) (#924)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#915)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#847)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#849)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#851)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#852)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- swapAndLiquifyEnabled = true (#803)
Apply the check-effects-interactions pattern.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
AioNFTMetaverse.addLiquidity(uint256,uint256) (#781-794) ignores return value by dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
Ensure that all the return values of the function calls are used.
Additional information: link
AioNFTMetaverse._approve(address,address,uint256).owner (#686) shadows:
- Ownable.owner() (#365-367) (function)
Rename the local variables that shadow another component.
Additional information: link
AioNFTMetaverse.setBuyTaxes(uint256,uint256,uint256) (#580-587) should emit an event for:
- _buyReflectFee = reflectFee (#584)
- _buyLiquidityFee = liquidityFee (#585)
- _buyBurnFee = burnFee (#586)
AioNFTMetaverse.setSellTaxes(uint256,uint256,uint256) (#589-596) should emit an event for:
- _sellReflectFee = reflectFee (#593)
- _sellLiquidityFee = liquidityFee (#594)
- _sellBurnFee = burnFee (#595)
AioNFTMetaverse.setmaxSellAmount(uint256) (#614-616) should emit an event for:
- maxSellTransactionAmount = value (#615)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in AioNFTMetaverse._transfer(address,address,uint256) (#694-738):
External calls:
- swapAndLiquify(contractTokenBalance) (#727)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#727)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _burnFee = 0 (#945)
- _burnFee = _buyBurnFee (#949)
- _burnFee = _sellBurnFee * 2 (#954)
- _burnFee = _sellBurnFee (#958)
- _burnFee = 0 (#963)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _hasLiqBeenAdded = true (#799)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _isSniper[recipient] = true (#827)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _liqAddBlock = block.number (#800)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _liqAddStamp = block.timestamp (#801)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _liquidityFee = 0 (#944)
- _liquidityFee = _buyLiquidityFee (#948)
- _liquidityFee = _sellLiquidityFee * 2 (#953)
- _liquidityFee = _sellLiquidityFee (#957)
- _liquidityFee = 0 (#962)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _reflectFee = 0 (#943)
- _reflectFee = _buyReflectFee (#947)
- _reflectFee = _sellReflectFee * 2 (#952)
- _reflectFee = _sellReflectFee (#956)
- _reflectFee = 0 (#961)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- _tFeeTotal = _tFeeTotal.add(tFee) (#907)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- snipersCaught ++ (#828)
Reentrancy in AioNFTMetaverse.constructor(uint256) (#473-506):
External calls:
- lpPair = IUniswapV2Factory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#481-482)
State variables written after the call(s):
- _approve(_msgSender(),_routerAddress,_tTotal) (#502)
- _allowances[owner][spender] = amount (#690)
- _excluded.push(address(this)) (#489)
- _excluded.push(owner()) (#491)
- _excluded.push(burnAddress) (#493)
- _excluded.push(lpPair) (#495)
- _excluded.push(0x2D045410f002A95EFcEE67759A92518fA3FcE677) (#499)
- _isExcluded[address(this)] = true (#488)
- _isExcluded[owner()] = true (#490)
- _isExcluded[burnAddress] = true (#492)
- _isExcluded[lpPair] = true (#494)
- _isExcluded[0x2D045410f002A95EFcEE67759A92518fA3FcE677] = true (#498)
- _isExcludedFromFee[owner()] = true (#486)
- _isExcludedFromFee[address(this)] = true (#487)
- _isExcludedFromFee[0x2D045410f002A95EFcEE67759A92518fA3FcE677] = true (#497)
- dexRouter = _dexRouter (#484)
Reentrancy in AioNFTMetaverse.setNewRouter(address) (#546-556):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#550)
State variables written after the call(s):
- dexRouter = _newRouter (#555)
Reentrancy in AioNFTMetaverse.swapAndLiquify(uint256) (#740-761):
External calls:
- swapTokensForEth(half) (#752)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
- addLiquidity(otherHalf,newBalance) (#758)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#758)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#758)
- _allowances[owner][spender] = amount (#690)
Reentrancy in AioNFTMetaverse.transferFrom(address,address,uint256) (#530-534):
External calls:
- _transfer(sender,recipient,amount) (#531)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#531)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#532)
- _allowances[owner][spender] = amount (#690)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AioNFTMetaverse._transfer(address,address,uint256) (#694-738):
External calls:
- swapAndLiquify(contractTokenBalance) (#727)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#727)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
Event emitted after the call(s):
- SniperCaught(recipient) (#829)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- SwapAndLiquifyEnabledUpdated(true) (#804)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- Transfer(sender,burnAddress,tBurn) (#925)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- Transfer(sender,address(this),tLiquidity) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#737)
- Transfer(sender,recipient,tTransferAmount) (#862)
- _tokenTransfer(from,to,amount,takeFee) (#737)
Reentrancy in AioNFTMetaverse.constructor(uint256) (#473-506):
External calls:
- lpPair = IUniswapV2Factory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#481-482)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#691)
- _approve(_msgSender(),_routerAddress,_tTotal) (#502)
- Transfer(address(0),_msgSender(),_tTotal) (#505)
Reentrancy in AioNFTMetaverse.swapAndLiquify(uint256) (#740-761):
External calls:
- swapTokensForEth(half) (#752)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
- addLiquidity(otherHalf,newBalance) (#758)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#758)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#691)
- addLiquidity(otherHalf,newBalance) (#758)
- SwapAndLiquify(half,newBalance,otherHalf) (#760)
Reentrancy in AioNFTMetaverse.transferFrom(address,address,uint256) (#530-534):
External calls:
- _transfer(sender,recipient,amount) (#531)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#531)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#786-793)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#691)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#532)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#103-112) uses assembly
- INLINE ASM (#110)
Address._functionCallWithValue(address,bytes,uint256,string) (#140-161) uses assembly
- INLINE ASM (#153-156)
Do not use evm assembly.
Additional information: link
AioNFTMetaverse.includeInReward(address) (#670-681) has costly operations inside a loop:
- _excluded.pop() (#677)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#140-161) is never used and should be removed
Address.functionCall(address,bytes) (#122-124) is never used and should be removed
Address.functionCall(address,bytes,string) (#126-128) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#131-133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#135-138) is never used and should be removed
Address.isContract(address) (#103-112) is never used and should be removed
Address.sendValue(address,uint256) (#114-120) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#91-93) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#96-99) is never used and should be removed
Remove unused functions.
Additional information: link
AioNFTMetaverse._decimalsMul (#407) is set pre-construction with a non-constant function or state variable:
- _decimals
AioNFTMetaverse._tTotal (#408) is set pre-construction with a non-constant function or state variable:
- startingSupply * 10 ** _decimalsMul
AioNFTMetaverse._rTotal (#409) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AioNFTMetaverse.maxSellTransactionAmount (#447) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 100) / 10000
AioNFTMetaverse.numTokensSellToAddToLiquidity (#449) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 100) / 10000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version>=0.8.0<0.9.0 (#6) is too complex
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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) (#114-120):
- (success) = recipient.call{value: amount}() (#118)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#140-161):
- (success,returndata) = target.call{value: weiValue}(data) (#144)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#189) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#190) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#204) is not in mixedCase
Function IUniswapV2Router01.WETH() (#222) is not in mixedCase
Parameter AioNFTMetaverse.setSwapAndLiquifyEnabled(bool)._enabled (#598) is not in mixedCase
Parameter AioNFTMetaverse.calculateTaxFee(uint256)._amount (#929) is not in mixedCase
Parameter AioNFTMetaverse.calculateLiquidityFee(uint256)._amount (#933) is not in mixedCase
Parameter AioNFTMetaverse.calculateBurnFee(uint256)._amount (#937) is not in mixedCase
Variable AioNFTMetaverse._buyReflectFee (#416) is not in mixedCase
Variable AioNFTMetaverse._sellReflectFee (#417) is not in mixedCase
Variable AioNFTMetaverse._buyLiquidityFee (#421) is not in mixedCase
Variable AioNFTMetaverse._sellLiquidityFee (#422) is not in mixedCase
Variable AioNFTMetaverse._buyBurnFee (#427) is not in mixedCase
Variable AioNFTMetaverse._sellBurnFee (#428) is not in mixedCase
Variable AioNFTMetaverse._hasLiqBeenAdded (#452) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#226) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#227)
Variable AioNFTMetaverse._getValues(uint256).rTransferAmount (#867) is too similar to AioNFTMetaverse._getTValues(uint256).tTransferAmount (#875)
Variable AioNFTMetaverse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#884) is too similar to AioNFTMetaverse._finalizeTransfer(address,address,uint256).tTransferAmount (#841)
Variable AioNFTMetaverse.reflectionFromToken(uint256,bool).rTransferAmount (#649) is too similar to AioNFTMetaverse._getTValues(uint256).tTransferAmount (#875)
Variable AioNFTMetaverse._finalizeTransfer(address,address,uint256).rTransferAmount (#841) is too similar to AioNFTMetaverse._finalizeTransfer(address,address,uint256).tTransferAmount (#841)
Variable AioNFTMetaverse._getValues(uint256).rTransferAmount (#867) is too similar to AioNFTMetaverse._getValues(uint256).tTransferAmount (#866)
Variable AioNFTMetaverse._finalizeTransfer(address,address,uint256).rTransferAmount (#841) is too similar to AioNFTMetaverse._getValues(uint256).tTransferAmount (#866)
Variable AioNFTMetaverse.reflectionFromToken(uint256,bool).rTransferAmount (#649) is too similar to AioNFTMetaverse._getValues(uint256).tTransferAmount (#866)
Variable AioNFTMetaverse._getValues(uint256).rTransferAmount (#867) is too similar to AioNFTMetaverse._finalizeTransfer(address,address,uint256).tTransferAmount (#841)
Variable AioNFTMetaverse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#884) is too similar to AioNFTMetaverse._getValues(uint256).tTransferAmount (#866)
Variable AioNFTMetaverse.reflectionFromToken(uint256,bool).rTransferAmount (#649) is too similar to AioNFTMetaverse._finalizeTransfer(address,address,uint256).tTransferAmount (#841)
Variable AioNFTMetaverse._finalizeTransfer(address,address,uint256).rTransferAmount (#841) is too similar to AioNFTMetaverse._getTValues(uint256).tTransferAmount (#875)
Variable AioNFTMetaverse._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#884) is too similar to AioNFTMetaverse._getTValues(uint256).tTransferAmount (#875)
Prevent variables from having similar names.
Additional information: link
AioNFTMetaverse.slitherConstructorVariables() (#388-967) uses literals with too many digits:
- startingSupply = 1000000000 (#403)
AioNFTMetaverse.slitherConstructorVariables() (#388-967) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#442)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
AioNFTMetaverse._decimals (#406) should be constant
AioNFTMetaverse._name (#412) should be constant
AioNFTMetaverse._routerAddress (#440) should be constant
AioNFTMetaverse._symbol (#413) should be constant
AioNFTMetaverse.burnAddress (#442) should be constant
AioNFTMetaverse.masterTaxDivisor (#433) should be constant
AioNFTMetaverse.maxBurnFee (#429) should be constant
AioNFTMetaverse.maxLiquidityFee (#423) should be constant
AioNFTMetaverse.maxReflectFee (#418) should be constant
AioNFTMetaverse.startingSupply (#403) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#374-377)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#379-384)
transfer(address,uint256) should be declared external:
- AioNFTMetaverse.transfer(address,uint256) (#520-523)
approve(address,uint256) should be declared external:
- AioNFTMetaverse.approve(address,uint256) (#525-528)
transferFrom(address,address,uint256) should be declared external:
- AioNFTMetaverse.transferFrom(address,address,uint256) (#530-534)
increaseAllowance(address,uint256) should be declared external:
- AioNFTMetaverse.increaseAllowance(address,uint256) (#536-539)
decreaseAllowance(address,uint256) should be declared external:
- AioNFTMetaverse.decreaseAllowance(address,uint256) (#541-544)
setNewRouter(address) should be declared external:
- AioNFTMetaverse.setNewRouter(address) (#546-556)
isExcludedFromReward(address) should be declared external:
- AioNFTMetaverse.isExcludedFromReward(address) (#558-560)
isExcludedFromFee(address) should be declared external:
- AioNFTMetaverse.isExcludedFromFee(address) (#562-564)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AioNFTMetaverse.setSwapAndLiquifyEnabled(bool) (#598-601)
totalFees() should be declared external:
- AioNFTMetaverse.totalFees() (#611-613)
deliver(uint256) should be declared external:
- AioNFTMetaverse.deliver(uint256) (#634-641)
reflectionFromToken(uint256,bool) should be declared external:
- AioNFTMetaverse.reflectionFromToken(uint256,bool) (#643-652)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts