Island Girl Token Logo

IGIRL [Island Girl] Token

About IGIRL

Listings

Token 2 years
CoinMarketCap 2 years
white paper

IslandGirl is a community-driven token on Binance Smart Chain. Users can simply hold to earn and watch $IGIRL grow with every transaction.

Social

Laser Scorebeta Last Audit: 24 April 2022

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

Anti-Scam

Links


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

IslandGirl.addLiquidity(uint256,uint256) (#876-886) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in IslandGirl._transfer(address,address,uint256) (#889-917):
External calls:
- swapAndLiquify(contractTokenBalance) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#916)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#741)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#972)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#980)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#973)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#990)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#982)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#991)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1001)
- _tokenTransfer(from,to,amount) (#916)
- _rTotal = _rTotal.sub(rFee) (#689)
- _tokenTransfer(from,to,amount) (#916)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#743)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#989)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#998)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#981)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1000)
Apply the check-effects-interactions pattern.

Additional information: link

IslandGirl.swapAndSendToFeeBUSD(uint256) (#823-828) ignores return value by IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (#827)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.

IslandGirl.includeFromMarketFeeList(address[]).i (#613) is a local variable never initialized
IslandGirl.addToBlackList(address[]).i (#652) is a local variable never initialized
IslandGirl.excludeFromMarketFeeList(address[]).i (#605) 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

IslandGirl.addLiquidity(uint256,uint256) (#876-886) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
Ensure that all the return values of the function calls are used.

Additional information: link

IslandGirl.allowance(address,address).owner (#522) shadows:
- Ownable.owner() (#167-169) (function)
IslandGirl._approve(address,address,uint256).owner (#815) shadows:
- Ownable.owner() (#167-169) (function)
Rename the local variables that shadow another component.

Additional information: link

IslandGirl.setBuyTaxFeePercent(uint256) (#617-619) should emit an event for:
- _buyTaxFee = buyTaxFee (#618)
IslandGirl.setSellTaxFeePercent(uint256) (#620-622) should emit an event for:
- _sellTaxFee = sellTaxFee (#621)
IslandGirl.setBuyLiquidityFeePercent(uint256) (#623-625) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#624)
IslandGirl.setSellLiquidityFeePercent(uint256) (#626-628) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#627)
IslandGirl.setBuyMarketFeePercent(uint256) (#629-631) should emit an event for:
- _buyMarketFee = buyMarketFee (#630)
IslandGirl.setSellMarketFeePercent(uint256) (#632-634) should emit an event for:
- _sellMarketFee = sellMarketFee (#633)
IslandGirl.setBuyBurnFeePercent(uint256) (#636-638) should emit an event for:
- _buyBurnFee = buyBurnFee (#637)
IslandGirl.setMaxTxPercent(uint256) (#643-647) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#644-646)
Emit an event for critical parameter changes.

Additional information: link

IslandGirl.setMarketWallet(address).marketWallet (#640) lacks a zero-check on :
- _marketingWalletAddress = marketWallet (#641)
Check that the address is not zero.

Additional information: link

Reentrancy in IslandGirl._transfer(address,address,uint256) (#889-917):
External calls:
- swapAndLiquify(contractTokenBalance) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#916)
- _burnFee = _buyBurnFee (#933)
- _burnFee = 0 (#802)
- _burnFee = _sellBurnFee (#942)
- _tokenTransfer(from,to,amount) (#916)
- _buyBurnFee = _previousBuyBurnFee (#781)
- _buyBurnFee = 0 (#770)
- _tokenTransfer(from,to,amount) (#916)
- _buyLiquidityFee = _previousBuyLiquidityFee (#783)
- _buyLiquidityFee = 0 (#772)
- _tokenTransfer(from,to,amount) (#916)
- _buyMarketFee = _previousBuyMarketFee (#782)
- _buyMarketFee = 0 (#769)
- _tokenTransfer(from,to,amount) (#916)
- _buyTaxFee = _previousBuyTaxFee (#780)
- _buyTaxFee = 0 (#771)
- _tokenTransfer(from,to,amount) (#916)
- _liquidityFee = 0 (#800)
- _liquidityFee = _buyLiquidityFee (#932)
- _liquidityFee = _sellLiquidityFee (#941)
- _tokenTransfer(from,to,amount) (#916)
- _marketFee = 0 (#801)
- _marketFee = _buyMarketFee (#935)
- _marketFee = _sellMarketFee (#944)
- _tokenTransfer(from,to,amount) (#916)
- _previousBurnFee = _burnFee (#796)
- _tokenTransfer(from,to,amount) (#916)
- _previousBuyBurnFee = _buyBurnFee (#760)
- _tokenTransfer(from,to,amount) (#916)
- _previousBuyLiquidityFee = _buyLiquidityFee (#762)
- _tokenTransfer(from,to,amount) (#916)
- _previousBuyMarketFee = _buyMarketFee (#761)
- _tokenTransfer(from,to,amount) (#916)
- _previousBuyTaxFee = _buyTaxFee (#759)
- _tokenTransfer(from,to,amount) (#916)
- _previousLiquidityFee = _liquidityFee (#795)
- _tokenTransfer(from,to,amount) (#916)
- _previousMarketFee = _marketFee (#797)
- _tokenTransfer(from,to,amount) (#916)
- _previousSellBurnFee = _sellBurnFee (#765)
- _tokenTransfer(from,to,amount) (#916)
- _previousSellLiquidityFee = _sellLiquidityFee (#767)
- _tokenTransfer(from,to,amount) (#916)
- _previousSellMarketFee = _sellMarketFee (#766)
- _tokenTransfer(from,to,amount) (#916)
- _previousSellTaxFee = _sellTaxFee (#764)
- _tokenTransfer(from,to,amount) (#916)
- _previousTaxFee = _taxFee (#794)
- _tokenTransfer(from,to,amount) (#916)
- _sellBurnFee = _previousSellBurnFee (#786)
- _sellBurnFee = 0 (#775)
- _tokenTransfer(from,to,amount) (#916)
- _sellLiquidityFee = _previousSellLiquidityFee (#788)
- _sellLiquidityFee = 0 (#777)
- _tokenTransfer(from,to,amount) (#916)
- _sellMarketFee = _previousSellMarketFee (#787)
- _sellMarketFee = 0 (#774)
- _tokenTransfer(from,to,amount) (#916)
- _sellTaxFee = _previousSellTaxFee (#785)
- _sellTaxFee = 0 (#776)
- _tokenTransfer(from,to,amount) (#916)
- _tFeeTotal = _tFeeTotal.add(tFee) (#690)
- _tokenTransfer(from,to,amount) (#916)
- _taxFee = _buyTaxFee (#931)
- _taxFee = 0 (#799)
- _taxFee = _sellTaxFee (#940)
Reentrancy in IslandGirl.constructor() (#488-501):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#492-493)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#497)
- _isExcludedFromFee[address(this)] = true (#498)
- uniswapV2Router = _uniswapV2Router (#495)
Reentrancy in IslandGirl.setRouterAddress(address) (#1008-1012):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1010)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1011)
Reentrancy in IslandGirl.swapAndLiquify(uint256) (#867-875):
External calls:
- swapTokensForEth(half) (#871)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
- addLiquidity(otherHalf,newBalance) (#873)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#873)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#873)
- _allowances[owner][spender] = amount (#819)
Reentrancy in IslandGirl.transferFrom(address,address,uint256) (#529-533):
External calls:
- _transfer(sender,recipient,amount) (#530)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
External calls sending eth:
- _transfer(sender,recipient,amount) (#530)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#531)
- _allowances[owner][spender] = amount (#819)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in IslandGirl._transfer(address,address,uint256) (#889-917):
External calls:
- swapAndLiquify(contractTokenBalance) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#976)
- _tokenTransfer(from,to,amount) (#916)
- Transfer(sender,recipient,tTransferAmount) (#985)
- _tokenTransfer(from,to,amount) (#916)
- Transfer(sender,recipient,tTransferAmount) (#994)
- _tokenTransfer(from,to,amount) (#916)
- Transfer(sender,recipient,tTransferAmount) (#1004)
- _tokenTransfer(from,to,amount) (#916)
Reentrancy in IslandGirl.constructor() (#488-501):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#492-493)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#500)
Reentrancy in IslandGirl.swapAndLiquify(uint256) (#867-875):
External calls:
- swapTokensForEth(half) (#871)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
- addLiquidity(otherHalf,newBalance) (#873)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#873)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#820)
- addLiquidity(otherHalf,newBalance) (#873)
- SwapAndLiquify(half,newBalance,otherHalf) (#874)
Reentrancy in IslandGirl.transferFrom(address,address,uint256) (#529-533):
External calls:
- _transfer(sender,recipient,amount) (#530)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#859-865)
External calls sending eth:
- _transfer(sender,recipient,amount) (#530)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#878-885)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#820)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#531)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#193-198) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#195)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#111-116) uses assembly
- INLINE ASM (#114)
Address._functionCallWithValue(address,bytes,uint256,string) (#136-152) uses assembly
- INLINE ASM (#144-147)
Do not use evm assembly.

Additional information: link

IslandGirl.includeInReward(address) (#583-594) has costly operations inside a loop:
- _excluded.pop() (#590)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#136-152) is never used and should be removed
Address.functionCall(address,bytes) (#123-125) is never used and should be removed
Address.functionCall(address,bytes,string) (#126-128) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#129-131) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#132-135) is never used and should be removed
Address.isContract(address) (#111-116) is never used and should be removed
Address.sendValue(address,uint256) (#118-122) is never used and should be removed
Context._msgData() (#102-105) is never used and should be removed
IslandGirl.restoreAllFee() (#804-809) is never used and should be removed
IslandGirl.swapAndSendToFeeBUSD(uint256) (#823-828) is never used and should be removed
IslandGirl.swapAndSendToFeeBnb(uint256) (#844-849) is never used and should be removed
IslandGirl.swapTokensForBUSD(uint256) (#829-843) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-93) is never used and should be removed
Remove unused functions.

Additional information: link

IslandGirl._rTotal (#419) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
IslandGirl._previousTaxFee (#431) is set pre-construction with a non-constant function or state variable:
- _taxFee
IslandGirl._previousLiquidityFee (#432) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
IslandGirl._previousMarketFee (#433) is set pre-construction with a non-constant function or state variable:
- _marketFee
IslandGirl._previousBurnFee (#434) is set pre-construction with a non-constant function or state variable:
- _burnFee
IslandGirl._previousBuyTaxFee (#439) is set pre-construction with a non-constant function or state variable:
- _buyTaxFee
IslandGirl._previousSellTaxFee (#440) is set pre-construction with a non-constant function or state variable:
- _sellTaxFee
IslandGirl._previousBuyLiquidityFee (#445) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee
IslandGirl._previousSellLiquidityFee (#446) is set pre-construction with a non-constant function or state variable:
- _sellLiquidityFee
IslandGirl._previousBuyMarketFee (#454) is set pre-construction with a non-constant function or state variable:
- _buyMarketFee
IslandGirl._previousSellMarketFee (#455) is set pre-construction with a non-constant function or state variable:
- _sellMarketFee
IslandGirl._previousBuyBurnFee (#460) is set pre-construction with a non-constant function or state variable:
- _sellBurnFee
IslandGirl._previousSellBurnFee (#461) is set pre-construction with a non-constant function or state variable:
- _buyBurnFee
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

Low level call in Address.sendValue(address,uint256) (#118-122):
- (success) = recipient.call{value: amount}() (#120)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#136-152):
- (success,returndata) = target.call{value: weiValue}(data) (#139)
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() (#231) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#232) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#247) is not in mixedCase
Function IUniswapV2Router01.WETH() (#267) is not in mixedCase
Parameter IslandGirl.setSwapAndLiquifyEnabled(bool)._enabled (#656) is not in mixedCase
Parameter IslandGirl.calculateTaxFee(uint256)._amount (#746) is not in mixedCase
Parameter IslandGirl.calculateLiquidityFee(uint256)._amount (#752) is not in mixedCase
Variable IslandGirl._isBlacklisted (#412) is not in mixedCase
Variable IslandGirl._taxFee (#427) is not in mixedCase
Variable IslandGirl._liquidityFee (#428) is not in mixedCase
Variable IslandGirl._marketFee (#429) is not in mixedCase
Variable IslandGirl._burnFee (#430) is not in mixedCase
Variable IslandGirl._buyTaxFee (#437) is not in mixedCase
Variable IslandGirl._sellTaxFee (#438) is not in mixedCase
Variable IslandGirl._previousBuyTaxFee (#439) is not in mixedCase
Variable IslandGirl._previousSellTaxFee (#440) is not in mixedCase
Variable IslandGirl._buyLiquidityFee (#443) is not in mixedCase
Variable IslandGirl._sellLiquidityFee (#444) is not in mixedCase
Variable IslandGirl._previousBuyLiquidityFee (#445) is not in mixedCase
Variable IslandGirl._previousSellLiquidityFee (#446) is not in mixedCase
Variable IslandGirl.BUSD (#449) is not in mixedCase
Variable IslandGirl._marketingWalletAddress (#450) is not in mixedCase
Variable IslandGirl._buyMarketFee (#452) is not in mixedCase
Variable IslandGirl._sellMarketFee (#453) is not in mixedCase
Variable IslandGirl._previousBuyMarketFee (#454) is not in mixedCase
Variable IslandGirl._previousSellMarketFee (#455) is not in mixedCase
Variable IslandGirl._buyBurnFee (#458) is not in mixedCase
Variable IslandGirl._sellBurnFee (#459) is not in mixedCase
Variable IslandGirl._previousBuyBurnFee (#460) is not in mixedCase
Variable IslandGirl._previousSellBurnFee (#461) is not in mixedCase
Variable IslandGirl._maxTxAmount (#464) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#103)" inContext (#97-106)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#271) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#272)
Variable IslandGirl.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl._transferFromExcluded(address,address,uint256).rTransferAmount (#988) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl._transferStandard(address,address,uint256).rTransferAmount (#971) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._transferToExcluded(address,address,uint256).rTransferAmount (#979) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._transferFromExcluded(address,address,uint256).rTransferAmount (#988) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._transferFromExcluded(address,address,uint256).rTransferAmount (#988) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Variable IslandGirl._transferStandard(address,address,uint256).rTransferAmount (#971) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._transferToExcluded(address,address,uint256).rTransferAmount (#979) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Variable IslandGirl._transferFromExcluded(address,address,uint256).rTransferAmount (#988) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._transferToExcluded(address,address,uint256).rTransferAmount (#979) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._transferFromExcluded(address,address,uint256).rTransferAmount (#988) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl._transferToExcluded(address,address,uint256).rTransferAmount (#979) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._transferFromExcluded(address,address,uint256).rTransferAmount (#988) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._transferStandard(address,address,uint256).rTransferAmount (#971) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._transferToExcluded(address,address,uint256).rTransferAmount (#979) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._transferStandard(address,address,uint256).rTransferAmount (#971) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._getValues(uint256).rTransferAmount (#695) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl._transferStandard(address,address,uint256).rTransferAmount (#971) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Variable IslandGirl.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Variable IslandGirl._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#717) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Variable IslandGirl.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#717) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#717) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#717) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#717) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#717) is too similar to IslandGirl._transferToExcluded(address,address,uint256).tTransferAmount (#979)
Variable IslandGirl._getValues(uint256).rTransferAmount (#695) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Variable IslandGirl._getValues(uint256).rTransferAmount (#695) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._transferToExcluded(address,address,uint256).rTransferAmount (#979) is too similar to IslandGirl._getTValues(uint256).tTransferAmount (#702)
Variable IslandGirl._getValues(uint256).rTransferAmount (#695) is too similar to IslandGirl._transferStandard(address,address,uint256).tTransferAmount (#971)
Variable IslandGirl._getValues(uint256).rTransferAmount (#695) is too similar to IslandGirl._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable IslandGirl._getValues(uint256).rTransferAmount (#695) is too similar to IslandGirl._getValues(uint256).tTransferAmount (#694)
Variable IslandGirl._transferStandard(address,address,uint256).rTransferAmount (#971) is too similar to IslandGirl._transferFromExcluded(address,address,uint256).tTransferAmount (#988)
Prevent variables from having similar names.

Additional information: link

IslandGirl.slitherConstructorVariables() (#401-1014) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#405)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

IslandGirl._decimals (#424) should be constant
IslandGirl._name (#422) should be constant
IslandGirl._symbol (#423) should be constant
IslandGirl._tTotal (#418) should be constant
IslandGirl.deadAddress (#405) should be constant
IslandGirl.numTokensSellToAddToLiquidity (#465) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#174-177)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#178-182)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#183-185)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#187-192)
unlock() should be declared external:
- Ownable.unlock() (#193-198)
name() should be declared external:
- IslandGirl.name() (#502-504)
symbol() should be declared external:
- IslandGirl.symbol() (#505-507)
decimals() should be declared external:
- IslandGirl.decimals() (#508-510)
totalSupply() should be declared external:
- IslandGirl.totalSupply() (#511-513)
transfer(address,uint256) should be declared external:
- IslandGirl.transfer(address,uint256) (#518-521)
allowance(address,address) should be declared external:
- IslandGirl.allowance(address,address) (#522-524)
approve(address,uint256) should be declared external:
- IslandGirl.approve(address,uint256) (#525-528)
transferFrom(address,address,uint256) should be declared external:
- IslandGirl.transferFrom(address,address,uint256) (#529-533)
increaseAllowance(address,uint256) should be declared external:
- IslandGirl.increaseAllowance(address,uint256) (#534-537)
decreaseAllowance(address,uint256) should be declared external:
- IslandGirl.decreaseAllowance(address,uint256) (#538-541)
isExcludedFromReward(address) should be declared external:
- IslandGirl.isExcludedFromReward(address) (#542-544)
totalFees() should be declared external:
- IslandGirl.totalFees() (#545-547)
deliver(uint256) should be declared external:
- IslandGirl.deliver(uint256) (#548-555)
reflectionFromToken(uint256,bool) should be declared external:
- IslandGirl.reflectionFromToken(uint256,bool) (#557-566)
excludeFromReward(address) should be declared external:
- IslandGirl.excludeFromReward(address) (#574-581)
excludeFromFee(address) should be declared external:
- IslandGirl.excludeFromFee(address) (#595-597)
includeInFee(address) should be declared external:
- IslandGirl.includeInFee(address) (#598-600)
excludeFromMarketFee(address) should be declared external:
- IslandGirl.excludeFromMarketFee(address) (#601-603)
includeInMarketFee(address) should be declared external:
- IslandGirl.includeInMarketFee(address) (#609-611)
setSwapAndLiquifyEnabled(bool) should be declared external:
- IslandGirl.setSwapAndLiquifyEnabled(bool) (#656-659)
isExcludedFromFee(address) should be declared external:
- IslandGirl.isExcludedFromFee(address) (#811-813)
setRouterAddress(address) should be declared external:
- IslandGirl.setRouterAddress(address) (#1008-1012)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 9% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token has only one trading pair


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find code repository for the project


Alexa traffic rank is very low

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has relatively low CoinMarketCap rank


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

Price for IGIRL

News for IGIRL