SQUIDVERSE3D Token Logo

SVG [SQUIDVERSE3D] Token

About SVG

Listings

Token 2 years
CoinMarketCap 2 years
white paper

SQUIDVERSE 3D is a revolutionary and innovative decentralised finance gaming project based on blockchain technology.
The project will form its own self- sufficient ecosystem that will intuitively link multiple utilities together in one ‘metaverse’ known as the Squidverse.
These include (but are not limited to):
• SQUID GAMES:
6 high quality 3D Play-To-Earn (P2E) mobile and PC games that
represent the core contest stages featured in the web television show it is based on.
• SQUID BRIDGE:
A bridging system that will allow the project to link the Binance Smart Chain with the Ethereum Network later for governance tokens in the below Decentralized Autonomous Organizations (DAO’s).
• SQUID STAKING:
A system that will allow investors to stake their SQUIDVERSE 3D NFTS to earn passive rewards of the project’s native tokens.
• SQUIDPAD:
A system that will allow indie cryptocurrency game developers to incubate and launch their own games. Players would be able to seamlessly swap between games, continuing to earn as the connected metaverse grows.
Every single part of the project has been meticulously thought out,

The team that forms SQUIDVERSE 3D is numerous, comprehensive and growing every day as the project continues to gain more attention. However, the core team that form the heartbeat of the project is formed of five passionate individuals. They all benefit from a diverse skillset, which combined together are more than capable of bringing the vision of SQUIDVERSE 3D into reality.
The team privately completed a KYC
The contract is fully audited by Interfi and the team is looking for another trust worthy audit company.
The Dev is doxxed and connected to other big and successful projects. The company behind the project is based and legalised in Dubai.
Numbers
The following taxations on the tokens are subject to change – and have this ability built into the contract, so that a level of flexibility can be applied at all times throughout the life of the project.

Social

Laser Scorebeta Last Audit: 4 February 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...)

