FLOKI SQUID GROW Token Logo

FSG [FLOKI SQUID GROW] Token

About FSG

Listings

Not Found
Token 20 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 4 August 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

Reentrancy in flokisquidgrow._transfer(address,address,uint256) (#819-855):
External calls:
- swapAndSendToFee(sellTokens) (#841)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#889-895)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#841)
- address(_marketingWallet).transfer(ethToSend) (#862)
State variables written after the call(s):
- _tOwned[from] -= amount (#845)
- transferAmount = _getValues(amount,from) (#850)
- _tOwned[address(this)] += marketingFee + liquidityFee (#801)
- _tOwned[to] += transferAmount (#853)
- swapping = false (#842)
Apply the check-effects-interactions pattern.

Additional information: link


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

flokisquidgrow.allowance(address,address).owner (#742) shadows:
- Ownable.owner() (#421-423) (function)
flokisquidgrow._approve(address,address,uint256).owner (#811) shadows:
- Ownable.owner() (#421-423) (function)
Rename the local variables that shadow another component.

Additional information: link

flokisquidgrow.setMarketingFeePercent(uint256) (#762-764) should emit an event for:
- _marketingFee = marketingFee (#763)
flokisquidgrow.setLiquidityFeePercent(uint256) (#771-773) should emit an event for:
- _liquidityFee = liquidityFee (#772)
flokisquidgrow.setMaxTxAmount(uint256) (#783-785) should emit an event for:
- _maxTxAmount = maxTxAmount (#784)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in flokisquidgrow.constructor() (#699-715):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#704)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#710)
- _isExcludedFromFee[address(this)] = true (#711)
- _isExcludedFromFee[_marketingWallet] = true (#712)
- uniswapV2Pair = _uniswapV2Pair (#707)
- uniswapV2Router = _uniswapV2Router (#706)
Reentrancy in flokisquidgrow.swapAndLiquify() (#865-877):
External calls:
- newBalance = swapTokensForEth(half) (#870)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#889-895)
- addLiquidity(otherHalf,newBalance) (#874)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#904-911)
- (success) = recipient.call{value: amount}() (#306)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#914)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#874)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#904-911)
- (success) = recipient.call{value: amount}() (#306)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#874)
- _allowances[owner][spender] = amount (#815)
Reentrancy in flokisquidgrow.transferFrom(address,address,uint256) (#751-755):
External calls:
- _transfer(sender,recipient,amount) (#752)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#889-895)
External calls sending eth:
- _transfer(sender,recipient,amount) (#752)
- address(_marketingWallet).transfer(ethToSend) (#862)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#753)
- _allowances[owner][spender] = amount (#815)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in flokisquidgrow._transfer(address,address,uint256) (#819-855):
External calls:
- swapAndSendToFee(sellTokens) (#841)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#889-895)
External calls sending eth:
- swapAndSendToFee(sellTokens) (#841)
- address(_marketingWallet).transfer(ethToSend) (#862)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#802)
- transferAmount = _getValues(amount,from) (#850)
- Transfer(from,to,transferAmount) (#854)
Reentrancy in flokisquidgrow.constructor() (#699-715):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#704)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#714)
Reentrancy in flokisquidgrow.swapAndLiquify() (#865-877):
External calls:
- newBalance = swapTokensForEth(half) (#870)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#889-895)
- addLiquidity(otherHalf,newBalance) (#874)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#904-911)
- (success) = recipient.call{value: amount}() (#306)
- address(_marketingWallet).sendValue(ethAmount - ethFromLiquidity) (#914)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#874)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#904-911)
- (success) = recipient.call{value: amount}() (#306)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- addLiquidity(otherHalf,newBalance) (#874)
- SwapAndLiquify(half,newBalance,otherHalf) (#875)
Reentrancy in flokisquidgrow.transferFrom(address,address,uint256) (#751-755):
External calls:
- _transfer(sender,recipient,amount) (#752)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#889-895)
External calls sending eth:
- _transfer(sender,recipient,amount) (#752)
- address(_marketingWallet).transfer(ethToSend) (#862)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#753)
Apply the check-effects-interactions pattern.

Additional information: link

flokisquidgrow._transfer(address,address,uint256) (#819-855) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_lastBuy[to] + _buyCooldown < block.timestamp,Must wait til after coooldown to buy) (#833)
flokisquidgrow.addLiquidity(uint256,uint256) (#899-915) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#913)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#275-284) uses assembly
- INLINE ASM (#282)
Address._functionCallWithValue(address,bytes,uint256,string) (#368-389) uses assembly
- INLINE ASM (#381-384)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#368-389) is never used and should be removed
Address.functionCall(address,bytes) (#328-330) is never used and should be removed
Address.functionCall(address,bytes,string) (#338-340) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#353-355) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#363-366) is never used and should be removed
Address.isContract(address) (#275-284) is never used and should be removed
Address.sendValue(address,uint256) (#302-308) is never used and should be removed
Context._msgData() (#247-250) is never used and should be removed
SafeMath.add(uint256,uint256) (#110-115) is never used and should be removed
SafeMath.div(uint256,uint256) (#184-186) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#200-206) is never used and should be removed
SafeMath.mod(uint256,uint256) (#220-222) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#236-239) is never used and should be removed
SafeMath.mul(uint256,uint256) (#158-170) is never used and should be removed
SafeMath.sub(uint256,uint256) (#127-129) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#141-146) is never used and should be removed
flokisquidgrow.addLiquidity(uint256,uint256) (#899-915) is never used and should be removed
flokisquidgrow.swapAndLiquify() (#865-877) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#302-308):
- (success) = recipient.call{value: amount}() (#306)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#368-389):
- (success,returndata) = target.call{value: weiValue}(data) (#372)
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() (#492) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#493) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#510) is not in mixedCase
Function IUniswapV2Router01.WETH() (#532) is not in mixedCase
Contract flokisquidgrow (#668-917) is not in CapWords
Variable flokisquidgrow._maxWalletAmount (#681) is not in mixedCase
Variable flokisquidgrow._maxTxAmount (#682) is not in mixedCase
Constant flokisquidgrow._name (#684) is not in UPPER_CASE_WITH_UNDERSCORES
Constant flokisquidgrow._symbol (#685) is not in UPPER_CASE_WITH_UNDERSCORES
Constant flokisquidgrow._decimals (#686) is not in UPPER_CASE_WITH_UNDERSCORES
Variable flokisquidgrow._marketingFee (#688) is not in mixedCase
Variable flokisquidgrow._liquidityFee (#689) is not in mixedCase
Variable flokisquidgrow._buyCooldown (#692) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#248)" inContext (#242-251)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in flokisquidgrow._transfer(address,address,uint256) (#819-855):
External calls:
- swapAndSendToFee(sellTokens) (#841)
- address(_marketingWallet).transfer(ethToSend) (#862)
State variables written after the call(s):
- _tOwned[from] -= amount (#845)
- transferAmount = _getValues(amount,from) (#850)
- _tOwned[address(this)] += marketingFee + liquidityFee (#801)
- _tOwned[to] += transferAmount (#853)
- swapping = false (#842)
Event emitted after the call(s):
- Transfer(from,address(this),marketingFee + liquidityFee) (#802)
- transferAmount = _getValues(amount,from) (#850)
- Transfer(from,to,transferAmount) (#854)
Reentrancy in flokisquidgrow.transferFrom(address,address,uint256) (#751-755):
External calls:
- _transfer(sender,recipient,amount) (#752)
- address(_marketingWallet).transfer(ethToSend) (#862)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#753)
- _allowances[owner][spender] = amount (#815)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#753)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.sendValue(address,uint256) (#302-308) uses literals with too many digits:
- recipient = address(0x000000000000000000000000000000000000dEaD) (#304)
flokisquidgrow.slitherConstructorVariables() (#668-917) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#680)
flokisquidgrow.slitherConstructorVariables() (#668-917) uses literals with too many digits:
- _maxWalletAmount = 300000000 * 10 ** 9 (#681)
flokisquidgrow.slitherConstructorVariables() (#668-917) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 9 (#682)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

flokisquidgrow._buyCooldown (#692) should be constant
flokisquidgrow._marketingWallet (#690) should be constant
flokisquidgrow._tTotal (#680) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#440-443)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#449-453)
name() should be declared external:
- flokisquidgrow.name() (#717-719)
symbol() should be declared external:
- flokisquidgrow.symbol() (#721-723)
decimals() should be declared external:
- flokisquidgrow.decimals() (#725-727)
totalSupply() should be declared external:
- flokisquidgrow.totalSupply() (#729-731)
transfer(address,uint256) should be declared external:
- flokisquidgrow.transfer(address,uint256) (#737-740)
allowance(address,address) should be declared external:
- flokisquidgrow.allowance(address,address) (#742-744)
approve(address,uint256) should be declared external:
- flokisquidgrow.approve(address,uint256) (#746-749)
transferFrom(address,address,uint256) should be declared external:
- flokisquidgrow.transferFrom(address,address,uint256) (#751-755)
increaseAllowance(address,uint256) should be declared external:
- flokisquidgrow.increaseAllowance(address,uint256) (#757-760)
decreaseAllowance(address,uint256) should be declared external:
- flokisquidgrow.decreaseAllowance(address,uint256) (#766-769)
excludeFromFee(address) should be declared external:
- flokisquidgrow.excludeFromFee(address) (#775-777)
includeInFee(address) should be declared external:
- flokisquidgrow.includeInFee(address) (#779-781)
setMaxWalletPercent(uint256) should be declared external:
- flokisquidgrow.setMaxWalletPercent(uint256) (#787-789)
isExcludedFromFee(address) should be declared external:
- flokisquidgrow.isExcludedFromFee(address) (#807-809)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Holders:


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


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


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


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair

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


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for FSG