SpongeBobNeenah Token Logo

Neenah [SpongeBobNeenah] Token

About Neenah

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 4 January 2022

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


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

Reentrancy in Spongebob._transfer(address,address,uint256) (#631-669):
External calls:
- swapTokens(contractTokenBalance) (#649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#698-704)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
External calls sending eth:
- swapTokens(contractTokenBalance) (#649)
- recipient.transfer(amount) (#942)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _liquidityFee = _previousLiquidityFee (#874)
- _liquidityFee = 0 (#869)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#845)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#770)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#781)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#791)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#762)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rTotal = _rTotal.sub(rFee) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#847)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#780)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#790)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#771)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#792)
- buyBackTokens(balance.div(100)) (#657)
- inSwapAndLiquify = true (#485)
- inSwapAndLiquify = false (#487)
Apply the check-effects-interactions pattern.

Additional information: link

Spongebob.swapTokens(uint256) (#671-680) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#678)
Consider ordering multiplication before division.

Additional information: link

Spongebob.addLiquidity(uint256,uint256) (#726-739) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#731-738)
Ensure that all the return values of the function calls are used.

Additional information: link

Spongebob.allowance(address,address).owner (#532) shadows:
- Ownable.owner() (#166-168) (function)
Spongebob._approve(address,address,uint256).owner (#623) shadows:
- Ownable.owner() (#166-168) (function)
Rename the local variables that shadow another component.

Additional information: link

Spongebob.setTaxFeePercent(uint256) (#889-891) should emit an event for:
- _taxFee = taxFee (#890)
Spongebob.setLiquidityFeePercent(uint256) (#893-895) should emit an event for:
- _liquidityFee = liquidityFee (#894)
Spongebob.setMaxTxAmount(uint256) (#897-899) should emit an event for:
- _maxTxAmount = maxTxAmount (#898)
Spongebob.setMarketingDivisor(uint256) (#901-903) should emit an event for:
- marketingDivisor = divisor (#902)
Spongebob.setNumTokensSellToAddToLiquidity(uint256) (#905-907) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#906)
Spongebob.setBuybackUpperLimit(uint256) (#909-911) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#910)
Emit an event for critical parameter changes.

Additional information: link

Spongebob.setMarketingAddress(address)._marketingAddress (#913) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#914)
Check that the address is not zero.

Additional information: link

Reentrancy in Spongebob._transfer(address,address,uint256) (#631-669):
External calls:
- swapTokens(contractTokenBalance) (#649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#698-704)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
External calls sending eth:
- swapTokens(contractTokenBalance) (#649)
- recipient.transfer(amount) (#942)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousLiquidityFee = _liquidityFee (#866)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousTaxFee = _taxFee (#865)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tFeeTotal = _tFeeTotal.add(tFee) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _taxFee = _previousTaxFee (#873)
- _taxFee = 0 (#868)
Reentrancy in Spongebob.constructor() (#490-504):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#494-495)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#500)
- _isExcludedFromFee[address(this)] = true (#501)
- uniswapV2Router = _uniswapV2Router (#497)
Reentrancy in Spongebob.transferFrom(address,address,uint256) (#541-545):
External calls:
- _transfer(sender,recipient,amount) (#542)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#698-704)
External calls sending eth:
- _transfer(sender,recipient,amount) (#542)
- recipient.transfer(amount) (#942)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#543)
- _allowances[owner][spender] = amount (#627)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Spongebob._transfer(address,address,uint256) (#631-669):
External calls:
- swapTokens(contractTokenBalance) (#649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#698-704)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
External calls sending eth:
- swapTokens(contractTokenBalance) (#649)
- recipient.transfer(amount) (#942)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#723)
- buyBackTokens(balance.div(100)) (#657)
- Transfer(sender,recipient,tTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#668)
Reentrancy in Spongebob.constructor() (#490-504):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#494-495)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#503)
Reentrancy in Spongebob.swapETHForTokens(uint256) (#709-724):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#723)
Reentrancy in Spongebob.swapTokensForEth(uint256) (#689-707):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#698-704)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#706)
Reentrancy in Spongebob.transferFrom(address,address,uint256) (#541-545):
External calls:
- _transfer(sender,recipient,amount) (#542)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#698-704)
External calls sending eth:
- _transfer(sender,recipient,amount) (#542)
- recipient.transfer(amount) (#942)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#628)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#543)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#201-206) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#203)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#96-105) uses assembly
- INLINE ASM (#103)
Address._functionCallWithValue(address,bytes,uint256,string) (#133-150) uses assembly
- INLINE ASM (#142-145)
Do not use evm assembly.

Additional information: link

Spongebob.includeInReward(address) (#610-621) has costly operations inside a loop:
- _excluded.pop() (#617)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#133-150) is never used and should be removed
Address.functionCall(address,bytes) (#116-118) is never used and should be removed
Address.functionCall(address,bytes,string) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#124-126) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#128-131) is never used and should be removed
Address.isContract(address) (#96-105) is never used and should be removed
Address.sendValue(address,uint256) (#107-113) is never used and should be removed
Context._msgData() (#19-22) 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) (#88-91) is never used and should be removed
Spongebob.addLiquidity(uint256,uint256) (#726-739) is never used and should be removed
Remove unused functions.

Additional information: link

Spongebob._rTotal (#437) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Spongebob._previousTaxFee (#446) is set pre-construction with a non-constant function or state variable:
- _taxFee
Spongebob._previousLiquidityFee (#449) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

Low level call in Address.sendValue(address,uint256) (#107-113):
- (success) = recipient.call{value: amount}() (#111)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#133-150):
- (success,returndata) = target.call{value: weiValue}(data) (#136)
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() (#245) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#246) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#262) is not in mixedCase
Function IUniswapV2Router01.WETH() (#283) is not in mixedCase
Parameter Spongebob.calculateTaxFee(uint256)._amount (#850) is not in mixedCase
Parameter Spongebob.calculateLiquidityFee(uint256)._amount (#856) is not in mixedCase
Parameter Spongebob.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#905) is not in mixedCase
Parameter Spongebob.setMarketingAddress(address)._marketingAddress (#913) is not in mixedCase
Parameter Spongebob.setSwapAndLiquifyEnabled(bool)._enabled (#917) is not in mixedCase
Parameter Spongebob.setBuyBackEnabled(bool)._enabled (#922) is not in mixedCase
Variable Spongebob._taxFee (#445) is not in mixedCase
Variable Spongebob._liquidityFee (#448) is not in mixedCase
Variable Spongebob._maxTxAmount (#453) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in Spongebob._transfer(address,address,uint256) (#631-669):
External calls:
- swapTokens(contractTokenBalance) (#649)
- recipient.transfer(amount) (#942)
External calls sending eth:
- swapTokens(contractTokenBalance) (#649)
- recipient.transfer(amount) (#942)
- buyBackTokens(balance.div(100)) (#657)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _liquidityFee = _previousLiquidityFee (#874)
- _liquidityFee = 0 (#869)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousLiquidityFee = _liquidityFee (#866)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousTaxFee = _taxFee (#865)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#845)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#770)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#781)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#791)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#762)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rTotal = _rTotal.sub(rFee) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tFeeTotal = _tFeeTotal.add(tFee) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#847)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#780)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#790)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#771)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _taxFee = _previousTaxFee (#873)
- _taxFee = 0 (#868)
- buyBackTokens(balance.div(100)) (#657)
- inSwapAndLiquify = true (#485)
- inSwapAndLiquify = false (#487)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#723)
- buyBackTokens(balance.div(100)) (#657)
- Transfer(sender,recipient,tTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#668)
Reentrancy in Spongebob.transferFrom(address,address,uint256) (#541-545):
External calls:
- _transfer(sender,recipient,amount) (#542)
- recipient.transfer(amount) (#942)
External calls sending eth:
- _transfer(sender,recipient,amount) (#542)
- recipient.transfer(amount) (#942)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#716-721)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#543)
- _allowances[owner][spender] = amount (#627)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#628)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#543)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#288) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#289)
Variable Spongebob.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#821) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob._getValues(uint256).rTransferAmount (#806) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob._transferBothExcluded(address,address,uint256).rTransferAmount (#789) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#821) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob._getValues(uint256).rTransferAmount (#806) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob._transferFromExcluded(address,address,uint256).rTransferAmount (#779) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._transferBothExcluded(address,address,uint256).rTransferAmount (#789) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#821) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._getValues(uint256).rTransferAmount (#806) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._transferBothExcluded(address,address,uint256).rTransferAmount (#789) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#821) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#821) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob._transferBothExcluded(address,address,uint256).rTransferAmount (#789) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob._getValues(uint256).rTransferAmount (#806) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob._getValues(uint256).rTransferAmount (#806) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._transferBothExcluded(address,address,uint256).rTransferAmount (#789) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to Spongebob._transferToExcluded(address,address,uint256).tTransferAmount (#769)
Variable Spongebob._transferFromExcluded(address,address,uint256).rTransferAmount (#779) is too similar to Spongebob._transferFromExcluded(address,address,uint256).tTransferAmount (#779)
Variable Spongebob.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Variable Spongebob._transferFromExcluded(address,address,uint256).rTransferAmount (#779) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob._transferFromExcluded(address,address,uint256).rTransferAmount (#779) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Variable Spongebob._transferFromExcluded(address,address,uint256).rTransferAmount (#779) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to Spongebob._getTValues(uint256).tTransferAmount (#813)
Variable Spongebob._transferBothExcluded(address,address,uint256).rTransferAmount (#789) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Variable Spongebob._getValues(uint256).rTransferAmount (#806) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Variable Spongebob._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Variable Spongebob._transferToExcluded(address,address,uint256).rTransferAmount (#769) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob._transferFromExcluded(address,address,uint256).rTransferAmount (#779) is too similar to Spongebob._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable Spongebob._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Variable Spongebob._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to Spongebob._transferBothExcluded(address,address,uint256).tTransferAmount (#789)
Variable Spongebob._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#821) is too similar to Spongebob._getValues(uint256).tTransferAmount (#805)
Prevent variables from having similar names.

Additional information: link

Spongebob.prepareForPreSale() (#927-932) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#931)
Spongebob.afterPreSale() (#934-939) uses literals with too many digits:
- _maxTxAmount = 200000000 * 10 ** 6 * 10 ** 9 (#938)
Spongebob.slitherConstructorVariables() (#420-948) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#425)
Spongebob.slitherConstructorVariables() (#420-948) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 6 * 10 ** 9 (#436)
Spongebob.slitherConstructorVariables() (#420-948) uses literals with too many digits:
- _maxTxAmount = 200000000 * 10 ** 6 * 10 ** 9 (#453)
Spongebob.slitherConstructorVariables() (#420-948) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000 * 10 ** 6 * 10 ** 9 (#454)
Spongebob.slitherConstructorVariables() (#420-948) uses literals with too many digits:
- buyBackUpperLimit = 10000000 * 10 ** 18 (#455)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Spongebob._decimals (#442) should be constant
Spongebob._name (#440) should be constant
Spongebob._symbol (#441) should be constant
Spongebob._tTotal (#436) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#175-178)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#180-184)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#186-188)
getTime() should be declared external:
- Ownable.getTime() (#190-192)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#194-199)
unlock() should be declared external:
- Ownable.unlock() (#201-206)
name() should be declared external:
- Spongebob.name() (#506-508)
symbol() should be declared external:
- Spongebob.symbol() (#510-512)
decimals() should be declared external:
- Spongebob.decimals() (#514-516)
totalSupply() should be declared external:
- Spongebob.totalSupply() (#518-520)
transfer(address,uint256) should be declared external:
- Spongebob.transfer(address,uint256) (#527-530)
allowance(address,address) should be declared external:
- Spongebob.allowance(address,address) (#532-534)
approve(address,uint256) should be declared external:
- Spongebob.approve(address,uint256) (#536-539)
transferFrom(address,address,uint256) should be declared external:
- Spongebob.transferFrom(address,address,uint256) (#541-545)
increaseAllowance(address,uint256) should be declared external:
- Spongebob.increaseAllowance(address,uint256) (#547-550)
decreaseAllowance(address,uint256) should be declared external:
- Spongebob.decreaseAllowance(address,uint256) (#552-555)
isExcludedFromReward(address) should be declared external:
- Spongebob.isExcludedFromReward(address) (#557-559)
totalFees() should be declared external:
- Spongebob.totalFees() (#561-563)
minimumTokensBeforeSwapAmount() should be declared external:
- Spongebob.minimumTokensBeforeSwapAmount() (#565-567)
buyBackUpperLimitAmount() should be declared external:
- Spongebob.buyBackUpperLimitAmount() (#569-571)
deliver(uint256) should be declared external:
- Spongebob.deliver(uint256) (#573-580)
reflectionFromToken(uint256,bool) should be declared external:
- Spongebob.reflectionFromToken(uint256,bool) (#583-592)
excludeFromReward(address) should be declared external:
- Spongebob.excludeFromReward(address) (#600-608)
isExcludedFromFee(address) should be declared external:
- Spongebob.isExcludedFromFee(address) (#877-879)
excludeFromFee(address) should be declared external:
- Spongebob.excludeFromFee(address) (#881-883)
includeInFee(address) should be declared external:
- Spongebob.includeInFee(address) (#885-887)
setBuyBackEnabled(bool) should be declared external:
- Spongebob.setBuyBackEnabled(bool) (#922-925)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


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.


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 Neenah