Froggies Token Logo

FROGGIES Token

About FROGGIES

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

We are the Collective Finance Community who have created a financial Ecosystem around our crypto currency Froggies Token. Our Vision is to harvest the numbers and strength of the Meme Communities and connect them through serious Partnerships with REAL Use Cases, where the Froggies Token will be used as a REAL Utility Token. The Froggies Token, will initially be integrated in two already established Communities within the world of arts and social sustainability

Social

Laser Scorebeta Last Audit: 28 February 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

FROGGIES.sendETHToFee(uint256) (contracts/Froggies.sol#863-865) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FROGGIES._transfer(address,address,uint256) (contracts/Froggies.sol#788-851):
External calls:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/Froggies.sol#1102)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#934)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#935)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#997)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#976)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#977)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#956)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#999)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _rTotal = _rTotal.sub(rFee) (contracts/Froggies.sol#1006)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/Froggies.sol#1104)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Froggies.sol#975)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Froggies.sol#996)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Froggies.sol#955)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Froggies.sol#998)
Reentrancy in FROGGIES.changeBridge(address) (contracts/Froggies.sol#590-601):
External calls:
- _transfer(currentBridge,newBridgeAddress,balanceOf(currentBridge)) (contracts/Froggies.sol#592-596)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
External calls sending eth:
- _transfer(currentBridge,newBridgeAddress,balanceOf(currentBridge)) (contracts/Froggies.sol#592-596)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _isExcludedFromFee[currentBridge] = false (contracts/Froggies.sol#598)
- _isExcludedFromFee[currentBridge] = true (contracts/Froggies.sol#600)
- currentBridge = newBridgeAddress (contracts/Froggies.sol#599)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

FROGGIES.addLiquidity(uint256,uint256) (contracts/Froggies.sol#887-900) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Froggies.sol#892-899)
Ensure that all the return values of the function calls are used.

Additional information: link

FROGGIES.allowance(address,address).owner (contracts/Froggies.sol#654) shadows:
- Ownable.owner() (contracts/Froggies.sol#151-153) (function)
Rename the local variables that shadow another component.

Additional information: link

FROGGIES.setMaxTxAmount(uint256) (contracts/Froggies.sol#608-610) should emit an event for:
- maxTxAmount = amount (contracts/Froggies.sol#609)
FROGGIES.setFeeRate(uint256) (contracts/Froggies.sol#1148-1150) should emit an event for:
- _feeRate = rate (contracts/Froggies.sol#1149)
FROGGIES.setReflectionFee(uint256) (contracts/Froggies.sol#1152-1154) should emit an event for:
- reflectionFee = fee (contracts/Froggies.sol#1153)
FROGGIES.setSellFee(uint256) (contracts/Froggies.sol#1156-1158) should emit an event for:
- sellFee = fee (contracts/Froggies.sol#1157)
Emit an event for critical parameter changes.

Additional information: link

FROGGIES.changeBridge(address).newBridgeAddress (contracts/Froggies.sol#590) lacks a zero-check on :
- currentBridge = newBridgeAddress (contracts/Froggies.sol#599)
FROGGIES.setMarketingWallet(address)._marketingWallet (contracts/Froggies.sol#1138) lacks a zero-check on :
- marketingWallet = address(_marketingWallet) (contracts/Froggies.sol#1139)
Check that the address is not zero.

Additional information: link

Reentrancy in FROGGIES._transfer(address,address,uint256) (contracts/Froggies.sol#788-851):
External calls:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _liquidityFee = 0 (contracts/Froggies.sol#1123)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/Froggies.sol#1007)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _taxFee = 0 (contracts/Froggies.sol#1122)
Reentrancy in FROGGIES.initContract() (contracts/Froggies.sol#577-588):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Froggies.sol#581-582)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/Froggies.sol#586)
- _isExcludedFromFee[address(this)] = true (contracts/Froggies.sol#587)
- uniswapV2Router = _uniswapV2Router (contracts/Froggies.sol#584)
Reentrancy in FROGGIES.transferFrom(address,address,uint256) (contracts/Froggies.sol#672-684):
External calls:
- _transfer(sender,recipient,amount) (contracts/Froggies.sol#677)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Froggies.sol#677)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,E010)) (contracts/Froggies.sol#678-682)
- _allowances[_holder][spender] = amount (contracts/Froggies.sol#784)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FROGGIES._transfer(address,address,uint256) (contracts/Froggies.sol#788-851):
External calls:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#938)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#959)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#980)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#1002)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
Reentrancy in FROGGIES.swapTokensForEth(uint256) (contracts/Froggies.sol#867-885):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (contracts/Froggies.sol#884)
Reentrancy in FROGGIES.transferFrom(address,address,uint256) (contracts/Froggies.sol#672-684):
External calls:
- _transfer(sender,recipient,amount) (contracts/Froggies.sol#677)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Froggies.sol#876-882)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Froggies.sol#677)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
Event emitted after the call(s):
- Approval(_holder,spender,amount) (contracts/Froggies.sol#785)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,E010)) (contracts/Froggies.sol#678-682)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (contracts/Froggies.sol#55-66) uses assembly
- INLINE ASM (contracts/Froggies.sol#62-64)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Froggies.sol#109-132) uses assembly
- INLINE ASM (contracts/Froggies.sol#124-127)
Do not use evm assembly.

Additional information: link

FROGGIES.includeInReward(address) (contracts/Froggies.sol#763-774) has costly operations inside a loop:
- _excluded.pop() (contracts/Froggies.sol#770)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Froggies.sol#109-132) is never used and should be removed
Address.functionCall(address,bytes) (contracts/Froggies.sol#76-81) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/Froggies.sol#83-89) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/Froggies.sol#91-97) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/Froggies.sol#99-107) is never used and should be removed
Address.isContract(address) (contracts/Froggies.sol#55-66) is never used and should be removed
Address.sendValue(address,uint256) (contracts/Froggies.sol#68-74) is never used and should be removed
Context._msgData() (contracts/Froggies.sol#48-51) is never used and should be removed
FROGGIES.addLiquidity(uint256,uint256) (contracts/Froggies.sol#887-900) is never used and should be removed
FROGGIES.transferToAddressETH(address,uint256) (contracts/Froggies.sol#1142-1146) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#59-61) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#63-70) is never used and should be removed
Remove unused functions.

Additional information: link

FROGGIES._rTotal (contracts/Froggies.sol#538) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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 version^0.8.0 (contracts/Froggies.sol#14) allows old versions
Pragma version^0.8.0 (contracts/IERC20.sol#2) allows old versions
Pragma version^0.8.0 (contracts/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) (contracts/Froggies.sol#68-74):
- (success) = recipient.call{value: amount}() (contracts/Froggies.sol#72)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Froggies.sol#109-132):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/Froggies.sol#117-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() (contracts/Froggies.sol#239) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/Froggies.sol#241) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/Froggies.sol#271) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/Froggies.sol#317) is not in mixedCase
Parameter FROGGIES.calculateTaxFee(uint256)._amount (contracts/Froggies.sol#1107) is not in mixedCase
Parameter FROGGIES.calculateLiquidityFee(uint256)._amount (contracts/Froggies.sol#1111) is not in mixedCase
Parameter FROGGIES.setMarketingWallet(address)._marketingWallet (contracts/Froggies.sol#1138) is not in mixedCase
Variable FROGGIES._isTransactionPaused (contracts/Froggies.sol#535) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/Froggies.sol#49)" inContext (contracts/Froggies.sol#43-52)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in FROGGIES._transfer(address,address,uint256) (contracts/Froggies.sol#788-851):
External calls:
- swapTokens(contractTokenBalance) (contracts/Froggies.sol#847)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _liquidityFee = 0 (contracts/Froggies.sol#1123)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/Froggies.sol#1102)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#934)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#935)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#997)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Froggies.sol#976)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#977)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#956)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Froggies.sol#999)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _rTotal = _rTotal.sub(rFee) (contracts/Froggies.sol#1006)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/Froggies.sol#1007)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/Froggies.sol#1104)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Froggies.sol#975)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Froggies.sol#996)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Froggies.sol#955)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Froggies.sol#998)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- _taxFee = 0 (contracts/Froggies.sol#1122)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#938)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#959)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#980)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
- Transfer(sender,recipient,tTransferAmount) (contracts/Froggies.sol#1002)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Froggies.sol#850)
Reentrancy in FROGGIES.changeBridge(address) (contracts/Froggies.sol#590-601):
External calls:
- _transfer(currentBridge,newBridgeAddress,balanceOf(currentBridge)) (contracts/Froggies.sol#592-596)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _isExcludedFromFee[currentBridge] = false (contracts/Froggies.sol#598)
- _isExcludedFromFee[currentBridge] = true (contracts/Froggies.sol#600)
- currentBridge = newBridgeAddress (contracts/Froggies.sol#599)
Reentrancy in FROGGIES.transferFrom(address,address,uint256) (contracts/Froggies.sol#672-684):
External calls:
- _transfer(sender,recipient,amount) (contracts/Froggies.sol#677)
- marketingWallet.transfer(amount.mul(sellFee).div(10)) (contracts/Froggies.sol#864)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,E010)) (contracts/Froggies.sol#678-682)
- _allowances[_holder][spender] = amount (contracts/Froggies.sol#784)
Event emitted after the call(s):
- Approval(_holder,spender,amount) (contracts/Froggies.sol#785)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,E010)) (contracts/Froggies.sol#678-682)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/Froggies.sol#322) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/Froggies.sol#323)
Variable FROGGIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Froggies.sol#1075) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES._getValues(uint256).rTransferAmount (contracts/Froggies.sol#1027) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES._transferStandard(address,address,uint256).rTransferAmount (contracts/Froggies.sol#928) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#990) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Froggies.sol#739) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#969) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Froggies.sol#739) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#990) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES._transferStandard(address,address,uint256).rTransferAmount (contracts/Froggies.sol#928) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Froggies.sol#739) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Variable FROGGIES._getValues(uint256).rTransferAmount (contracts/Froggies.sol#1027) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES._transferStandard(address,address,uint256).rTransferAmount (contracts/Froggies.sol#928) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Variable FROGGIES._getValues(uint256).rTransferAmount (contracts/Froggies.sol#1027) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Froggies.sol#739) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#969) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#969) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES._transferStandard(address,address,uint256).rTransferAmount (contracts/Froggies.sol#928) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES._getValues(uint256).rTransferAmount (contracts/Froggies.sol#1027) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#990) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Froggies.sol#739) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Froggies.sol#739) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES._transferStandard(address,address,uint256).rTransferAmount (contracts/Froggies.sol#928) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Froggies.sol#1075) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#990) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#948) is too similar to FROGGIES._getTValues(uint256).tTransferAmount (contracts/Froggies.sol#1054)
Variable FROGGIES._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#990) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Variable FROGGIES._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#969) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#948) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#990) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#948) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Variable FROGGIES._transferStandard(address,address,uint256).rTransferAmount (contracts/Froggies.sol#928) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#948) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Froggies.sol#1075) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#948) is too similar to FROGGIES._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#992)
Variable FROGGIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Froggies.sol#1075) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Froggies.sol#1075) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Variable FROGGIES._getValues(uint256).rTransferAmount (contracts/Froggies.sol#1027) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._getValues(uint256).rTransferAmount (contracts/Froggies.sol#1027) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Variable FROGGIES._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#948) is too similar to FROGGIES._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#971)
Variable FROGGIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Froggies.sol#1075) is too similar to FROGGIES._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Froggies.sol#950)
Variable FROGGIES._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#969) is too similar to FROGGIES._getValues(uint256).tTransferAmount (contracts/Froggies.sol#1023)
Variable FROGGIES._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Froggies.sol#969) is too similar to FROGGIES._transferStandard(address,address,uint256).tTransferAmount (contracts/Froggies.sol#930)
Prevent variables from having similar names.

Additional information: link

FROGGIES.slitherConstructorVariables() (contracts/Froggies.sol#522-1162) uses literals with too many digits:
- _tTotal = 100000000000000000 * 10 ** 9 (contracts/Froggies.sol#537)
FROGGIES.slitherConstructorVariables() (contracts/Froggies.sol#522-1162) uses literals with too many digits:
- maxTxAmount = 34538200000000 * 10 ** 9 (contracts/Froggies.sol#543)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (contracts/Froggies.sol#137) is never used in FROGGIES (contracts/Froggies.sol#522-1162)
Ownable._lockTime (contracts/Froggies.sol#138) is never used in FROGGIES (contracts/Froggies.sol#522-1162)
Remove unused state variables.

Additional information: link

FROGGIES._decimals (contracts/Froggies.sol#542) should be constant
FROGGIES._name (contracts/Froggies.sol#540) should be constant
FROGGIES._symbol (contracts/Froggies.sol#541) should be constant
FROGGIES._tTotal (contracts/Froggies.sol#537) should be constant
Ownable._lockTime (contracts/Froggies.sol#138) should be constant
Ownable._previousOwner (contracts/Froggies.sol#137) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Froggies.sol#160-163)
changeBridge(address) should be declared external:
- FROGGIES.changeBridge(address) (contracts/Froggies.sol#590-601)
setMaxTxAmount(uint256) should be declared external:
- FROGGIES.setMaxTxAmount(uint256) (contracts/Froggies.sol#608-610)
pause() should be declared external:
- FROGGIES.pause() (contracts/Froggies.sol#612-614)
unPause() should be declared external:
- FROGGIES.unPause() (contracts/Froggies.sol#616-618)
isPaused() should be declared external:
- FROGGIES.isPaused() (contracts/Froggies.sol#620-622)
name() should be declared external:
- FROGGIES.name() (contracts/Froggies.sol#624-626)
symbol() should be declared external:
- FROGGIES.symbol() (contracts/Froggies.sol#628-630)
decimals() should be declared external:
- FROGGIES.decimals() (contracts/Froggies.sol#632-634)
totalSupply() should be declared external:
- FROGGIES.totalSupply() (contracts/Froggies.sol#636-638)
transfer(address,uint256) should be declared external:
- FROGGIES.transfer(address,uint256) (contracts/Froggies.sol#645-652)
allowance(address,address) should be declared external:
- FROGGIES.allowance(address,address) (contracts/Froggies.sol#654-661)
approve(address,uint256) should be declared external:
- FROGGIES.approve(address,uint256) (contracts/Froggies.sol#663-670)
transferFrom(address,address,uint256) should be declared external:
- FROGGIES.transferFrom(address,address,uint256) (contracts/Froggies.sol#672-684)
increaseAllowance(address,uint256) should be declared external:
- FROGGIES.increaseAllowance(address,uint256) (contracts/Froggies.sol#686-697)
decreaseAllowance(address,uint256) should be declared external:
- FROGGIES.decreaseAllowance(address,uint256) (contracts/Froggies.sol#699-710)
isExcludedFromReward(address) should be declared external:
- FROGGIES.isExcludedFromReward(address) (contracts/Froggies.sol#712-714)
totalFees() should be declared external:
- FROGGIES.totalFees() (contracts/Froggies.sol#716-718)
deliver(uint256) should be declared external:
- FROGGIES.deliver(uint256) (contracts/Froggies.sol#720-727)
reflectionFromToken(uint256,bool) should be declared external:
- FROGGIES.reflectionFromToken(uint256,bool) (contracts/Froggies.sol#729-742)
excludeFromReward(address) should be declared external:
- FROGGIES.excludeFromReward(address) (contracts/Froggies.sol#754-761)
isExcludedFromFee(address) should be declared external:
- FROGGIES.isExcludedFromFee(address) (contracts/Froggies.sol#1126-1128)
excludeFromFee(address) should be declared external:
- FROGGIES.excludeFromFee(address) (contracts/Froggies.sol#1130-1132)
includeInFee(address) should be declared external:
- FROGGIES.includeInFee(address) (contracts/Froggies.sol#1134-1136)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is low.

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


Unable to find Youtube account


Unable to find Discord account


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for FROGGIES

News for FROGGIES