Reentrancy in FrogsWorld._transfer(address,address,uint256) (#493-544):
External calls:
- swapAndLiquify(contractTokenBalance) (#525)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tOwned[sender] = _tOwned[sender] - tAmount (#627)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#628)
- _tOwned[sender] = _tOwned[sender] - tAmount (#639)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#640)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#641)
- _tOwned[sender] = _tOwned[sender] - tAmount (#652)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#653)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tTotal = _tTotal - tAmount (#632)
- _tTotal = _tTotal - tTransferAmount (#645)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#658)
- txCount ++ (#538)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FrogsWorld.swapAndLiquify(uint256) (#552-582) performs a multiplication on the result of a division:
-split_M = Percent_Marketing * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#567)
-BNB_M = BNB_Total * split_M / 100 (#568)
FrogsWorld.swapAndLiquify(uint256) (#552-582) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#570)
-BNB_D = BNB_Total * split_D / 100 (#571)
Consider ordering multiplication before division.
Additional information: link
FrogsWorld._transfer(address,address,uint256).isBuy (#529) 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
FrogsWorld.addLiquidity(uint256,uint256) (#600-611) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Ensure that all the return values of the function calls are used.
Additional information: link
Reentrancy in FrogsWorld.constructor() (#404-425):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#414-415)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#418)
- _isExcludedFromFee[address(this)] = true (#419)
- _isExcludedFromFee[Wallet_Marketing] = true (#420)
- _isExcludedFromFee[Wallet_Burn] = true (#421)
- uniswapV2Router = _uniswapV2Router (#416)
Reentrancy in FrogsWorld.swapAndLiquify(uint256) (#552-582):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#564)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- _allowances[theOwner][theSpender] = amount (#488)
Reentrancy in FrogsWorld.transferFrom(address,address,uint256) (#461-465):
External calls:
- _transfer(sender,recipient,amount) (#462)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
- _allowances[theOwner][theSpender] = amount (#488)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FrogsWorld._transfer(address,address,uint256) (#493-544):
External calls:
- swapAndLiquify(contractTokenBalance) (#525)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount) (#642)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#655)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
Reentrancy in FrogsWorld.constructor() (#404-425):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#414-415)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#423)
Reentrancy in FrogsWorld.swapAndLiquify(uint256) (#552-582):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#564)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#489)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#574)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#575)
Reentrancy in FrogsWorld.transferFrom(address,address,uint256) (#461-465):
External calls:
- _transfer(sender,recipient,amount) (#462)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#590-596)
External calls sending eth:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#489)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#71-75) uses assembly
- INLINE ASM (#73)
Address._verifyCallResult(bool,bytes,string) (#123-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#123-136) is never used and should be removed
Address.functionCall(address,bytes) (#83-85) is never used and should be removed
Address.functionCall(address,bytes,string) (#87-89) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#91-93) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#95-100) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#113-115) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#117-121) is never used and should be removed
Address.functionStaticCall(address,bytes) (#102-104) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#106-110) is never used and should be removed
Address.isContract(address) (#71-75) is never used and should be removed
Address.sendValue(address,uint256) (#77-81) is never used and should be removed
Context._msgData() (#62-65) is never used and should be removed
FrogsWorld._getCurrentSupply() (#479-481) is never used and should be removed
SafeMath.div(uint256,uint256) (#36-38) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#47-52) is never used and should be removed
SafeMath.mul(uint256,uint256) (#32-34) is never used and should be removed
SafeMath.sub(uint256,uint256) (#28-30) is never used and should be removed
Remove unused functions.
Additional information: link
FrogsWorld._maxWalletToken (#378) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 100
FrogsWorld._previousMaxWalletToken (#379) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
FrogsWorld._maxTxAmount (#381) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 100
FrogsWorld._previousMaxTxAmount (#382) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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 version0.8.10 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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
Low level call in Address.sendValue(address,uint256) (#77-81):
- (success) = recipient.call{value: amount}() (#79)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#95-100):
- (success,returndata) = target.call{value: value}(data) (#98)
Low level call in Address.functionStaticCall(address,bytes,string) (#106-110):
- (success,returndata) = target.staticcall(data) (#108)
Low level call in Address.functionDelegateCall(address,bytes,string) (#117-121):
- (success,returndata) = target.delegatecall(data) (#119)
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() (#165) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#166) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#179) is not in mixedCase
Function IUniswapV2Router01.WETH() (#196) is not in mixedCase
Parameter FrogsWorld.addLiquidity(uint256,uint256).BNBAmount (#600) is not in mixedCase
Function FrogsWorld.remove_Random_Tokens(address,uint256) (#613-619) is not in mixedCase
Parameter FrogsWorld.remove_Random_Tokens(address,uint256).random_Token_Address (#613) is not in mixedCase
Parameter FrogsWorld.remove_Random_Tokens(address,uint256).percent_of_Tokens (#613) is not in mixedCase
Variable FrogsWorld._isExcludedFromFee (#354) is not in mixedCase
Variable FrogsWorld.Wallet_Marketing (#356) is not in mixedCase
Variable FrogsWorld.Wallet_Dev (#357) is not in mixedCase
Constant FrogsWorld.Wallet_Burn (#358) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FrogsWorld._decimals (#362) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FrogsWorld._name (#364) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FrogsWorld._symbol (#365) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FrogsWorld._Tax_On_Buy (#370) is not in mixedCase
Variable FrogsWorld._Tax_On_Sell (#371) is not in mixedCase
Variable FrogsWorld.Percent_Marketing (#373) is not in mixedCase
Variable FrogsWorld.Percent_Dev (#374) is not in mixedCase
Variable FrogsWorld.Percent_Burn (#375) is not in mixedCase
Variable FrogsWorld.Percent_AutoLP (#376) is not in mixedCase
Variable FrogsWorld._maxWalletToken (#378) is not in mixedCase
Variable FrogsWorld._maxTxAmount (#381) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#63)" inContext (#57-66)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in FrogsWorld._transfer(address,address,uint256) (#493-544):
External calls:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#525)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tOwned[sender] = _tOwned[sender] - tAmount (#627)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#628)
- _tOwned[sender] = _tOwned[sender] - tAmount (#639)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#640)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#641)
- _tOwned[sender] = _tOwned[sender] - tAmount (#652)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#653)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- _tTotal = _tTotal - tAmount (#632)
- _tTotal = _tTotal - tTransferAmount (#645)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#658)
- txCount ++ (#538)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount) (#642)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#655)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#542)
Reentrancy in FrogsWorld.transferFrom(address,address,uint256) (#461-465):
External calls:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
External calls sending eth:
- _transfer(sender,recipient,amount) (#462)
- wallet.transfer(amount) (#547)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#603-610)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
- _allowances[theOwner][theSpender] = amount (#488)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#489)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#463)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#200) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#201)
Variable FrogsWorld.swapAndLiquify(uint256).tokens_to_D (#560) is too similar to FrogsWorld.swapAndLiquify(uint256).tokens_to_M (#559)
Prevent variables from having similar names.
Additional information: link
FrogsWorld.slitherConstructorConstantVariables() (#330-667) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#358)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FrogsWorld.MAX (#361) is never used in FrogsWorld (#330-667)
FrogsWorld._previousMaxWalletToken (#379) is never used in FrogsWorld (#330-667)
FrogsWorld._previousMaxTxAmount (#382) is never used in FrogsWorld (#330-667)
Remove unused state variables.
Additional information: link
FrogsWorld.Percent_AutoLP (#376) should be constant
FrogsWorld.Percent_Burn (#375) should be constant
FrogsWorld.Percent_Dev (#374) should be constant
FrogsWorld.Percent_Marketing (#373) should be constant
FrogsWorld.Wallet_Dev (#357) should be constant
FrogsWorld.Wallet_Marketing (#356) should be constant
FrogsWorld._Tax_On_Buy (#370) should be constant
FrogsWorld._Tax_On_Sell (#371) should be constant
FrogsWorld.swapAndLiquifyEnabled (#388) should be constant
FrogsWorld.swapTrigger (#368) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- FrogsWorld.renounceOwnership() (#347-350)
name() should be declared external:
- FrogsWorld.name() (#427-429)
symbol() should be declared external:
- FrogsWorld.symbol() (#431-433)
decimals() should be declared external:
- FrogsWorld.decimals() (#435-437)
totalSupply() should be declared external:
- FrogsWorld.totalSupply() (#439-441)
transfer(address,uint256) should be declared external:
- FrogsWorld.transfer(address,uint256) (#447-450)
allowance(address,address) should be declared external:
- FrogsWorld.allowance(address,address) (#452-454)
approve(address,uint256) should be declared external:
- FrogsWorld.approve(address,uint256) (#456-459)
transferFrom(address,address,uint256) should be declared external:
- FrogsWorld.transferFrom(address,address,uint256) (#461-465)
increaseAllowance(address,uint256) should be declared external:
- FrogsWorld.increaseAllowance(address,uint256) (#467-470)
decreaseAllowance(address,uint256) should be declared external:
- FrogsWorld.decreaseAllowance(address,uint256) (#472-475)
remove_Random_Tokens(address,uint256) should be declared external:
- FrogsWorld.remove_Random_Tokens(address,uint256) (#613-619)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. 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.
Contract has 10% buy tax and 16% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
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 has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts