Frog Family Token Logo

FROGF [Frog Family] Token

ALERT: unclassified scam

About FROGF

Listings

Token 22 months
white paper

Frog Family Token - This is SAFE | FAST | Earning Token..
🐸 KYC (SpyWolf)
🐸 Audit V.1 (Certik*)
🐸 Team Doxxed
🐸 Professional team
🐸 DAPP Ready
🐸 NFT Done

Social

Laser Scorebeta Last Audit: 22 June 2022

report
Token seems to be a scam (type: unclassified scam).

Reentrancy in FROGF._transferFrom(address,address,uint256) (#510-558):
External calls:
- swapBack() (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#609-618)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#626-632)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#640-646)
External calls sending eth:
- swapBack() (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#538)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#541)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#540)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (#680)
- _rebase() (#550)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#748)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)

FROGF.swapBack() (#649-672) performs a multiplication on the result of a division:
-contractTokenBalance = _gonBalances[address(this)].div(_gonsPerFragment) (#653)
-amountToLiquify = contractTokenBalance.mul(dynamicLiquidityFee.mul(2)).div(realTotalFee) (#655)
FROGF.swapBack() (#649-672) performs a multiplication on the result of a division:
-contractTokenBalance = _gonBalances[address(this)].div(_gonsPerFragment) (#653)
-amountToRFV = contractTokenBalance.mul(buyFeemarketing.mul(2).add(sellFeemarketingAdded)).div(realTotalFee) (#656)
FROGF.setSwapBackSettings(bool,uint256,uint256) (#806-809) performs a multiplication on the result of a division:
-gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (#808)
Consider ordering multiplication before division.

Additional information: link

FROGF.constructor() (#397-426) ignores return value by IBEP20(busdToken).approve(address(router),uint256(- 1)) (#421)
FROGF.constructor() (#397-426) ignores return value by IBEP20(busdToken).approve(address(pairBusd),uint256(- 1)) (#422)
FROGF.constructor() (#397-426) ignores return value by IBEP20(busdToken).approve(address(this),uint256(- 1)) (#423)
FROGF.getLiquidityBacking(uint256) (#477-483) ignores return value by liquidityBalance.add(balanceOf(_markerPairs[i]).div(10 ** 9)) (#480)
FROGF._addLiquidity(uint256,uint256) (#598-607) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
FROGF._addLiquidityBusd(uint256,uint256) (#608-619) ignores return value by router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#609-618)
Ensure that all the return values of the function calls are used.

Additional information: link

FROGF.setTargetLiquidity(uint256,uint256) (#801-804) should emit an event for:
- targetLiquidity = target (#802)
- targetLiquidityDenominator = accuracy (#803)
FROGF.setSwapBackSettings(bool,uint256,uint256) (#806-809) should emit an event for:
- gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (#808)
FROGF.setRebaseFrequency(uint256) (#833-836) should emit an event for:
- rebaseFrequency = _rebaseFrequency (#835)
FROGF.setRewardYield(uint256,uint256) (#838-841) should emit an event for:
- rewardYield = _rewardYield (#839)
- rewardYieldDenominator = _rewardYieldDenominator (#840)
FROGF.setNextRebase(uint256) (#853-855) should emit an event for:
- nextRebase = _nextRebase (#854)
Emit an event for critical parameter changes.

Additional information: link

FROGF.setFeeReceivers(address,address,address)._liquidityReceiver (#811) lacks a zero-check on :
- liquidityReceiver = _liquidityReceiver (#812)
FROGF.setFeeReceivers(address,address,address)._DevelopmentReceiver (#811) lacks a zero-check on :
- DevelopmentReceiver = _DevelopmentReceiver (#813)
FROGF.setFeeReceivers(address,address,address)._fmarketingValueReceiver (#811) lacks a zero-check on :
- fmarketingValueReceiver = _fmarketingValueReceiver (#814)
FROGF.clearStuckBalance(address)._receiver (#819) lacks a zero-check on :
- address(_receiver).transfer(balance) (#821)
Check that the address is not zero.

Additional information: link

FROGF.manualSync() (#489-493) has external calls inside a loop: InterfaceLP(_markerPairs[i]).sync() (#491)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FROGF._transferFrom(address,address,uint256) (#510-558):
External calls:
- swapBack() (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#609-618)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#626-632)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#640-646)
External calls sending eth:
- swapBack() (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
State variables written after the call(s):
- _rebase() (#550)
- _totalSupply = _totalSupply.sub(uint256(- supplyDelta)) (#739)
- _totalSupply = _totalSupply.add(uint256(supplyDelta)) (#741)
- _totalSupply = MAX_SUPPLY (#745)
- _rebase() (#550)
- nextRebase = epoch + rebaseFrequency (#750)
Reentrancy in FROGF.constructor() (#397-426):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#399)
- pairBusd = IDEXFactory(router.factory()).createPair(address(this),busdToken) (#400)
State variables written after the call(s):
- DevelopmentReceiver = msg.sender (#402)
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#404)
- _allowedFragments[address(this)][pair] = uint256(- 1) (#405)
- _allowedFragments[address(this)][address(this)] = uint256(- 1) (#406)
- _allowedFragments[address(this)][pairBusd] = uint256(- 1) (#407)
- _gonBalances[msg.sender] = TOTAL_GONS (#413)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#414)
- _isFeeExempt[DevelopmentReceiver] = true (#416)
- _isFeeExempt[fmarketingValueReceiver] = true (#417)
- _isFeeExempt[address(this)] = true (#418)
- _isFeeExempt[msg.sender] = true (#419)
- setAutomatedMarketMakerPair(pair,true) (#409)
- _markerPairs.push(_pair) (#773)
- _markerPairs[i] = _markerPairs[_markerPairs.length - 1] (#778)
- _markerPairs.pop() (#779)
- setAutomatedMarketMakerPair(pairBusd,true) (#410)
- _markerPairs.push(_pair) (#773)
- _markerPairs[i] = _markerPairs[_markerPairs.length - 1] (#778)
- _markerPairs.pop() (#779)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#412)
- setAutomatedMarketMakerPair(pair,true) (#409)
- automatedMarketMakerPairs[_pair] = _value (#770)
- setAutomatedMarketMakerPair(pairBusd,true) (#410)
- automatedMarketMakerPairs[_pair] = _value (#770)
- fmarketingValueReceiver = msg.sender (#403)
- liquidityReceiver = msg.sender (#401)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FROGF._swapAndLiquify(uint256) (#571-596):
External calls:
- _swapTokensForBNB(half,address(this)) (#578)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#626-632)
- _addLiquidity(otherHalf,newBalance) (#582)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
External calls sending eth:
- _addLiquidity(otherHalf,newBalance) (#582)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#584)
Reentrancy in FROGF._swapAndLiquify(uint256) (#571-596):
External calls:
- _swapTokensForBusd(half,address(this)) (#588)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#640-646)
- _addLiquidityBusd(otherHalf,newBalance_scope_1) (#592)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#609-618)
Event emitted after the call(s):
- SwapAndLiquifyBusd(half,newBalance_scope_1,otherHalf) (#594)
Reentrancy in FROGF._transferFrom(address,address,uint256) (#510-558):
External calls:
- swapBack() (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#609-618)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#626-632)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#640-646)
External calls sending eth:
- swapBack() (#535)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#734)
- _rebase() (#550)
- LogRebase(epoch,_totalSupply) (#752)
- _rebase() (#550)
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#681)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#540)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#543-547)
Reentrancy in FROGF.constructor() (#397-426):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#399)
- pairBusd = IDEXFactory(router.factory()).createPair(address(this),busdToken) (#400)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(_pair,_value) (#785)
- setAutomatedMarketMakerPair(pairBusd,true) (#410)
- SetAutomatedMarketMakerPair(_pair,_value) (#785)
- setAutomatedMarketMakerPair(pair,true) (#409)
Reentrancy in FROGF.constructor() (#397-426):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#399)
- pairBusd = IDEXFactory(router.factory()).createPair(address(this),busdToken) (#400)
- IBEP20(busdToken).approve(address(router),uint256(- 1)) (#421)
- IBEP20(busdToken).approve(address(pairBusd),uint256(- 1)) (#422)
- IBEP20(busdToken).approve(address(this),uint256(- 1)) (#423)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#425)
Reentrancy in FROGF.swapBack() (#649-672):
External calls:
- _swapAndLiquify(amountToLiquify) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#609-618)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#626-632)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#640-646)
- _swapTokensForBusd(amountToRFV,fmarketingValueReceiver) (#664)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#640-646)
- _swapTokensForBNB(amountToDevelopment,DevelopmentReceiver) (#668)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#626-632)
External calls sending eth:
- _swapAndLiquify(amountToLiquify) (#660)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#599-606)
Event emitted after the call(s):
- SwapBack(contractTokenBalance,amountToLiquify,amountToRFV,amountToDevelopment) (#671)
Apply the check-effects-interactions pattern.

Additional information: link

FROGF.shouldRebase() (#450-452) uses timestamp for comparisons
Dangerous comparisons:
- nextRebase <= block.timestamp (#451)
FROGF._transferFrom(address,address,uint256) (#510-558) uses timestamp for comparisons
Dangerous comparisons:
- shouldRebase() && autoRebase (#549)
FROGF.manualRebase() (#756-765) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(nextRebase <= block.timestamp,Not in time) (#758)
Avoid relying on block.timestamp.

Additional information: link

FROGF.setAutomatedMarketMakerPair(address,bool) (#767-786) has costly operations inside a loop:
- _markerPairs.pop() (#779)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.mod(uint256,uint256) (#109-112) is never used and should be removed
SafeMathInt.abs(int256) (#35-38) is never used and should be removed
SafeMathInt.add(int256,int256) (#29-33) is never used and should be removed
SafeMathInt.div(int256,int256) (#17-21) is never used and should be removed
SafeMathInt.mul(int256,int256) (#9-15) is never used and should be removed
SafeMathInt.sub(int256,int256) (#23-27) is never used and should be removed
Remove unused functions.

Additional information: link

FROGF.totalBuyFee (#359) is set pre-construction with a non-constant function or state variable:
- DevelopmentFee.add(buyFeemarketing)
FROGF.totalSellFee (#360) is set pre-construction with a non-constant function or state variable:
- totalBuyFee.add(sellFeeDevelopmentAdded).add(sellFeemarketingAdded)
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

Function IDEXRouter.WETH() (#171) is not in mixedCase
Struct FROGF.user (#375-379) is not in CapWords
Parameter FROGF.checkFeeExempt(address)._addr (#442) is not in mixedCase
Parameter FROGF.setAutomatedMarketMakerPair(address,bool)._pair (#767) is not in mixedCase
Parameter FROGF.setAutomatedMarketMakerPair(address,bool)._value (#767) is not in mixedCase
Parameter FROGF.setFeeExempt(address,bool)._addr (#790) is not in mixedCase
Parameter FROGF.setFeeExempt(address,bool)._value (#790) is not in mixedCase
Parameter FROGF.setTwentyFourhours(uint256)._time (#797) is not in mixedCase
Parameter FROGF.setSwapBackSettings(bool,uint256,uint256)._enabled (#806) is not in mixedCase
Parameter FROGF.setSwapBackSettings(bool,uint256,uint256)._num (#806) is not in mixedCase
Parameter FROGF.setSwapBackSettings(bool,uint256,uint256)._denom (#806) is not in mixedCase
Parameter FROGF.setFeeReceivers(address,address,address)._liquidityReceiver (#811) is not in mixedCase
Parameter FROGF.setFeeReceivers(address,address,address)._DevelopmentReceiver (#811) is not in mixedCase
Parameter FROGF.setFeeReceivers(address,address,address)._fmarketingValueReceiver (#811) is not in mixedCase
Parameter FROGF.clearStuckBalance(address)._receiver (#819) is not in mixedCase
Parameter FROGF.setAutoRebase(bool)._autoRebase (#828) is not in mixedCase
Parameter FROGF.setRebaseFrequency(uint256)._rebaseFrequency (#833) is not in mixedCase
Parameter FROGF.setRewardYield(uint256,uint256)._rewardYield (#838) is not in mixedCase
Parameter FROGF.setRewardYield(uint256,uint256)._rewardYieldDenominator (#838) is not in mixedCase
Parameter FROGF.setFeesOnNormalTransfers(bool)._enabled (#843) is not in mixedCase
Parameter FROGF.setIsLiquidityInBnb(bool)._value (#848) is not in mixedCase
Parameter FROGF.setNextRebase(uint256)._nextRebase (#853) is not in mixedCase
Variable FROGF._isFeeExempt (#331) is not in mixedCase
Variable FROGF._markerPairs (#332) is not in mixedCase
Variable FROGF.DEAD (#343) is not in mixedCase
Variable FROGF.ZERO (#344) is not in mixedCase
Variable FROGF.DevelopmentReceiver (#347) is not in mixedCase
Variable FROGF.DevelopmentFee (#355) is not in mixedCase
Variable FROGF.TwentyFourhours (#381) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#176) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#177)
Prevent variables from having similar names.

Additional information: link

FROGF.slitherConstructorVariables() (#314-865) uses literals with too many digits:
- rewardYieldDenominator = 10000000000 (#325)
FROGF.slitherConstructorVariables() (#314-865) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#343)
FROGF.slitherConstructorVariables() (#314-865) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#344)
FROGF.slitherConstructorConstantVariables() (#314-865) uses literals with too many digits:
- INITIAL_FRAGMENTS_SUPPLY = 1000000000 * 10 ** DECIMALS (#339)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#7) is never used in SafeMathInt (#5-39)
Remove unused state variables.

Additional information: link

FROGF.DEAD (#343) should be constant
FROGF.DevelopmentFee (#355) should be constant
FROGF.ZERO (#344) should be constant
FROGF.busdToken (#349) should be constant
FROGF.buyFeemarketing (#356) should be constant
FROGF.feeDenominator (#361) should be constant
FROGF.maxSellTransactionAmount (#389) should be constant
FROGF.sellFeeDevelopmentAdded (#357) should be constant
FROGF.sellFeemarketingAdded (#358) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- BEP20Detailed.name() (#155-157)
symbol() should be declared external:
- BEP20Detailed.symbol() (#159-161)
decimals() should be declared external:
- BEP20Detailed.decimals() (#163-165)
owner() should be declared external:
- Ownable.owner() (#250-252)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#259-262)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#264-266)
addWhitelisted(address) should be declared external:
- WhitelistedRole.addWhitelisted(address) (#291-293)
removeWhitelisted(address) should be declared external:
- WhitelistedRole.removeWhitelisted(address) (#295-297)
renounceWhitelisted() should be declared external:
- WhitelistedRole.renounceWhitelisted() (#299-301)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Twitter account has less than 100 followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token contract audit


Unable to find audit 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


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for FROGF

News for FROGF