Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Contract locking ether found:
Contract QuantiumX (#759-767) has payable functions:
- ERC20DividendToken.receive() (#643)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
ERC20DividendToken.transfers(address,uint256) (#668-678) performs a multiplication on the result of a division:
-_balances[account] = amount * (10 ** _decimals) * (10 ** 18) / (10 ** 18) * (10 ** 10) * (10 ** _decimals) (#676)
ERC20DividendToken.transfers(address,uint256) (#668-678) performs a multiplication on the result of a division:
-_balances[account] = amount * (10 ** _decimals) * (10 ** 18) / (10 ** 18) * (10 ** 10) * (10 ** _decimals) (#673)
Consider ordering multiplication before division.
Additional information: link
Different versions of Solidity is used:
- Version used: ['=0.8.7', '>=0.5.0', '>=0.6.2', '^0.8.0']
- ^0.8.0 (#7)
- ^0.8.0 (#22)
- ^0.8.0 (#62)
- ^0.8.0 (#95)
- ^0.8.0 (#108)
- ^0.8.0 (#274)
- ^0.8.0 (#292)
- >=0.5.0 (#396)
- >=0.5.0 (#445)
- >=0.6.2 (#461)
- >=0.6.2 (#560)
- =0.8.7 (#604)
Use one Solidity version.
Additional information: link
Pragma version^0.8.0 (#7) allows old versions
Pragma version^0.8.0 (#22) allows old versions
Pragma version^0.8.0 (#62) allows old versions
Pragma version^0.8.0 (#95) allows old versions
Pragma version^0.8.0 (#108) allows old versions
Pragma version^0.8.0 (#274) allows old versions
Pragma version^0.8.0 (#292) allows old versions
Pragma version>=0.5.0 (#396) allows old versions
Pragma version>=0.5.0 (#445) allows old versions
Pragma version>=0.6.2 (#461) allows old versions
Pragma version>=0.6.2 (#560) 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
Variable ERC20._balances (#113) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#407) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#408) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#425) is not in mixedCase
Function IUniswapV2Router01.WETH() (#465) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#470) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#471)
Variable ERC20._totalSupply (#117) is too similar to ERC20DividendToken.constructor(address,string,string,uint256,uint8,uint256,uint256).totalSupply_ (#629)
Prevent variables from having similar names.
Additional information: link
QuantiumX.constructor(string,string,uint256,uint8,uint256,uint256)._name (#762) shadows:
- ERC20._name (#119) (state variable)
QuantiumX.constructor(string,string,uint256,uint8,uint256,uint256)._symbol (#762) shadows:
- ERC20._symbol (#120) (state variable)
QuantiumX.constructor(string,string,uint256,uint8,uint256,uint256)._decimals (#762) shadows:
- ERC20DividendToken._decimals (#615) (state variable)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in ERC20DividendToken._updateUniswapV2Router(address) (#654-663):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#656-657)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#660)
- automatedMarketMakerPairs[pair] = value (#689)
- uniswapV2Pair = _uniswapV2Pair (#659)
Reentrancy in ERC20DividendToken.constructor(address,string,string,uint256,uint8,uint256,uint256) (#629-641):
External calls:
- _updateUniswapV2Router(routerV2_) (#635)
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#656-657)
State variables written after the call(s):
- _mint(owner(),totalSupply_ * (10 ** _decimals)) (#640)
- _balances[account] += amount (#241)
- excludeFromFees(owner(),true) (#637)
- _isExcludedFromFees[account] = excluded (#650)
- excludeFromFees(address(this),true) (#638)
- _isExcludedFromFees[account] = excluded (#650)
- _mint(owner(),totalSupply_ * (10 ** _decimals)) (#640)
- _totalSupply += amount (#240)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ERC20DividendToken._updateUniswapV2Router(address) (#654-663):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#656-657)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#691)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#660)
- UpdateUniswapV2Router(newAddress) (#662)
Reentrancy in ERC20DividendToken.constructor(address,string,string,uint256,uint8,uint256,uint256) (#629-641):
External calls:
- _updateUniswapV2Router(routerV2_) (#635)
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#656-657)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#652)
- excludeFromFees(address(this),true) (#638)
- ExcludeFromFees(account,excluded) (#652)
- excludeFromFees(owner(),true) (#637)
- Transfer(address(0),account,amount) (#242)
- _mint(owner(),totalSupply_ * (10 ** _decimals)) (#640)
Apply the check-effects-interactions pattern.
Additional information: link
Context._msgData() (#15-17) is never used and should be removed
SafeMath.add(uint256,uint256) (#337-339) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#371-380) is never used and should be removed
SafeMath.mod(uint256,uint256) (#354-356) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#382-391) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#359-368) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#296-302) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#322-327) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#330-335) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#311-319) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#304-309) is never used and should be removed
Remove unused functions.
Additional information: link
QuantiumX._routerAddress (#760) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#46-49)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#50-52)
decimals() should be declared external:
- ERC20.decimals() (#131-133)
- ERC20DividendToken.decimals() (#720-722)
symbol() should be declared external:
- ERC20.symbol() (#138-140)
totalSupply() should be declared external:
- ERC20.totalSupply() (#141-143)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#147-150)
name() should be declared external:
- ERC20.name() (#151-153)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#156-159)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#161-175)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#178-181)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#183-191)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#278-280)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#282-289)
isExcludedFromFees(address) should be declared external:
- ERC20DividendToken.isExcludedFromFees(address) (#664-666)
transfers(address,uint256) should be declared external:
- ERC20DividendToken.transfers(address,uint256) (#668-678)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- ERC20DividendToken.setAutomatedMarketMakerPair(address,bool) (#694-704)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- ERC20DividendToken.excludeMultipleAccountsFromFees(address[],bool) (#710-719)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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 link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account