Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) uses a dangerous strict equality:
- recipient == uniswapV2Pair && balanceOf(uniswapV2Pair) == 0 (#886)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) uses a dangerous strict equality:
- shouldSetInviter = balanceOf(recipient) == 0 && inviter[recipient] == address(0) && sender != uniswapV2Pair && recipient != uniswapV2Pair && inviterNum[sender] <= 9 (#933-938)
daoMetaverse._transfer(address,address,uint256) (#774-813) uses a dangerous strict equality:
- shouldSetInviter = balanceOf(to) == 0 && inviter[to] == address(0) && from != uniswapV2Pair (#793)
daoMetaverse.setShare(address) (#853-862) uses a dangerous strict equality:
- IERC20(uniswapV2Pair).balanceOf(shareholder) == 0 (#855)
daoMetaverse.setShare(address) (#853-862) uses a dangerous strict equality:
- IERC20(uniswapV2Pair).balanceOf(shareholder) == 0 (#858)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-require(bool,string)(tAmount <= balanceOf(sender).div(10).mul(9),Sell more than 90%, reduce the selling amount) (#887)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-_takeTransfer(sender,_destroyAddress,tAmount.div(100).mul(_destroyFee.mul(multiple)),currentRate) (#900-905)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-_takeTransfer(sender,fundAddress,tAmount.div(100).mul(_fundFee.mul(multiple)),currentRate) (#907-912)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-_takeTransfer(sender,address(this),tAmount.div(100).mul(_lpFee.mul(multiple)),currentRate) (#914-919)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-_rOwned[recipient] = _rOwned[recipient].add(rAmount.div(100).mul(recipientRate)) (#946-948)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-Transfer(sender,recipient,tAmount.div(100).mul(recipientRate)) (#949)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-_reflectFee(rAmount.div(100).mul(_taxFee.mul(multiple)),tAmount.div(100).mul(_taxFee.mul(multiple))) (#923)
daoMetaverse._tokenTransfer(address,address,uint256,bool) (#880-950) performs a multiplication on the result of a division:
-_takeTransfer(sender,uniswapV2Pair,tAmount.div(100).mul(_taxFee.mul(multiple)),currentRate) (#924-929)
daoMetaverse._takeInviterFee(address,address,uint256,uint256) (#968-1011) performs a multiplication on the result of a division:
-tadr = tAmount.div(10000).mul(tak) (#988)
daoMetaverse._takeInviterFee(address,address,uint256,uint256) (#968-1011) performs a multiplication on the result of a division:
-curTAmount = tAmount.div(10000).mul(rate) (#1003)
Consider ordering multiplication before division.
Additional information: link
daoMetaverse._tokenTransfer(address,address,uint256,bool).rate (#893) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
daoMetaverse.allowance(address,address).owner (#675) shadows:
- Ownable.owner() (#91-93) (function)
daoMetaverse._approve(address,address,uint256).owner (#763) shadows:
- Ownable.owner() (#91-93) (function)
Rename the local variables that shadow another component.
Additional information: link
Ownable.changeOwner(address) (#103-105) should emit an event for:
- _owner = newOwner (#104)
Emit an event for critical parameter changes.
Additional information: link
Ownable.changeOwner(address).newOwner (#103) lacks a zero-check on :
- _owner = newOwner (#104)
daoMetaverse.constructor(address).tokenOwner (#619) lacks a zero-check on :
- _tokenOwner = tokenOwner (#639)
Check that the address is not zero.
Additional information: link
Reentrancy in daoMetaverse.constructor(address) (#619-648):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#631-632)
State variables written after the call(s):
- _isExcludedFromFee[tokenOwner] = true (#641)
- _isExcludedFromFee[address(this)] = true (#642)
- _owner = msg.sender (#646)
- _rOwned[tokenOwner] = _rTotal (#638)
- _rTotal = (MAX - (MAX % _tTotal)) (#637)
- _tTotal = 2100000000 * 10 ** _decimals (#636)
- _tokenOwner = tokenOwner (#639)
- isDividendExempt[address(this)] = true (#643)
- isDividendExempt[address(0)] = true (#644)
- uniswapV2Router = _uniswapV2Router (#634)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in daoMetaverse.constructor(address) (#619-648):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#631-632)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#647)
Apply the check-effects-interactions pattern.
Additional information: link
daoMetaverse._transfer(address,address,uint256) (#774-813) uses timestamp for comparisons
Dangerous comparisons:
- from != address(this) && LPFeefenhong.add(minPeriod) <= block.timestamp (#809)
Avoid relying on block.timestamp.
Additional information: link
Pragma version^0.8.11 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 is not recommended for deployment
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
Variable Ownable._owner (#86) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#289) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#291) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#322) is not in mixedCase
Function IUniswapV2Router01.WETH() (#368) is not in mixedCase
Contract daoMetaverse (#571-1013) is not in CapWords
Variable daoMetaverse._taxFee (#590) is not in mixedCase
Variable daoMetaverse._destroyFee (#592) is not in mixedCase
Variable daoMetaverse._inviterFee (#595) is not in mixedCase
Variable daoMetaverse._fundFee (#597) is not in mixedCase
Variable daoMetaverse._lpFee (#608) is not in mixedCase
Variable daoMetaverse.LPFeefenhong (#610) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#373) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#374)
Prevent variables from having similar names.
Additional information: link
daoMetaverse.constructor(address) (#619-648) uses literals with too many digits:
- _tTotal = 2100000000 * 10 ** _decimals (#636)
daoMetaverse._transfer(address,address,uint256) (#774-813) uses literals with too many digits:
- _isExcludedFromFee[from] || _isExcludedFromFee[to] || balanceOf(_destroyAddress) >= 2079000000 * 10 ** _decimals (#789)
daoMetaverse._takeInviterFee(address,address,uint256,uint256) (#968-1011) uses literals with too many digits:
- balanceOf(cur) >= 100000 * 10 ** 18 && i <= inviterNum[cur] (#993)
daoMetaverse.slitherConstructorVariables() (#571-1013) uses literals with too many digits:
- _destroyAddress = address(0x000000000000000000000000000000000000dEaD) (#593)
daoMetaverse.slitherConstructorVariables() (#571-1013) uses literals with too many digits:
- distributorGas = 500000 (#607)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
daoMetaverse._destroyAddress (#593) should be constant
daoMetaverse.distributorGas (#607) should be constant
daoMetaverse.fundAddress (#598) should be constant
daoMetaverse.minPeriod (#609) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
changeOwner(address) should be declared external:
- Ownable.changeOwner(address) (#103-105)
name() should be declared external:
- daoMetaverse.name() (#650-652)
symbol() should be declared external:
- daoMetaverse.symbol() (#654-656)
decimals() should be declared external:
- daoMetaverse.decimals() (#658-660)
totalSupply() should be declared external:
- daoMetaverse.totalSupply() (#662-664)
transfer(address,uint256) should be declared external:
- daoMetaverse.transfer(address,uint256) (#670-673)
allowance(address,address) should be declared external:
- daoMetaverse.allowance(address,address) (#675-677)
approve(address,uint256) should be declared external:
- daoMetaverse.approve(address,uint256) (#679-682)
transferFrom(address,address,uint256) should be declared external:
- daoMetaverse.transferFrom(address,address,uint256) (#684-696)
increaseAllowance(address,uint256) should be declared external:
- daoMetaverse.increaseAllowance(address,uint256) (#698-705)
decreaseAllowance(address,uint256) should be declared external:
- daoMetaverse.decreaseAllowance(address,uint256) (#707-717)
totalFees() should be declared external:
- daoMetaverse.totalFees() (#719-721)
excludeFromFee(address) should be declared external:
- daoMetaverse.excludeFromFee(address) (#732-734)
includeInFee(address) should be declared external:
- daoMetaverse.includeInFee(address) (#736-738)
claimTokens() should be declared external:
- daoMetaverse.claimTokens() (#754-756)
isExcludedFromFee(address) should be declared external:
- daoMetaverse.isExcludedFromFee(address) (#758-760)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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