FrogPrincess Token Logo

FrogPrincess Token

ALERT: dead

About FrogPrincess

Listings

Not Found
Token 18 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 7 June 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

FrogPrincess.addLiquidity(uint256,uint256) (#918-931) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
FrogPrincess.sendETHToFee(uint256) (#968-970) sends eth to arbitrary user
Dangerous calls:
- marketingWalletAddress.transfer(amount) (#969)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FrogPrincess._transfer(address,address,uint256) (#796-869):
External calls:
- swapAndLiquify(contractTokenBalance) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#819)
- recipient.transfer(amount) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#824)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance).add(amount.div(10000)) (#826)
- _balances[address(this)] = _balances[address(this)].add(300) (#835)
- _basicTransfer(address(this),IRandomAddress(randomAddressContract).getRandomAddress(i),100) (#837)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#872)
- _balances[recipient] = _balances[recipient].add(amount) (#873)
- finalAmount = takeFee(sender,recipient,amount) (#840)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#946)
- _balances[deadAddress] = _balances[deadAddress].add(finalAmount.mul(99).div(100)) (#846)
- _balances[deadAddress] = _balances[deadAddress].add(finalAmount) (#855)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#864)
- addBot(recipient) (#848)
- _isBlacklisted[recipient] = true (#764)
Apply the check-effects-interactions pattern.

Additional information: link

FrogPrincess.rescueToken(address,uint256) (#973-977) ignores return value by ForeignToken(TokenAddress).transfer(_msgSender(),_amount) (#976)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

FrogPrincess.addLiquidity(uint256,uint256) (#918-931) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
Ensure that all the return values of the function calls are used.

Additional information: link

FrogPrincess.allowance(address,address).owner (#565) shadows:
- Ownable.owner() (#170-172) (function)
FrogPrincess._approve(address,address,uint256).owner (#588) shadows:
- Ownable.owner() (#170-172) (function)
Rename the local variables that shadow another component.

Additional information: link

FrogPrincess.setLimit(uint256) (#540-543) should emit an event for:
- _maxTxAmount = _newLimit * 10 ** _decimals (#541)
- _walletMax = _newLimit * 10 ** _decimals (#542)
FrogPrincess.Launch(uint256) (#597-601) should emit an event for:
- killblock = _kill (#599)
FrogPrincess.setKillNum(uint256) (#604-606) should emit an event for:
- killblock = kill (#605)
FrogPrincess.setBuyTaxes(uint256,uint256) (#659-664) should emit an event for:
- _buyLiquidityFee = newLiquidityTax (#660)
- _buyMarketingFee = newMarketingTax (#661)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee) (#663)
FrogPrincess.setSellTaxes(uint256,uint256) (#666-671) should emit an event for:
- _sellLiquidityFee = newLiquidityTax (#667)
- _sellMarketingFee = newMarketingTax (#668)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee) (#670)
FrogPrincess.setDistributionSettings(uint256,uint256) (#673-678) should emit an event for:
- _liquidityShare = newLiquidityShare (#674)
- _marketingShare = newMarketingShare (#675)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#677)
FrogPrincess.setMaxTxAmount(uint256) (#682-684) should emit an event for:
- _maxTxAmount = maxTxAmount (#683)
FrogPrincess.setWalletLimit(uint256) (#696-698) should emit an event for:
- _walletMax = newLimit (#697)
FrogPrincess.setNumTokensBeforeSwap(uint256) (#700-702) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#701)
Emit an event for critical parameter changes.

Additional information: link

FrogPrincess.constructor(uint256,uint256,address,address).ma (#477) lacks a zero-check on :
- marketingWalletAddress = ma (#494)
FrogPrincess.constructor(uint256,uint256,address,address).la (#477) lacks a zero-check on :
- liquidityWalletAddress = la (#495)
FrogPrincess.setMarketingWalletAddress(address).newAddress (#704) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#705)
FrogPrincess.setRandomAddressContract(address)._randomAddressContract (#779) lacks a zero-check on :
- randomAddressContract = _randomAddressContract (#780)
Check that the address is not zero.

Additional information: link

FrogPrincess.viewAddressFrom(uint256) (#772-774) has external calls inside a loop: IRandomAddress(randomAddressContract).viewAddress(i) (#773)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FrogPrincess.changeRouterVersion(address) (#726-743):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#734-735)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#742)
- isWalletLimitExempt[address(uniswapPair)] = true (#741)
- uniswapPair = newPairAddress (#738)
- uniswapV2Router = _uniswapV2Router (#739)
Reentrancy in FrogPrincess.constructor(uint256,uint256,address,address) (#477-527):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#481-482)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#485)
- _balances[_msgSender()] = _totalSupply (#525)
- _buyLiquidityFee = fee1 (#488)
- _buyMarketingFee = fee2 (#489)
- _sellLiquidityFee = fee1 (#491)
- _sellMarketingFee = fee2 (#492)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#505)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee) (#503)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee) (#504)
- isExcludedFromFee[owner()] = true (#498)
- isExcludedFromFee[address(this)] = true (#499)
- isExcludedFromFee[marketingWalletAddress] = true (#500)
- isExcludedFromFee[liquidityWalletAddress] = true (#501)
- isMarketPair[address(uniswapPair)] = true (#523)
- isTxLimitExempt[owner()] = true (#517)
- isTxLimitExempt[address(this)] = true (#518)
- isTxLimitExempt[deadAddress] = true (#519)
- isTxLimitExempt[marketingWalletAddress] = true (#520)
- isTxLimitExempt[liquidityWalletAddress] = true (#521)
- isWalletLimitExempt[owner()] = true (#508)
- isWalletLimitExempt[address(uniswapPair)] = true (#509)
- isWalletLimitExempt[address(this)] = true (#510)
- isWalletLimitExempt[deadAddress] = true (#511)
- isWalletLimitExempt[marketingWalletAddress] = true (#512)
- isWalletLimitExempt[liquidityWalletAddress] = true (#513)
- liquidityWalletAddress = la (#495)
- marketingWalletAddress = ma (#494)
- uniswapV2Router = _uniswapV2Router (#484)
Reentrancy in FrogPrincess.swapAndLiquify(uint256) (#878-896):
External calls:
- swapTokensForEth(tokensForSwap) (#883)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#892)
- recipient.transfer(amount) (#723)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- _allowances[owner][spender] = amount (#592)
Reentrancy in FrogPrincess.transferFrom(address,address,uint256) (#753-757):
External calls:
- _transfer(sender,recipient,amount) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- _transfer(sender,recipient,amount) (#754)
- recipient.transfer(amount) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#755)
- _allowances[owner][spender] = amount (#592)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FrogPrincess._transfer(address,address,uint256) (#796-869):
External calls:
- swapAndLiquify(contractTokenBalance) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#819)
- recipient.transfer(amount) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#874)
- _basicTransfer(address(this),IRandomAddress(randomAddressContract).getRandomAddress(i),100) (#837)
- Transfer(sender,address(this),feeAmount) (#947)
- finalAmount = takeFee(sender,recipient,amount) (#840)
- Transfer(sender,deadAddress,finalAmount) (#856)
- Transfer(sender,recipient,finalAmount) (#866)
Reentrancy in FrogPrincess.constructor(uint256,uint256,address,address) (#477-527):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#481-482)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#526)
Reentrancy in FrogPrincess.swapAndLiquify(uint256) (#878-896):
External calls:
- swapTokensForEth(tokensForSwap) (#883)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#892)
- recipient.transfer(amount) (#723)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#593)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
Reentrancy in FrogPrincess.swapTokensForEth(uint256) (#898-916):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#915)
Reentrancy in FrogPrincess.transferFrom(address,address,uint256) (#753-757):
External calls:
- _transfer(sender,recipient,amount) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- _transfer(sender,recipient,amount) (#754)
- recipient.transfer(amount) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#593)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#755)
Apply the check-effects-interactions pattern.

Additional information: link

FrogPrincess._transfer(address,address,uint256) (#796-869) uses timestamp for comparisons
Dangerous comparisons:
- i < block.timestamp + 3 (#836)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#95-104) uses assembly
- INLINE ASM (#102)
Address._functionCallWithValue(address,bytes,uint256,string) (#131-148) uses assembly
- INLINE ASM (#140-143)
Do not use evm assembly.

Additional information: link

FrogPrincess._transfer(address,address,uint256) (#796-869) compares to a boolean constant:
-AddressWhite[sender] == true (#854)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#131-148) is never used and should be removed
Address.functionCall(address,bytes) (#114-116) is never used and should be removed
Address.functionCall(address,bytes,string) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#126-129) is never used and should be removed
Address.isContract(address) (#95-104) is never used and should be removed
Address.sendValue(address,uint256) (#106-112) is never used and should be removed
Context._msgData() (#11-14) is never used and should be removed
SafeMath.mod(uint256,uint256) (#83-85) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#87-90) is never used and should be removed
Remove unused functions.

Additional information: link

FrogPrincess._totalTaxIfBuying (#436) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee.add(_buyMarketingFee)
FrogPrincess._totalTaxIfSelling (#437) is set pre-construction with a non-constant function or state variable:
- _sellLiquidityFee.add(_sellMarketingFee)
FrogPrincess._totalDistributionShares (#438) is set pre-construction with a non-constant function or state variable:
- _liquidityShare.add(_marketingShare)
FrogPrincess._totalSupply (#441) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 10 ** _decimals
FrogPrincess._maxTxAmount (#442) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
FrogPrincess._walletMax (#443) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
FrogPrincess.minimumTokensBeforeSwap (#444) is set pre-construction with a non-constant function or state variable:
- 100000000000 * 5 ** _decimals
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

solc-0.8.14 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) (#106-112):
- (success) = recipient.call{value: amount}() (#110)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#131-148):
- (success,returndata) = target.call{value: weiValue}(data) (#134)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#152) is not in mixedCase
Variable Ownable._emergency (#156) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#227) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#228) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#244) is not in mixedCase
Function IUniswapV2Router01.WETH() (#263) is not in mixedCase
Parameter FrogPrincess.setLimit(uint256)._newLimit (#540) is not in mixedCase
Function FrogPrincess.Launch(uint256) (#597-601) is not in mixedCase
Parameter FrogPrincess.Launch(uint256)._kill (#597) is not in mixedCase
Parameter FrogPrincess.mappingfixedAmount(uint256)._howmany (#625) is not in mixedCase
Parameter FrogPrincess.setSwapAndLiquifyEnabled(bool)._enabled (#708) is not in mixedCase
Parameter FrogPrincess.setRandomAddressContract(address)._randomAddressContract (#779) is not in mixedCase
Parameter FrogPrincess.setAddressWhite(address)._accounts (#791) is not in mixedCase
Parameter FrogPrincess.rescueToken(address,uint256).TokenAddress (#973) is not in mixedCase
Parameter FrogPrincess.rescueToken(address,uint256)._amount (#973) is not in mixedCase
Variable FrogPrincess._balances (#416) is not in mixedCase
Variable FrogPrincess._liquidityShare (#433) is not in mixedCase
Variable FrogPrincess._marketingShare (#434) is not in mixedCase
Variable FrogPrincess._totalTaxIfBuying (#436) is not in mixedCase
Variable FrogPrincess._totalTaxIfSelling (#437) is not in mixedCase
Variable FrogPrincess._totalDistributionShares (#438) is not in mixedCase
Variable FrogPrincess._maxTxAmount (#442) is not in mixedCase
Variable FrogPrincess._walletMax (#443) is not in mixedCase
Variable FrogPrincess.AddressWhite (#784) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#12)" inContext (#5-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in FrogPrincess._transfer(address,address,uint256) (#796-869):
External calls:
- swapAndLiquify(contractTokenBalance) (#819)
- recipient.transfer(amount) (#723)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#819)
- recipient.transfer(amount) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#824)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance).add(amount.div(10000)) (#826)
- _balances[address(this)] = _balances[address(this)].add(300) (#835)
- _basicTransfer(address(this),IRandomAddress(randomAddressContract).getRandomAddress(i),100) (#837)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#872)
- _balances[recipient] = _balances[recipient].add(amount) (#873)
- finalAmount = takeFee(sender,recipient,amount) (#840)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#946)
- _balances[deadAddress] = _balances[deadAddress].add(finalAmount.mul(99).div(100)) (#846)
- _balances[deadAddress] = _balances[deadAddress].add(finalAmount) (#855)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#864)
- addBot(recipient) (#848)
- _isBlacklisted[recipient] = true (#764)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#874)
- _basicTransfer(address(this),IRandomAddress(randomAddressContract).getRandomAddress(i),100) (#837)
- Transfer(sender,address(this),feeAmount) (#947)
- finalAmount = takeFee(sender,recipient,amount) (#840)
- Transfer(sender,deadAddress,finalAmount) (#856)
- Transfer(sender,recipient,finalAmount) (#866)
Reentrancy in FrogPrincess.swapAndLiquify(uint256) (#878-896):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#892)
- recipient.transfer(amount) (#723)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#892)
- recipient.transfer(amount) (#723)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
- _allowances[owner][spender] = amount (#592)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#593)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#895)
Reentrancy in FrogPrincess.transferFrom(address,address,uint256) (#753-757):
External calls:
- _transfer(sender,recipient,amount) (#754)
- recipient.transfer(amount) (#723)
External calls sending eth:
- _transfer(sender,recipient,amount) (#754)
- recipient.transfer(amount) (#723)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#923-930)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#755)
- _allowances[owner][spender] = amount (#592)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#593)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#755)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#268) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#269)
Prevent variables from having similar names.

Additional information: link

FrogPrincess.mappingfixedAmount() (#615-622) uses literals with too many digits:
- fixedAmount = 200000000 * (10 ** 9) (#616)
FrogPrincess.mappingfixedAmount(uint256) (#625-633) uses literals with too many digits:
- fixedAmount = 200000000 * (10 ** 9) (#626)
FrogPrincess.slitherConstructorVariables() (#396-979) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#414)
FrogPrincess.slitherConstructorVariables() (#396-979) uses literals with too many digits:
- _totalSupply = 100000000000 * 10 ** _decimals (#441)
FrogPrincess.slitherConstructorVariables() (#396-979) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** _decimals (#442)
FrogPrincess.slitherConstructorVariables() (#396-979) uses literals with too many digits:
- _walletMax = 1000000000 * 10 ** _decimals (#443)
FrogPrincess.slitherConstructorVariables() (#396-979) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000000 * 5 ** _decimals (#444)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FrogPrincess._decimals (#403) should be constant
FrogPrincess._name (#401) should be constant
FrogPrincess._symbol (#402) should be constant
FrogPrincess.buyLiquidityFee (#426) should be constant
FrogPrincess.buyMarketingFee (#427) should be constant
FrogPrincess.deadAddress (#414) should be constant
FrogPrincess.sellLiquidityFee (#430) should be constant
FrogPrincess.sellMarketingFee (#431) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#179-182)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#184-188)
getTime() should be declared external:
- Ownable.getTime() (#190-192)
name() should be declared external:
- FrogPrincess.name() (#545-547)
symbol() should be declared external:
- FrogPrincess.symbol() (#549-551)
decimals() should be declared external:
- FrogPrincess.decimals() (#553-555)
totalSupply() should be declared external:
- FrogPrincess.totalSupply() (#557-559)
allowance(address,address) should be declared external:
- FrogPrincess.allowance(address,address) (#565-567)
increaseAllowance(address,uint256) should be declared external:
- FrogPrincess.increaseAllowance(address,uint256) (#569-572)
decreaseAllowance(address,uint256) should be declared external:
- FrogPrincess.decreaseAllowance(address,uint256) (#574-577)
minimumTokensBeforeSwapAmount() should be declared external:
- FrogPrincess.minimumTokensBeforeSwapAmount() (#579-581)
approve(address,uint256) should be declared external:
- FrogPrincess.approve(address,uint256) (#583-586)
Launch(uint256) should be declared external:
- FrogPrincess.Launch(uint256) (#597-601)
setKillNum(uint256) should be declared external:
- FrogPrincess.setKillNum(uint256) (#604-606)
mappingfixedAmount() should be declared external:
- FrogPrincess.mappingfixedAmount() (#615-622)
mappingfixedAmount(uint256) should be declared external:
- FrogPrincess.mappingfixedAmount(uint256) (#625-633)
setMarketPairStatus(address,bool) should be declared external:
- FrogPrincess.setMarketPairStatus(address,bool) (#635-637)
setIsExcludedFromFee(address,bool) should be declared external:
- FrogPrincess.setIsExcludedFromFee(address,bool) (#645-647)
setMultipleAccount(address[]) should be declared external:
- FrogPrincess.setMultipleAccount(address[]) (#649-652)
recover(address[]) should be declared external:
- FrogPrincess.recover(address[]) (#654-657)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FrogPrincess.setSwapAndLiquifyEnabled(bool) (#708-711)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- FrogPrincess.setSwapAndLiquifyByLimitOnly(bool) (#713-715)
getCirculatingSupply() should be declared external:
- FrogPrincess.getCirculatingSupply() (#717-719)
changeRouterVersion(address) should be declared external:
- FrogPrincess.changeRouterVersion(address) (#726-743)
transfer(address,uint256) should be declared external:
- FrogPrincess.transfer(address,uint256) (#748-751)
transferFrom(address,address,uint256) should be declared external:
- FrogPrincess.transferFrom(address,address,uint256) (#753-757)
isBlackList(address) should be declared external:
- FrogPrincess.isBlackList(address) (#759-761)
writeBlackList(address,bool) should be declared external:
- FrogPrincess.writeBlackList(address,bool) (#768-770)
setRandomAddressContract(address) should be declared external:
- FrogPrincess.setRandomAddressContract(address) (#779-782)
inputList(uint256) should be declared external:
- FrogPrincess.inputList(uint256) (#786-789)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is low.


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

Contract has 10% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Telegram and Twitter accounts


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

Price for FrogPrincess