SneakersVerse is a lifestyle app that allows you to stay in shape and earn at the same time. Walk or jog in exclusive NFT sneakers inspired by your favorite bloggers & Influencers.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in SneakersVerse._transfer(address,address,uint256) (#327-384):
External calls:
- swapTokensForEth(contractTokenBalance) (#354)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#391-397)
External calls sending eth:
- sendETHToFee(address(this).balance) (#357)
- _marketingAddress.transfer(amount) (#401)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#463)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#453)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#454)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _rTotal = _rTotal.sub(rFee) (#467)
Apply the check-effects-interactions pattern.
Additional information: link
SneakersVerse.withdrawToken(address,uint256) (#414-417) ignores return value by tokenContract.transfer(msg.sender,_amount) (#416)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
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.
SneakersVerse.addWhiteList(address[]).i (#424) 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
SneakersVerse.allowance(address,address).owner (#253) shadows:
- Ownable.owner() (#56-58) (function)
SneakersVerse._approve(address,address,uint256).owner (#317) shadows:
- Ownable.owner() (#56-58) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in SneakersVerse._transfer(address,address,uint256) (#327-384):
External calls:
- swapTokensForEth(contractTokenBalance) (#354)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#391-397)
External calls sending eth:
- sendETHToFee(address(this).balance) (#357)
- _marketingAddress.transfer(amount) (#401)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _previousredisFee = _redisFee (#304)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _previoustaxFee = _taxFee (#305)
- _redisFee = _redisFeeOnBuy (#371)
- _redisFee = _redisFeeOnSell (#377)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _redisFee = _previousredisFee (#312)
- _redisFee = 0 (#307)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _tFeeTotal = _tFeeTotal.add(tFee) (#468)
- _taxFee = _taxFeeOnBuy (#372)
- _taxFee = _taxFeeOnSell (#378)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _taxFee = _previoustaxFee (#313)
- _taxFee = 0 (#308)
Reentrancy in SneakersVerse.constructor() (#208-222):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#214-215)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#217)
- _isExcludedFromFee[address(this)] = true (#218)
- _isExcludedFromFee[_marketingAddress] = true (#219)
Reentrancy in SneakersVerse.transferFrom(address,address,uint256) (#271-286):
External calls:
- _transfer(sender,recipient,amount) (#276)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#391-397)
External calls sending eth:
- _transfer(sender,recipient,amount) (#276)
- _marketingAddress.transfer(amount) (#401)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#277-284)
- _allowances[owner][spender] = amount (#323)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SneakersVerse._transfer(address,address,uint256) (#327-384):
External calls:
- swapTokensForEth(contractTokenBalance) (#354)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#391-397)
External calls sending eth:
- sendETHToFee(address(this).balance) (#357)
- _marketingAddress.transfer(amount) (#401)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#457)
- _tokenTransfer(from,to,amount,takeFee) (#383)
Reentrancy in SneakersVerse.constructor() (#208-222):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#214-215)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#221)
Reentrancy in SneakersVerse.transferFrom(address,address,uint256) (#271-286):
External calls:
- _transfer(sender,recipient,amount) (#276)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#391-397)
External calls sending eth:
- _transfer(sender,recipient,amount) (#276)
- _marketingAddress.transfer(amount) (#401)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#324)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#277-284)
Apply the check-effects-interactions pattern.
Additional information: link
SneakersVerse._redisFee (#182) is set pre-construction with a non-constant function or state variable:
- _redisFeeOnSell
SneakersVerse._taxFee (#183) is set pre-construction with a non-constant function or state variable:
- _taxFeeOnSell
SneakersVerse._previousredisFee (#185) is set pre-construction with a non-constant function or state variable:
- _redisFee
SneakersVerse._previoustaxFee (#186) is set pre-construction with a non-constant function or state variable:
- _taxFee
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.9 (#9) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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() (#140) is not in mixedCase
Parameter SneakersVerse.withdrawToken(address,uint256)._tokenContract (#414) is not in mixedCase
Parameter SneakersVerse.withdrawToken(address,uint256)._amount (#414) is not in mixedCase
Constant SneakersVerse._name (#163) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SneakersVerse._symbol (#164) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SneakersVerse._decimals (#165) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SneakersVerse._whiteList (#171) is not in mixedCase
Constant SneakersVerse._tTotal (#173) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SneakersVerse._marketingAddress (#188) is not in mixedCase
Variable SneakersVerse._maxTxAmount (#197) is not in mixedCase
Variable SneakersVerse._maxWalletSize (#198) is not in mixedCase
Variable SneakersVerse._swapTokensAtAmount (#199) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in SneakersVerse._transfer(address,address,uint256) (#327-384):
External calls:
- sendETHToFee(address(this).balance) (#357)
- _marketingAddress.transfer(amount) (#401)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _previousredisFee = _redisFee (#304)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _previoustaxFee = _taxFee (#305)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#463)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#453)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#454)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _rTotal = _rTotal.sub(rFee) (#467)
- _redisFee = _redisFeeOnBuy (#371)
- _redisFee = _redisFeeOnSell (#377)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _redisFee = _previousredisFee (#312)
- _redisFee = 0 (#307)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _tFeeTotal = _tFeeTotal.add(tFee) (#468)
- _taxFee = _taxFeeOnBuy (#372)
- _taxFee = _taxFeeOnSell (#378)
- _tokenTransfer(from,to,amount,takeFee) (#383)
- _taxFee = _previoustaxFee (#313)
- _taxFee = 0 (#308)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#457)
- _tokenTransfer(from,to,amount,takeFee) (#383)
Reentrancy in SneakersVerse.transferFrom(address,address,uint256) (#271-286):
External calls:
- _transfer(sender,recipient,amount) (#276)
- _marketingAddress.transfer(amount) (#401)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#277-284)
- _allowances[owner][spender] = amount (#323)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#324)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#277-284)
Apply the check-effects-interactions pattern.
Additional information: link
Variable SneakersVerse._transferStandard(address,address,uint256).rTransferAmount (#447) is too similar to SneakersVerse._getTValues(uint256,uint256,uint256).tTransferAmount (#508)
Variable SneakersVerse._transferStandard(address,address,uint256).rTransferAmount (#447) is too similar to SneakersVerse._transferStandard(address,address,uint256).tTransferAmount (#449)
Variable SneakersVerse._getValues(uint256).rTransferAmount (#488) is too similar to SneakersVerse._getTValues(uint256,uint256,uint256).tTransferAmount (#508)
Variable SneakersVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#529) is too similar to SneakersVerse._getTValues(uint256,uint256,uint256).tTransferAmount (#508)
Variable SneakersVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#529) is too similar to SneakersVerse._getValues(uint256).tTransferAmount (#485)
Variable SneakersVerse._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#529) is too similar to SneakersVerse._transferStandard(address,address,uint256).tTransferAmount (#449)
Variable SneakersVerse._getValues(uint256).rTransferAmount (#488) is too similar to SneakersVerse._getValues(uint256).tTransferAmount (#485)
Variable SneakersVerse._getValues(uint256).rTransferAmount (#488) is too similar to SneakersVerse._transferStandard(address,address,uint256).tTransferAmount (#449)
Variable SneakersVerse._transferStandard(address,address,uint256).rTransferAmount (#447) is too similar to SneakersVerse._getValues(uint256).tTransferAmount (#485)
Prevent variables from having similar names.
Additional information: link
SneakersVerse.slitherConstructorVariables() (#159-552) uses literals with too many digits:
- _maxTxAmount = 1000000000000000000 * 10 ** 9 (#197)
SneakersVerse.slitherConstructorVariables() (#159-552) uses literals with too many digits:
- _maxWalletSize = 1000000000000000000 * 10 ** 9 (#198)
SneakersVerse.slitherConstructorVariables() (#159-552) uses literals with too many digits:
- _swapTokensAtAmount = 1000000000000000000 * 10 ** 9 (#199)
SneakersVerse.slitherConstructorConstantVariables() (#159-552) uses literals with too many digits:
- _tTotal = 1000000000000000000 * 10 ** 9 (#173)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#44) is never used in SneakersVerse (#159-552)
SneakersVerse._tOwned (#168) is never used in SneakersVerse (#159-552)
SneakersVerse.tradingOpen (#193) is never used in SneakersVerse (#159-552)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (#44) should be constant
SneakersVerse._marketingAddress (#188) should be constant
SneakersVerse._maxTxAmount (#197) should be constant
SneakersVerse._maxWalletSize (#198) should be constant
SneakersVerse._redisFeeOnBuy (#176) should be constant
SneakersVerse._redisFeeOnSell (#178) should be constant
SneakersVerse._swapTokensAtAmount (#199) should be constant
SneakersVerse._taxFeeOnBuy (#177) should be constant
SneakersVerse._taxFeeOnSell (#179) should be constant
SneakersVerse.swapEnabled (#195) should be constant
SneakersVerse.tradingOpen (#193) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#65-68)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#70-74)
name() should be declared external:
- SneakersVerse.name() (#224-226)
symbol() should be declared external:
- SneakersVerse.symbol() (#228-230)
decimals() should be declared external:
- SneakersVerse.decimals() (#232-234)
totalSupply() should be declared external:
- SneakersVerse.totalSupply() (#236-238)
transfer(address,uint256) should be declared external:
- SneakersVerse.transfer(address,uint256) (#244-251)
allowance(address,address) should be declared external:
- SneakersVerse.allowance(address,address) (#253-260)
approve(address,uint256) should be declared external:
- SneakersVerse.approve(address,uint256) (#262-269)
transferFrom(address,address,uint256) should be declared external:
- SneakersVerse.transferFrom(address,address,uint256) (#271-286)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SneakersVerse.excludeMultipleAccountsFromFees(address[],bool) (#545-549)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 2% buy tax and 2% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to find audit link on the website
Unable to find whitepaper link on the website
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 scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Twitter account has few posts