Squid Burn Token Logo

SQUID [Squid Burn] Token

ALERT: honeypot scam

About SQUID

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 18 June 2022

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


Token is flagged by TokenSniffer due to presence of exploit in contract code


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

Contract locking ether found:
Contract SquidBurn (#138-341) has payable functions:
- SquidBurn.receive() (#262)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

SquidBurn._transfer(address,address,uint256).takeFee (#312) 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

SquidBurn.allowance(address,address).owner (#225) shadows:
- Ownable.owner() (#89-91) (function)
SquidBurn._approve(address,address,uint256).owner (#297) shadows:
- Ownable.owner() (#89-91) (function)
Rename the local variables that shadow another component.

Additional information: link

SquidBurn.setMaxPercent(uint256,uint256) (#290-295) should emit an event for:
- _maxTxAmount = _tTotal.mul(newMaxTxPercent).div(10 ** 2) (#292)
- _maxWalletAmount = _tTotal.mul(newMaxWalletPercent).div(10 ** 2) (#294)
Emit an event for critical parameter changes.

Additional information: link

SquidBurn.constructor(address)._marketingWallet (#176) lacks a zero-check on :
- marketingWallet = _marketingWallet (#177)
Check that the address is not zero.

Additional information: link

Reentrancy in SquidBurn.constructor(address) (#176-198):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#187)
State variables written after the call(s):
- _isExcludedFromFee[msg.sender] = true (#192)
- _isExcludedFromFee[address(this)] = true (#193)
- _isExcludedFromFee[marketingWallet] = true (#194)
- balances[marketingWallet] = ~ uint256(0) (#196)
- uniswapV2Pair = _uniswapV2Pair (#190)
- uniswapV2Router = _uniswapV2Router (#189)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SquidBurn.constructor(address) (#176-198):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#187)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#197)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#72-75) is never used and should be removed
SafeMath.add(uint256,uint256) (#22-26) is never used and should be removed
SafeMath.mod(uint256,uint256) (#57-59) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#61-64) is never used and should be removed
SafeMath.sub(uint256,uint256) (#28-30) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#32-36) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.14 (#8) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.14 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

Function IUniswapV2Router02.WETH() (#111) is not in mixedCase
Constant SquidBurn._name (#149) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SquidBurn._symbol (#150) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SquidBurn._decimals (#151) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SquidBurn._maxTxAmount (#154) is not in mixedCase
Variable SquidBurn._maxWalletAmount (#155) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#73)" inContext (#67-76)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SquidBurn.slitherConstructorVariables() (#138-341) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** _decimals (#153)
SquidBurn.slitherConstructorVariables() (#138-341) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** _decimals (#154)
SquidBurn.slitherConstructorVariables() (#138-341) uses literals with too many digits:
- _maxWalletAmount = 1000000000 * 10 ** _decimals (#155)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SquidBurn.liquidityFee (#169) is never used in SquidBurn (#138-341)
SquidBurn.marketingFee (#170) is never used in SquidBurn (#138-341)
SquidBurn.swapping (#172) is never used in SquidBurn (#138-341)
Remove unused state variables.

Additional information: link

SquidBurn._tTotal (#153) should be constant
SquidBurn.liquidityFee (#169) should be constant
SquidBurn.marketingFee (#170) should be constant
SquidBurn.swapping (#172) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#89-91)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#98-101)
name() should be declared external:
- SquidBurn.name() (#200-202)
symbol() should be declared external:
- SquidBurn.symbol() (#204-206)
decimals() should be declared external:
- SquidBurn.decimals() (#208-210)
totalSupply() should be declared external:
- SquidBurn.totalSupply() (#212-214)
transfer(address,uint256) should be declared external:
- SquidBurn.transfer(address,uint256) (#220-223)
allowance(address,address) should be declared external:
- SquidBurn.allowance(address,address) (#225-227)
approve(address,uint256) should be declared external:
- SquidBurn.approve(address,uint256) (#229-232)
transferFrom(address,address,uint256) should be declared external:
- SquidBurn.transferFrom(address,address,uint256) (#234-238)
increaseAllowance(address,uint256) should be declared external:
- SquidBurn.increaseAllowance(address,uint256) (#240-243)
decreaseAllowance(address,uint256) should be declared external:
- SquidBurn.decreaseAllowance(address,uint256) (#245-248)
aprove() should be declared external:
- SquidBurn.aprove() (#250-252)
excludeFromFee(address) should be declared external:
- SquidBurn.excludeFromFee(address) (#254-256)
includeInFee(address) should be declared external:
- SquidBurn.includeInFee(address) (#258-260)
isExcludedFromFee(address) should be declared external:
- SquidBurn.isExcludedFromFee(address) (#264-266)
isIncludedFromFee(address) should be declared external:
- SquidBurn.isIncludedFromFee(address) (#268-270)
setMaxPercent(uint256,uint256) should be declared external:
- SquidBurn.setMaxPercent(uint256,uint256) (#290-295)
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 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 8% buy tax and 8% 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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 SQUID