Scuba Inu Token Logo

SCUBA [Scuba Inu] Token

About SCUBA

Listings

Token 3 years

Scuba Inu BSC! 🤿 A meme coin with meaningful impact! NFT's 🔥Staking🔥 Gaming 🔥3% rewards to holders for passive income ✅ 3% to our charitable partners! Help keep the oceans clean and marine life safe ✅ One pound of trash will be removed from our oceans for every NFT purchased 🌊 Perfect audit score ✅ Based team ✅ Big callers: Venom, Caesar and more! CMC and CG with huge post launch marketing 🔥

Social

Laser Scorebeta Last Audit: 30 June 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

Reentrancy in SCUBA._transfer(address,address,uint256) (#1034-1098):
External calls:
- swapAndLiquify(contractTokenBalance) (#1075)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1075)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- _transferStandard(from,address(this),fees) (#1093)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#956)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1184)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1185)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _rOwned[_marketingWallet] = _rOwned[_marketingWallet].add(rMarketing) (#964)
- _rOwned[_charityWallet] = _rOwned[_charityWallet].add(rCharity) (#972)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#956)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1193)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1184)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1185)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1204)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#856)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1205)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1195)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#858)
- _transferStandard(from,address(this),fees) (#1093)
- _rTotal = _rTotal.sub(rFee) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _rTotal = _rTotal.sub(rFee) (#911)
- _transferStandard(from,address(this),fees) (#1093)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _tOwned[_charityWallet] = _tOwned[_charityWallet].add(tCharity) (#974)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#958)
- _tOwned[_marketingWallet] = _tOwned[_marketingWallet].add(tMarketing) (#966)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#855)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1203)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1194)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#857)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Redundant expression "this (#243)" inContext (#237-246)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SCUBA.addLiquidity(uint256,uint256) (#1140-1152) ignores return value by pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Ensure that all the return values of the function calls are used.

Additional information: link

SCUBA.allowance(address,address).owner (#773) shadows:
- Ownable.owner() (#415-417) (function)
SCUBA._approve(address,address,uint256).owner (#1026) shadows:
- Ownable.owner() (#415-417) (function)
Rename the local variables that shadow another component.

Additional information: link

SCUBA.setTaxFeePercent(uint256) (#872-874) should emit an event for:
- _taxFee = taxFee (#873)
SCUBA.setLiquidityFeePercent(uint256) (#876-878) should emit an event for:
- _liquidityFee = liquidityFee (#877)
SCUBA.setMarketingFeePercent(uint256) (#880-882) should emit an event for:
- _marketingFee = marketingFee (#881)
SCUBA.setCharityFeePercent(uint256) (#884-886) should emit an event for:
- _charityFee = charityFee (#885)
SCUBA.setMaxTxPercent(uint256) (#896-900) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#897-899)
SCUBA.setMaxWalletAmount(uint256) (#1225-1228) should emit an event for:
- _maxWalletAmount = amount (#1227)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#407) lacks a zero-check on :
- _owner = msgSender (#408)
SCUBA.constructor(address,address).marketing (#720) lacks a zero-check on :
- _marketingWallet = marketing (#723)
SCUBA.constructor(address,address)._charity (#720) lacks a zero-check on :
- _charityWallet = _charity (#724)
SCUBA.setMarketingWallet(address).marketingWallet (#888) lacks a zero-check on :
- _marketingWallet = marketingWallet (#889)
SCUBA.setCharityWallet(address).charityWallet (#892) lacks a zero-check on :
- _charityWallet = charityWallet (#893)
SCUBA.migrateBNB(address)._recipient (#1211) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#1212)
Check that the address is not zero.

Additional information: link

Reentrancy in SCUBA._transfer(address,address,uint256) (#1034-1098):
External calls:
- swapAndLiquify(contractTokenBalance) (#1075)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1075)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _charityFee = _previousCharityFee (#1019)
- _charityFee = 0 (#1012)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _liquidityFee = _previousLiquidityFee (#1017)
- _liquidityFee = 0 (#1010)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _marketingFee = _previousMarketingFee (#1018)
- _marketingFee = 0 (#1011)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _previousCharityFee = _charityFee (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _previousLiquidityFee = _liquidityFee (#1005)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _previousMarketingFee = _marketingFee (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _previousTaxFee = _taxFee (#1004)
- _transferStandard(from,address(this),fees) (#1093)
- _tFeeTotal = _tFeeTotal.add(tFee) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _tFeeTotal = _tFeeTotal.add(tFee) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- _taxFee = _previousTaxFee (#1016)
- _taxFee = 0 (#1009)
Reentrancy in SCUBA.constructor(address,address) (#720-745):
External calls:
- pancakeSwapV2Pair = IPancakeSwapV2Factory(_pancakeSwapV2Router.factory()).createPair(address(this),_pancakeSwapV2Router.WETH()) (#728-729)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#735)
- _isExcludedFromFee[address(this)] = true (#736)
- excludeFromMaxWallet(owner(),true) (#738)
- _isExcludedFromMaxWallet[account] = value (#1222)
- excludeFromMaxWallet(address(this),true) (#739)
- _isExcludedFromMaxWallet[account] = value (#1222)
- excludeFromMaxWallet(address(0),true) (#740)
- _isExcludedFromMaxWallet[account] = value (#1222)
- _setAutomatedMarketMakerPair(pancakeSwapV2Pair,true) (#742)
- automatedMarketMakerPairs[pair] = value (#1217)
- pancakeSwapV2Router = _pancakeSwapV2Router (#732)
Reentrancy in SCUBA.swapAndLiquify(uint256) (#1100-1121):
External calls:
- swapTokensForBNB(half) (#1112)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
- addLiquidity(otherHalf,newBalance) (#1118)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1118)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1118)
- _allowances[owner][spender] = amount (#1030)
Reentrancy in SCUBA.transferFrom(address,address,uint256) (#782-786):
External calls:
- _transfer(sender,recipient,amount) (#783)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- _transfer(sender,recipient,amount) (#783)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#784)
- _allowances[owner][spender] = amount (#1030)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SCUBA._transfer(address,address,uint256) (#1034-1098):
External calls:
- swapAndLiquify(contractTokenBalance) (#1075)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1075)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1188)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- Transfer(sender,recipient,tTransferAmount) (#1188)
- _transferStandard(from,address(this),fees) (#1093)
- Transfer(sender,recipient,tTransferAmount) (#1198)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- Transfer(sender,recipient,tTransferAmount) (#1208)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
- Transfer(sender,recipient,tTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#1097)
Reentrancy in SCUBA.constructor(address,address) (#720-745):
External calls:
- pancakeSwapV2Pair = IPancakeSwapV2Factory(_pancakeSwapV2Router.factory()).createPair(address(this),_pancakeSwapV2Router.WETH()) (#728-729)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1218)
- _setAutomatedMarketMakerPair(pancakeSwapV2Pair,true) (#742)
- Transfer(address(0),_msgSender(),_tTotal) (#744)
Reentrancy in SCUBA.swapAndLiquify(uint256) (#1100-1121):
External calls:
- swapTokensForBNB(half) (#1112)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
- addLiquidity(otherHalf,newBalance) (#1118)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1118)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1031)
- addLiquidity(otherHalf,newBalance) (#1118)
- SwapAndLiquify(half,newBalance,otherHalf) (#1120)
Reentrancy in SCUBA.transferFrom(address,address,uint256) (#782-786):
External calls:
- _transfer(sender,recipient,amount) (#783)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1131-1137)
External calls sending eth:
- _transfer(sender,recipient,amount) (#783)
- pancakeSwapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1031)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#784)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#270-279) uses assembly
- INLINE ASM (#277)
Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) uses assembly
- INLINE ASM (#376-379)
Do not use evm assembly.

Additional information: link

SCUBA.includeInReward(address) (#841-852) has costly operations inside a loop:
- _excluded.pop() (#848)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) is never used and should be removed
Address.functionCall(address,bytes) (#323-325) is never used and should be removed
Address.functionCall(address,bytes,string) (#333-335) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#348-350) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#358-361) is never used and should be removed
Address.isContract(address) (#270-279) is never used and should be removed
Address.sendValue(address,uint256) (#297-303) is never used and should be removed
Context._msgData() (#242-245) is never used and should be removed
SafeMath.mod(uint256,uint256) (#215-217) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#231-234) is never used and should be removed
Remove unused functions.

Additional information: link

SCUBA._previousTaxFee (#685) is set pre-construction with a non-constant function or state variable:
- _taxFee
SCUBA._previousMarketingFee (#688) is set pre-construction with a non-constant function or state variable:
- _marketingFee
SCUBA._previousLiquidityFee (#691) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
SCUBA._previousCharityFee (#694) is set pre-construction with a non-constant function or state variable:
- _charityFee
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

solc-0.8.15 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) (#297-303):
- (success) = recipient.call{value: amount}() (#301)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#363-384):
- (success,returndata) = target.call{value: weiValue}(data) (#367)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeSwapV2Pair.DOMAIN_SEPARATOR() (#483) is not in mixedCase
Function IPancakeSwapV2Pair.PERMIT_TYPEHASH() (#484) is not in mixedCase
Function IPancakeSwapV2Pair.MINIMUM_LIQUIDITY() (#501) is not in mixedCase
Function IPancakeSwapV2Router01.WETH() (#521) is not in mixedCase
Parameter SCUBA.setSwapAndLiquifyEnabled(bool)._enabled (#902) is not in mixedCase
Parameter SCUBA.calculateTaxFee(uint256)._amount (#977) is not in mixedCase
Parameter SCUBA.calculateLiquidityFee(uint256)._amount (#983) is not in mixedCase
Parameter SCUBA.calculateMarketingFee(uint256)._amount (#989) is not in mixedCase
Parameter SCUBA.calculateCharityFee(uint256)._amount (#995) is not in mixedCase
Parameter SCUBA.addLiquidity(uint256,uint256).BNBAmount (#1140) is not in mixedCase
Parameter SCUBA.migrateBNB(address)._recipient (#1211) is not in mixedCase
Variable SCUBA._isExcludedFromMaxWallet (#666) is not in mixedCase
Variable SCUBA._marketingWallet (#671) is not in mixedCase
Variable SCUBA._charityWallet (#672) is not in mixedCase
Constant SCUBA._tTotal (#675) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SCUBA._name (#680) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SCUBA._symbol (#681) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SCUBA._decimals (#682) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SCUBA._taxFee (#684) is not in mixedCase
Variable SCUBA._marketingFee (#687) is not in mixedCase
Variable SCUBA._liquidityFee (#690) is not in mixedCase
Variable SCUBA._charityFee (#693) is not in mixedCase
Variable SCUBA._maxTxAmount (#702) is not in mixedCase
Variable SCUBA._maxWalletAmount (#703) is not in mixedCase
Constant SCUBA.numTokensSellToAddToLiquidity (#705) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeSwapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#526) is too similar to IPancakeSwapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#527)
Variable SCUBA._transferStandard(address,address,uint256).rTransferAmount (#1183) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA._transferBothExcluded(address,address,uint256).rTransferAmount (#854) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable SCUBA._transferBothExcluded(address,address,uint256).rTransferAmount (#854) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA._transferFromExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable SCUBA.reflectionFromToken(uint256,bool).rTransferAmount (#821) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable SCUBA._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA._transferFromExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA._transferStandard(address,address,uint256).rTransferAmount (#1183) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA.reflectionFromToken(uint256,bool).rTransferAmount (#821) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA.reflectionFromToken(uint256,bool).rTransferAmount (#821) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA._transferStandard(address,address,uint256).rTransferAmount (#1183) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable SCUBA._transferBothExcluded(address,address,uint256).rTransferAmount (#854) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable SCUBA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA._transferBothExcluded(address,address,uint256).rTransferAmount (#854) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._transferBothExcluded(address,address,uint256).rTransferAmount (#854) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA.reflectionFromToken(uint256,bool).rTransferAmount (#821) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA._transferStandard(address,address,uint256).rTransferAmount (#1183) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Variable SCUBA._transferFromExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA._transferFromExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA.reflectionFromToken(uint256,bool).rTransferAmount (#821) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA._getValues(uint256).rTransferAmount (#917) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA._transferStandard(address,address,uint256).rTransferAmount (#1183) is too similar to SCUBA._getTValues(uint256).tTransferAmount (#924)
Variable SCUBA._transferStandard(address,address,uint256).rTransferAmount (#1183) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA.reflectionFromToken(uint256,bool).rTransferAmount (#821) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._transferBothExcluded(address,address,uint256).rTransferAmount (#854) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._getValues(uint256).rTransferAmount (#917) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA._transferFromExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA._getValues(uint256).rTransferAmount (#917) is too similar to SCUBA._getValues(uint256).tTransferAmount (#916)
Variable SCUBA._getValues(uint256).rTransferAmount (#917) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._transferFromExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to SCUBA._transferBothExcluded(address,address,uint256).tTransferAmount (#854)
Variable SCUBA._getValues(uint256).rTransferAmount (#917) is too similar to SCUBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable SCUBA._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to SCUBA._transferStandard(address,address,uint256).tTransferAmount (#1183)
Variable SCUBA._getValues(uint256).rTransferAmount (#917) is too similar to SCUBA._transferToExcluded(address,address,uint256).tTransferAmount (#1192)
Prevent variables from having similar names.

Additional information: link

SCUBA.slitherConstructorConstantVariables() (#655-1235) uses literals with too many digits:
- _tTotal = 100000 * 10 ** 6 * 10 ** 18 (#675)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#434-437)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#443-447)
name() should be declared external:
- SCUBA.name() (#747-749)
symbol() should be declared external:
- SCUBA.symbol() (#751-753)
decimals() should be declared external:
- SCUBA.decimals() (#755-757)
transfer(address,uint256) should be declared external:
- SCUBA.transfer(address,uint256) (#768-771)
allowance(address,address) should be declared external:
- SCUBA.allowance(address,address) (#773-775)
approve(address,uint256) should be declared external:
- SCUBA.approve(address,uint256) (#777-780)
transferFrom(address,address,uint256) should be declared external:
- SCUBA.transferFrom(address,address,uint256) (#782-786)
increaseAllowance(address,uint256) should be declared external:
- SCUBA.increaseAllowance(address,uint256) (#788-791)
decreaseAllowance(address,uint256) should be declared external:
- SCUBA.decreaseAllowance(address,uint256) (#793-796)
isExcludedFromReward(address) should be declared external:
- SCUBA.isExcludedFromReward(address) (#798-800)
totalFees() should be declared external:
- SCUBA.totalFees() (#802-804)
deliver(uint256) should be declared external:
- SCUBA.deliver(uint256) (#806-813)
reflectionFromToken(uint256,bool) should be declared external:
- SCUBA.reflectionFromToken(uint256,bool) (#815-824)
excludeFromReward(address) should be declared external:
- SCUBA.excludeFromReward(address) (#832-839)
excludeFromFee(address) should be declared external:
- SCUBA.excludeFromFee(address) (#864-866)
includeInFee(address) should be declared external:
- SCUBA.includeInFee(address) (#868-870)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SCUBA.setSwapAndLiquifyEnabled(bool) (#902-905)
isExcludedFromFee(address) should be declared external:
- SCUBA.isExcludedFromFee(address) (#1022-1024)
migrateBNB(address) should be declared external:
- SCUBA.migrateBNB(address) (#1211-1213)
setMaxWalletAmount(uint256) should be declared external:
- SCUBA.setMaxWalletAmount(uint256) (#1225-1228)
getMaxWalletAmount() should be declared external:
- SCUBA.getMaxWalletAmount() (#1230-1232)
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.


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


Telegram account link seems to be invalid


Twitter account has less than 100 followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


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

Price for SCUBA

News for SCUBA