SQUIDVERSE3D.swapETHForTokens(uint256) (#821-834) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
SQUIDVERSE3D.addLiquidity(uint256,uint256) (#862-875) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SQUIDVERSE3D._transfer(address,address,uint256) (#729-787):
External calls:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
External calls sending eth:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- address(marketingAddress).transfer(marketingAmt) (#858)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- _rOwned[address(this)] += rMarketing (#622)
- _rOwned[rewardsPoolAddress] += rRewardsPool (#653)
- _rOwned[address(this)] += rLiquidity (#643)
- _rOwned[address(this)] += rBuyback (#633)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#802)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#803)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- _rTotal -= rRfi (#613)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- _tOwned[address(this)] += tBuyback (#631)
- _tOwned[address(this)] += tMarketing (#620)
- _tOwned[rewardsPoolAddress] += tRewardsPool (#651)
- _tOwned[sender] = _tOwned[sender] - tAmount (#796)
- _tOwned[address(this)] += tLiquidity (#641)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#799)
- swapAndLiquify(swapTokensAtAmount) (#773)
- swapping = true (#408)
- swapping = false (#410)
Apply the check-effects-interactions pattern.

Additional information: link

SQUIDVERSE3D.rescueBEP20Tokens(address) (#945-947) ignores return value by IERC20(tokenAddress).transfer(msg.sender,IERC20(tokenAddress).balanceOf(address(this))) (#946)
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.

SQUIDVERSE3D.swapAndLiquify(uint256) (#836-860) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - feeRates.liquidity) (#847)
-bnbToAddLiquidityWith = unitBalance * feeRates.liquidity (#848)
SQUIDVERSE3D.swapAndLiquify(uint256) (#836-860) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - feeRates.liquidity) (#847)
-marketingAmt = unitBalance * 2 * feeRates.marketing (#856)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in SQUIDVERSE3D.setRouterAddress(address) (#950-961):
External calls:
- pair = IFactory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#955)
State variables written after the call(s):
- router = _newRouter (#960)
Apply the check-effects-interactions pattern.

Additional information: link

SQUIDVERSE3D._transfer(address,address,uint256).isSale (#775) is a local variable never initialized
SQUIDVERSE3D._transfer(address,address,uint256).isTransfer (#778) 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

SQUIDVERSE3D.addLiquidity(uint256,uint256) (#862-875) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
Ensure that all the return values of the function calls are used.

Additional information: link

SQUIDVERSE3D.allowance(address,address).owner (#460) shadows:
- Ownable.owner() (#250-252) (function)
SQUIDVERSE3D._approve(address,address,uint256).owner (#722) shadows:
- Ownable.owner() (#250-252) (function)
Rename the local variables that shadow another component.

Additional information: link

SQUIDVERSE3D.cooldownEnabled(bool,uint8) (#491-494) should emit an event for:
- cooldownTimerInterval = _interval (#493)
SQUIDVERSE3D.setMaxWalletPercent(uint256) (#588-592) should emit an event for:
- _maxWalletSize = _tTotal.mul(maxWallPercent).div(10 ** 2) (#589-591)
SQUIDVERSE3D.setMaxBuyAndSellAmount(uint256,uint256) (#909-912) should emit an event for:
- maxBuyAmount = _maxBuyamount * 10 ** 9 (#910)
- maxSellAmount = _maxSellAmount * 10 ** 9 (#911)
SQUIDVERSE3D.updateSwapTokensAtAmount(uint256) (#914-916) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#915)
SQUIDVERSE3D.setBuybackUpperLimit(uint256) (#931-933) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 15 (#932)
Emit an event for critical parameter changes.

Additional information: link

SQUIDVERSE3D.constructor(address)._pair (#420-421) lacks a zero-check on :
- pair = _pair (#424)
Check that the address is not zero.

Additional information: link

Reentrancy in SQUIDVERSE3D._transfer(address,address,uint256) (#729-787):
External calls:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
External calls sending eth:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- address(marketingAddress).transfer(marketingAmt) (#858)
State variables written after the call(s):
- swapAndLiquify(swapTokensAtAmount) (#773)
- _allowances[owner][spender] = amount (#725)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- totFeesPaid.buyBack += tBuyback (#627)
- totFeesPaid.rewardspool += tRewardsPool (#647)
- totFeesPaid.marketing += tMarketing (#618)
- totFeesPaid.liquidity += tLiquidity (#637)
- totFeesPaid.rfi += tRfi (#614)
Reentrancy in SQUIDVERSE3D.constructor(address) (#418-432):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#420-421)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#427)
- _isExcludedFromFee[marketingAddress] = true (#428)
- _isExcludedFromFee[rewardsPoolAddress] = true (#429)
- _rOwned[owner()] = _rTotal (#426)
- pair = _pair (#424)
- router = _router (#423)
Reentrancy in SQUIDVERSE3D.swapAndLiquify(uint256) (#836-860):
External calls:
- swapTokensForBNB(toSwap) (#844)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#852)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#852)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#852)
- _allowances[owner][spender] = amount (#725)
Reentrancy in SQUIDVERSE3D.transferFrom(address,address,uint256) (#469-473):
External calls:
- _transfer(sender,recipient,amount) (#470)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
External calls sending eth:
- _transfer(sender,recipient,amount) (#470)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- address(marketingAddress).transfer(marketingAmt) (#858)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#471)
- _allowances[owner][spender] = amount (#725)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SQUIDVERSE3D._transfer(address,address,uint256) (#729-787):
External calls:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
External calls sending eth:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- address(marketingAddress).transfer(marketingAmt) (#858)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#726)
- swapAndLiquify(swapTokensAtAmount) (#773)
- Transfer(sender,recipient,s.tTransferAmount) (#809)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tBuyback) (#810)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- Transfer(sender,rewardsPoolAddress,s.tRewardsPool) (#811)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
Reentrancy in SQUIDVERSE3D.constructor(address) (#418-432):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#420-421)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#431)
Reentrancy in SQUIDVERSE3D.swapAndLiquify(uint256) (#836-860):
External calls:
- swapTokensForBNB(toSwap) (#844)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#852)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#852)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#726)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#852)
Reentrancy in SQUIDVERSE3D.transferFrom(address,address,uint256) (#469-473):
External calls:
- _transfer(sender,recipient,amount) (#470)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#886-892)
External calls sending eth:
- _transfer(sender,recipient,amount) (#470)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- address(marketingAddress).transfer(marketingAmt) (#858)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#726)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#471)
Apply the check-effects-interactions pattern.

Additional information: link

SQUIDVERSE3D._transfer(address,address,uint256) (#729-787) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[to] < block.timestamp,Please wait for cooldown between buys) (#749)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#138-145) uses assembly
- INLINE ASM (#141-143)
Address._verifyCallResult(bool,bytes,string) (#217-235) uses assembly
- INLINE ASM (#227-230)
Do not use evm assembly.

Additional information: link

SQUIDVERSE3D.includeInReward(address) (#561-572) has costly operations inside a loop:
- _excluded.pop() (#568)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#217-235) is never used and should be removed
Address.functionCall(address,bytes) (#154-156) is never used and should be removed
Address.functionCall(address,bytes,string) (#158-164) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#166-172) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#174-185) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#202-204) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#206-215) is never used and should be removed
Address.functionStaticCall(address,bytes) (#187-189) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#191-200) is never used and should be removed
Address.isContract(address) (#138-145) is never used and should be removed
Address.sendValue(address,uint256) (#147-152) is never used and should be removed
Context._msgData() (#129-132) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#99-108) is never used and should be removed
SafeMath.mod(uint256,uint256) (#84-86) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#110-119) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#30-36) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#54-59) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#61-66) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#45-52) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#38-43) is never used and should be removed
Remove unused functions.

Additional information: link

SQUIDVERSE3D._rTotal (#337) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SQUIDVERSE3D.maxBuyAmount (#339) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(1).div(1000)
SQUIDVERSE3D.maxSellAmount (#340) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(1).div(1000)
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 (#2) allows old versions
solc-0.8.0 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.sendValue(address,uint256) (#147-152):
- (success) = recipient.call{value: amount}() (#150)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#174-185):
- (success,returndata) = target.call{value: value}(data) (#183)
Low level call in Address.functionStaticCall(address,bytes,string) (#191-200):
- (success,returndata) = target.staticcall(data) (#198)
Low level call in Address.functionDelegateCall(address,bytes,string) (#206-215):
- (success,returndata) = target.delegatecall(data) (#213)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IRouter.WETH() (#282) is not in mixedCase
Struct SQUIDVERSE3D.feeRatesStruct (#354-360) is not in CapWords
Struct SQUIDVERSE3D.valuesFromGetValues (#388-402) is not in CapWords
Parameter SQUIDVERSE3D.cooldownEnabled(bool,uint8)._status (#491) is not in mixedCase
Parameter SQUIDVERSE3D.cooldownEnabled(bool,uint8)._interval (#491) is not in mixedCase
Parameter SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._rfi (#594) is not in mixedCase
Parameter SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._marketing (#594) is not in mixedCase
Parameter SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#594) is not in mixedCase
Parameter SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._liquidity (#594) is not in mixedCase
Parameter SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._buyback (#594) is not in mixedCase
Parameter SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._rfi (#603) is not in mixedCase
Parameter SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._marketing (#603) is not in mixedCase
Parameter SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#603) is not in mixedCase
Parameter SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._liquidity (#603) is not in mixedCase
Parameter SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._buyback (#603) is not in mixedCase
Parameter SQUIDVERSE3D.setMaxBuyAndSellAmount(uint256,uint256)._maxBuyamount (#909) is not in mixedCase
Parameter SQUIDVERSE3D.setMaxBuyAndSellAmount(uint256,uint256)._maxSellAmount (#909) is not in mixedCase
Parameter SQUIDVERSE3D.updateSwapEnabled(bool)._enabled (#918) is not in mixedCase
Parameter SQUIDVERSE3D.updateBuybackEnabled(bool)._enabled (#922) is not in mixedCase
Parameter SQUIDVERSE3D.setAntibot(address,bool)._bot (#926) is not in mixedCase
Constant SQUIDVERSE3D._decimals (#333) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SQUIDVERSE3D._maxWalletSize (#342) is not in mixedCase
Constant SQUIDVERSE3D.deadAddress (#348) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SQUIDVERSE3D._name (#350) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SQUIDVERSE3D._symbol (#351) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#130)" inContext (#124-133)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SQUIDVERSE3D._transfer(address,address,uint256) (#729-787):
External calls:
- swapAndLiquify(swapTokensAtAmount) (#773)
- address(marketingAddress).transfer(marketingAmt) (#858)
External calls sending eth:
- buyBackTokens(balance.div(100)) (#770)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- swapAndLiquify(swapTokensAtAmount) (#773)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- address(marketingAddress).transfer(marketingAmt) (#858)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- _rOwned[address(this)] += rMarketing (#622)
- _rOwned[rewardsPoolAddress] += rRewardsPool (#653)
- _rOwned[address(this)] += rLiquidity (#643)
- _rOwned[address(this)] += rBuyback (#633)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#802)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#803)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- _rTotal -= rRfi (#613)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- _tOwned[address(this)] += tBuyback (#631)
- _tOwned[address(this)] += tMarketing (#620)
- _tOwned[rewardsPoolAddress] += tRewardsPool (#651)
- _tOwned[sender] = _tOwned[sender] - tAmount (#796)
- _tOwned[address(this)] += tLiquidity (#641)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#799)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- totFeesPaid.buyBack += tBuyback (#627)
- totFeesPaid.rewardspool += tRewardsPool (#647)
- totFeesPaid.marketing += tMarketing (#618)
- totFeesPaid.liquidity += tLiquidity (#637)
- totFeesPaid.rfi += tRfi (#614)
Event emitted after the call(s):
- Transfer(sender,recipient,s.tTransferAmount) (#809)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tBuyback) (#810)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
- Transfer(sender,rewardsPoolAddress,s.tRewardsPool) (#811)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to] || isTransfer),isSale) (#786)
Reentrancy in SQUIDVERSE3D.transferFrom(address,address,uint256) (#469-473):
External calls:
- _transfer(sender,recipient,amount) (#470)
- address(marketingAddress).transfer(marketingAmt) (#858)
External calls sending eth:
- _transfer(sender,recipient,amount) (#470)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#867-874)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#828-833)
- address(marketingAddress).transfer(marketingAmt) (#858)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#471)
- _allowances[owner][spender] = amount (#725)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#726)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#471)
Apply the check-effects-interactions pattern.

Additional information: link

Variable SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#594) is too similar to SQUIDVERSE3D._getRValues(SQUIDVERSE3D.valuesFromGetValues,uint256,bool,uint256).rRewardsPool (#689)
Variable SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#603) is too similar to SQUIDVERSE3D._getRValues(SQUIDVERSE3D.valuesFromGetValues,uint256,bool,uint256).rRewardsPool (#689)
Variable SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#594) is too similar to SQUIDVERSE3D._takeRewardsPool(uint256,uint256).rRewardsPool (#646)
Variable SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#603) is too similar to SQUIDVERSE3D._takeRewardsPool(uint256,uint256).rRewardsPool (#646)
Variable SQUIDVERSE3D._takeRewardsPool(uint256,uint256).rRewardsPool (#646) is too similar to SQUIDVERSE3D._takeRewardsPool(uint256,uint256).tRewardsPool (#646)
Variable SQUIDVERSE3D.setFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#594) is too similar to SQUIDVERSE3D._takeRewardsPool(uint256,uint256).tRewardsPool (#646)
Variable SQUIDVERSE3D.setSellFeeRates(uint256,uint256,uint256,uint256,uint256)._rewardsPool (#603) is too similar to SQUIDVERSE3D._takeRewardsPool(uint256,uint256).tRewardsPool (#646)
Variable SQUIDVERSE3D._getRValues(SQUIDVERSE3D.valuesFromGetValues,uint256,bool,uint256).rRewardsPool (#689) is too similar to SQUIDVERSE3D._takeRewardsPool(uint256,uint256).tRewardsPool (#646)
Prevent variables from having similar names.

Additional information: link

SQUIDVERSE3D.adjustAmountsPostLaunch() (#536-542) uses literals with too many digits:
- _maxWalletSize = 200000 * 10 ** _decimals (#538)
SQUIDVERSE3D.adjustAmountsPostLaunch() (#536-542) uses literals with too many digits:
- maxBuyAmount = 200000 * 10 ** 9 (#539)
SQUIDVERSE3D.adjustAmountsPostLaunch() (#536-542) uses literals with too many digits:
- maxSellAmount = 100000 * 10 ** 9 (#540)
SQUIDVERSE3D.slitherConstructorVariables() (#311-966) uses literals with too many digits:
- _tTotal = 10000000 * 10 ** _decimals (#336)
SQUIDVERSE3D.slitherConstructorConstantVariables() (#311-966) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#348)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SQUIDVERSE3D._tTotal (#336) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#259-261)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#263-266)
name() should be declared external:
- SQUIDVERSE3D.name() (#435-437)
symbol() should be declared external:
- SQUIDVERSE3D.symbol() (#438-440)
decimals() should be declared external:
- SQUIDVERSE3D.decimals() (#441-443)
totalSupply() should be declared external:
- SQUIDVERSE3D.totalSupply() (#446-448)
transfer(address,uint256) should be declared external:
- SQUIDVERSE3D.transfer(address,uint256) (#455-458)
allowance(address,address) should be declared external:
- SQUIDVERSE3D.allowance(address,address) (#460-462)
approve(address,uint256) should be declared external:
- SQUIDVERSE3D.approve(address,uint256) (#464-467)
transferFrom(address,address,uint256) should be declared external:
- SQUIDVERSE3D.transferFrom(address,address,uint256) (#469-473)
increaseAllowance(address,uint256) should be declared external:
- SQUIDVERSE3D.increaseAllowance(address,uint256) (#475-478)
decreaseAllowance(address,uint256) should be declared external:
- SQUIDVERSE3D.decreaseAllowance(address,uint256) (#480-483)
isExcludedFromReward(address) should be declared external:
- SQUIDVERSE3D.isExcludedFromReward(address) (#485-487)
cooldownEnabled(bool,uint8) should be declared external:
- SQUIDVERSE3D.cooldownEnabled(bool,uint8) (#491-494)
deliver(uint256) should be declared external:
- SQUIDVERSE3D.deliver(uint256) (#497-504)
reflectionFromToken(uint256,bool) should be declared external:
- SQUIDVERSE3D.reflectionFromToken(uint256,bool) (#507-516)
excludeFromReward(address) should be declared external:
- SQUIDVERSE3D.excludeFromReward(address) (#552-559)
excludeFromFee(address) should be declared external:
- SQUIDVERSE3D.excludeFromFee(address) (#575-577)
includeInFee(address) should be declared external:
- SQUIDVERSE3D.includeInFee(address) (#579-581)
isExcludedFromFee(address) should be declared external:
- SQUIDVERSE3D.isExcludedFromFee(address) (#584-586)
isBot(address) should be declared external:
- SQUIDVERSE3D.isBot(address) (#935-937)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for SVG

News for SVG