Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious
GangsterCatInu.TOTAL_SUPPLY (GangsterDogeInu.sol#20) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
GangsterCatInu._transfer(address,address,uint256) (GangsterDogeInu.sol#60-85) performs a multiplication on the result of a division:
-_fee = amount.div(100).mul(transferFeeRate) (GangsterDogeInu.sol#79)
Consider ordering multiplication before division.
Additional information: link
GangsterCatInu.constructor(string,string)._name (GangsterDogeInu.sol#23) shadows:
- ERC20._name (ERC20.sol#16) (state variable)
GangsterCatInu.constructor(string,string)._symbol (GangsterDogeInu.sol#23) shadows:
- ERC20._symbol (ERC20.sol#17) (state variable)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in GangsterCatInu.constructor(string,string) (GangsterDogeInu.sol#23-28):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (GangsterDogeInu.sol#26)
State variables written after the call(s):
- _approve(address(this),address(uniswapV2Router),~ uint256(0)) (GangsterDogeInu.sol#27)
- _allowances[owner][spender] = amount (ERC20.sol#291)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in GangsterCatInu.constructor(string,string) (GangsterDogeInu.sol#23-28):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (GangsterDogeInu.sol#26)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#292)
- _approve(address(this),address(uniswapV2Router),~ uint256(0)) (GangsterDogeInu.sol#27)
Apply the check-effects-interactions pattern.
Additional information: link
Address.verifyCallResult(bool,bytes,string) (Address.sol#200-220) uses assembly
- INLINE ASM (Address.sol#212-215)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0', '^0.8.1']
- ^0.8.1 (Address.sol#3)
- ^0.8.0 (Context.sol#3)
- ^0.8.0 (ERC20.sol#2)
- ^0.8.0 (GangsterDogeInu.sol#3)
- ^0.8.0 (IERC20.sol#2)
- ^0.8.0 (IReward.sol#2)
- ^0.8.0 (ITManager.sol#2)
- >=0.5.0 (IUniswapV2Factory.sol#7)
- >=0.6.2 (IUniswapV2Router01.sol#3)
- >=0.6.2 (IUniswapV2Router02.sol#3)
- ^0.8.0 (Ownable.sol#2)
- ^0.8.0 (SafeMath.sol#2)
Use one Solidity version.
Additional information: link
Address.functionCall(address,bytes) (Address.sol#84-86) is never used and should be removed
Address.functionCall(address,bytes,string) (Address.sol#94-100) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Address.sol#113-119) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#127-138) is never used and should be removed
Address.functionDelegateCall(address,bytes) (Address.sol#173-175) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (Address.sol#183-192) is never used and should be removed
Address.functionStaticCall(address,bytes) (Address.sol#146-148) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (Address.sol#156-165) is never used and should be removed
Address.isContract(address) (Address.sol#35-41) is never used and should be removed
Address.sendValue(address,uint256) (Address.sol#59-64) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (Address.sol#200-220) is never used and should be removed
Context._msgData() (Context.sol#20-22) is never used and should be removed
ERC20._burn(address,uint256) (ERC20.sol#264-272) is never used and should be removed
ERC20._setupDecimals(uint8) (ERC20.sol#302-304) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#176-179) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#138-141) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#196-199) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (SafeMath.sol#10-14) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (SafeMath.sol#46-49) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (SafeMath.sol#56-59) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (SafeMath.sol#31-39) is never used and should be removed
SafeMath.trySub(uint256,uint256) (SafeMath.sol#21-24) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.1 (Address.sol#3) allows old versions
Pragma version^0.8.0 (Context.sol#3) allows old versions
Pragma version^0.8.0 (ERC20.sol#2) allows old versions
Pragma version^0.8.0 (GangsterDogeInu.sol#3) allows old versions
Pragma version^0.8.0 (IERC20.sol#2) allows old versions
Pragma version^0.8.0 (IReward.sol#2) allows old versions
Pragma version^0.8.0 (ITManager.sol#2) allows old versions
Pragma version>=0.5.0 (IUniswapV2Factory.sol#7) allows old versions
Pragma version>=0.6.2 (IUniswapV2Router01.sol#3) allows old versions
Pragma version>=0.6.2 (IUniswapV2Router02.sol#3) allows old versions
Pragma version^0.8.0 (Ownable.sol#2) allows old versions
Pragma version^0.8.0 (SafeMath.sol#2) 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) (Address.sol#59-64):
- (success) = recipient.call{value: amount}() (Address.sol#62)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#127-138):
- (success,returndata) = target.call{value: value}(data) (Address.sol#136)
Low level call in Address.functionStaticCall(address,bytes,string) (Address.sol#156-165):
- (success,returndata) = target.staticcall(data) (Address.sol#163)
Low level call in Address.functionDelegateCall(address,bytes,string) (Address.sol#183-192):
- (success,returndata) = target.delegatecall(data) (Address.sol#190)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter GangsterCatInu.claimReward(address,uint256)._userAddress (GangsterDogeInu.sol#45) is not in mixedCase
Constant GangsterCatInu.maxSupply (GangsterDogeInu.sol#15) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GangsterCatInu.TOTAL_SUPPLY (GangsterDogeInu.sol#20) is not in mixedCase
Variable GangsterCatInu._manager (GangsterDogeInu.sol#21) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router01.sol#7) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable GangsterCatInu.TOTAL_SUPPLY (GangsterDogeInu.sol#20) is too similar to ERC20._totalSupply (ERC20.sol#14)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router01.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router01.sol#13)
Prevent variables from having similar names.
Additional information: link
name() should be declared external:
- ERC20.name() (ERC20.sol#38-40)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#46-48)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#63-65)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#70-78)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#83-91)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#101-109)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#114-122)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#131-139)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#154-163)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#177-184)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#200-207)
setManager(address) should be declared external:
- GangsterCatInu.setManager(address) (GangsterDogeInu.sol#30-32)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#41-44)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#50-54)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Contract has 3% buy tax and 6% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts