Island Boyz Token Logo

$ISLBYZ [Island Boyz] Token

About $ISLBYZ

Listings

Token 3 years
white paper

Island Boyz is a peer-to-peer decentralized transaction network that promotes a fun environment along with responsible investing. Island Boyz wil also have NFT staking and yield farming as part of our implementation of Decentralised Finance. Our aim is to provide the community with a more relaxed and easy-going introduction to cryptocurrency.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links

Reentrancy in IslandBoyz.transferFrom(address,address,uint256) (#804-808):
External calls:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1093-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#1074-1080)
External calls sending eth:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#806)
- _allowances[owner][spender] = amount (#984)
Apply the check-effects-interactions pattern.

Additional information: link


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

IslandBoyz.deadAddress (#720) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

IslandBoyz.takeTeam(address,uint256,uint256,uint256) (#1176-1187) performs a multiplication on the result of a division:
-tTeam = tAmount.div(100).mul(_teamFee) (#1180)
Consider ordering multiplication before division.

Additional information: link

IslandBoyz.addLiquidity(uint256,uint256) (#1102-1115) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
Ensure that all the return values of the function calls are used.

Additional information: link

IslandBoyz._approve(address,address,uint256).owner (#980) shadows:
- Ownable.owner() (#47-49) (function)
Rename the local variables that shadow another component.

Additional information: link

IslandBoyz.setMaxTxAmount(uint256) (#1257-1260) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** 9 (#1259)
Emit an event for critical parameter changes.

Additional information: link

IslandBoyz.setTeamWallet(address).newWallet (#1222) lacks a zero-check on :
- teamWallet = newWallet (#1223)
Check that the address is not zero.

Additional information: link

Reentrancy in IslandBoyz.swapAndLiquify(uint256) (#1029-1059):
External calls:
- swapTokensForEth(half) (#1045)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1093-1099)
- addLiquidity(otherHalf,newBalance) (#1051)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1051)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1051)
- _allowances[owner][spender] = amount (#984)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in IslandBoyz.transferFrom(address,address,uint256) (#804-808):
External calls:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1093-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#1074-1080)
External calls sending eth:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1107-1114)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#985)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#806)
Apply the check-effects-interactions pattern.

Additional information: link

IslandBoyz._transfer(address,address,uint256) (#988-1027) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(cooldown[to] < block.timestamp) (#1001)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#444-465) uses assembly
- INLINE ASM (#457-460)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#324-327) is never used and should be removed
Remove unused functions.

Additional information: link

IslandBoyz._previousTeamFee (#724) is set pre-construction with a non-constant function or state variable:
- _teamFee
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.7 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._functionCallWithValue(address,bytes,uint256,string) (#444-465):
- (success,returndata) = target.call{value: weiValue}(data) (#448)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable IslandBoyz._maxTxAmount (#733) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IslandBoyz.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1162) is too similar to IslandBoyz.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1162)
Prevent variables from having similar names.

Additional information: link

IslandBoyz.slitherConstructorVariables() (#680-1268) uses literals with too many digits:
- _maxTxAmount = 1000000000000000 * 10 ** 9 (#733)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

setSwapAndLiquifyEnabled(bool) should be declared external:
- IslandBoyz.setSwapAndLiquifyEnabled(bool) (#1262-1265)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker ($ISLBYZ) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Youtube account


Unable to find Discord account


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 whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


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 scam / 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 $ISLBYZ