SUREBETS ONLINE Token Logo

SUREBETS [SUREBETS ONLINE] Token

About SUREBETS

Listings

Token 2 years
CoinMarketCap 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 4 August 2022

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

Anti-Scam

Links

SUREBETSToken.addLiquidity(uint256,uint256) (contracts/SUREBETS.sol#417-430) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SUREBETSToken._transfer(address,address,uint256) (contracts/SUREBETS.sol#329-374):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/SUREBETS.sol#361)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/SUREBETS.sol#361)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/SUREBETS.sol#285)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/SUREBETS.sol#464)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/SUREBETS.sol#455)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/SUREBETS.sol#456)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/SUREBETS.sol#475)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/SUREBETS.sol#201)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/SUREBETS.sol#466)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/SUREBETS.sol#476)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/SUREBETS.sol#203)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _rTotal = _rTotal.sub(rFee) (contracts/SUREBETS.sol#240)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/SUREBETS.sol#287)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/SUREBETS.sol#474)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/SUREBETS.sol#200)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/SUREBETS.sol#465)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/SUREBETS.sol#202)
Apply the check-effects-interactions pattern.

Additional information: link

SUREBETSToken.withdraw(address,uint256) (contracts/SUREBETS.sol#482-484) ignores return value by IERC20(_token).transfer(msg.sender,_amount) (contracts/SUREBETS.sol#483)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

SUREBETSToken.addLiquidity(uint256,uint256) (contracts/SUREBETS.sol#417-430) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
Ensure that all the return values of the function calls are used.

Additional information: link

SUREBETSToken.allowance(address,address).owner (contracts/SUREBETS.sol#117) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
SUREBETSToken._approve(address,address,uint256).owner (contracts/SUREBETS.sol#321) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.

Additional information: link

SUREBETSToken.setTaxFeePercent(uint256) (contracts/SUREBETS.sol#217-219) should emit an event for:
- _taxFee = taxFee (contracts/SUREBETS.sol#218)
SUREBETSToken.setLiquidityFeePercent(uint256) (contracts/SUREBETS.sol#221-223) should emit an event for:
- _liquidityFee = liquidityFee (contracts/SUREBETS.sol#222)
SUREBETSToken.setMaxTxPercent(uint256) (contracts/SUREBETS.sol#225-229) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (contracts/SUREBETS.sol#226-228)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SUREBETSToken._transfer(address,address,uint256) (contracts/SUREBETS.sol#329-374):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/SUREBETS.sol#361)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/SUREBETS.sol#361)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _liquidityFee = _previousLiquidityFee (contracts/SUREBETS.sol#314)
- _liquidityFee = 0 (contracts/SUREBETS.sol#309)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _previousLiquidityFee = _liquidityFee (contracts/SUREBETS.sol#306)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _previousTaxFee = _taxFee (contracts/SUREBETS.sol#305)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/SUREBETS.sol#241)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- _taxFee = _previousTaxFee (contracts/SUREBETS.sol#313)
- _taxFee = 0 (contracts/SUREBETS.sol#308)
Reentrancy in SUREBETSToken.constructor(address) (contracts/SUREBETS.sol#73-89):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/SUREBETS.sol#78-79)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/SUREBETS.sol#85)
- _isExcludedFromFee[address(this)] = true (contracts/SUREBETS.sol#86)
- uniswapV2Router = _uniswapV2Router (contracts/SUREBETS.sol#82)
Reentrancy in SUREBETSToken.swapAndLiquify(uint256) (contracts/SUREBETS.sol#376-397):
External calls:
- swapTokensForEth(half) (contracts/SUREBETS.sol#388)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
- addLiquidity(otherHalf,newBalance) (contracts/SUREBETS.sol#394)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/SUREBETS.sol#394)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/SUREBETS.sol#394)
- _allowances[owner][spender] = amount (contracts/SUREBETS.sol#325)
Reentrancy in SUREBETSToken.transferFrom(address,address,uint256) (contracts/SUREBETS.sol#126-130):
External calls:
- _transfer(sender,recipient,amount) (contracts/SUREBETS.sol#127)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/SUREBETS.sol#127)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/SUREBETS.sol#128)
- _allowances[owner][spender] = amount (contracts/SUREBETS.sol#325)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SUREBETSToken._transfer(address,address,uint256) (contracts/SUREBETS.sol#329-374):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/SUREBETS.sol#361)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/SUREBETS.sol#361)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/SUREBETS.sol#459)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- Transfer(sender,recipient,tTransferAmount) (contracts/SUREBETS.sol#479)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- Transfer(sender,recipient,tTransferAmount) (contracts/SUREBETS.sol#469)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
- Transfer(sender,recipient,tTransferAmount) (contracts/SUREBETS.sol#206)
- _tokenTransfer(from,to,amount,takeFee) (contracts/SUREBETS.sol#373)
Reentrancy in SUREBETSToken.constructor(address) (contracts/SUREBETS.sol#73-89):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/SUREBETS.sol#78-79)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (contracts/SUREBETS.sol#88)
Reentrancy in SUREBETSToken.swapAndLiquify(uint256) (contracts/SUREBETS.sol#376-397):
External calls:
- swapTokensForEth(half) (contracts/SUREBETS.sol#388)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
- addLiquidity(otherHalf,newBalance) (contracts/SUREBETS.sol#394)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/SUREBETS.sol#394)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/SUREBETS.sol#326)
- addLiquidity(otherHalf,newBalance) (contracts/SUREBETS.sol#394)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/SUREBETS.sol#396)
Reentrancy in SUREBETSToken.transferFrom(address,address,uint256) (contracts/SUREBETS.sol#126-130):
External calls:
- _transfer(sender,recipient,amount) (contracts/SUREBETS.sol#127)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/SUREBETS.sol#408-414)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/SUREBETS.sol#127)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/SUREBETS.sol#422-429)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/SUREBETS.sol#326)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/SUREBETS.sol#128)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#26-35) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#33)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.6.0', '^0.6.12', '^0.6.2']
- ^0.6.0 (@openzeppelin/contracts/GSN/Context.sol#3)
- ^0.6.0 (@openzeppelin/contracts/access/Ownable.sol#3)
- ^0.6.0 (@openzeppelin/contracts/math/SafeMath.sol#3)
- ^0.6.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3)
- ^0.6.2 (@openzeppelin/contracts/utils/Address.sol#3)
- >=0.5.0 (@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol#1)
- >=0.5.0 (@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol#1)
- >=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#1)
- >=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol#1)
- ^0.6.12 (contracts/SUREBETS.sol#7)
Use one Solidity version.

Additional information: link

SUREBETSToken.includeInReward(address) (contracts/SUREBETS.sol#186-197) has costly operations inside a loop:
- _excluded.pop() (contracts/SUREBETS.sol#193)
Use a local variable to hold the loop computation result.

Additional information: link

Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#26-35) is never used and should be removed
Address.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#53-59) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/GSN/Context.sol#24-27) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#133-135) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#148-151) is never used and should be removed
Remove unused functions.

Additional information: link

SUREBETSToken._rTotal (contracts/SUREBETS.sol#37) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SUREBETSToken._previousTaxFee (contracts/SUREBETS.sol#45) is set pre-construction with a non-constant function or state variable:
- _taxFee
SUREBETSToken._previousLiquidityFee (contracts/SUREBETS.sol#48) 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

Pragma version^0.6.0 (@openzeppelin/contracts/GSN/Context.sol#3) allows old versions
Pragma version^0.6.0 (@openzeppelin/contracts/access/Ownable.sol#3) allows old versions
Pragma version^0.6.0 (@openzeppelin/contracts/math/SafeMath.sol#3) allows old versions
Pragma version^0.6.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3) allows old versions
Pragma version^0.6.2 (@openzeppelin/contracts/utils/Address.sol#3) allows old versions
Pragma version>=0.5.0 (@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol#1) allows old versions
Pragma version>=0.5.0 (@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol#1) allows old versions
Pragma version>=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#1) allows old versions
Pragma version>=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol#1) allows old versions
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) (@openzeppelin/contracts/utils/Address.sol#53-59):
- (success) = recipient.call{value: amount}() (@openzeppelin/contracts/utils/Address.sol#57)
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() (@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol#18) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol#19) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol#36) is not in mixedCase
Function IUniswapV2Router01.WETH() (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#5) is not in mixedCase
Parameter SUREBETSToken.setSwapAndLiquifyEnabled(bool)._enabled (contracts/SUREBETS.sol#231) is not in mixedCase
Parameter SUREBETSToken.calculateTaxFee(uint256)._amount (contracts/SUREBETS.sol#290) is not in mixedCase
Parameter SUREBETSToken.calculateLiquidityFee(uint256)._amount (contracts/SUREBETS.sol#296) is not in mixedCase
Parameter SUREBETSToken.withdraw(address,uint256)._token (contracts/SUREBETS.sol#482) is not in mixedCase
Parameter SUREBETSToken.withdraw(address,uint256)._amount (contracts/SUREBETS.sol#482) is not in mixedCase
Variable SUREBETSToken._taxFee (contracts/SUREBETS.sol#44) is not in mixedCase
Variable SUREBETSToken._liquidityFee (contracts/SUREBETS.sol#47) is not in mixedCase
Variable SUREBETSToken._maxTxAmount (contracts/SUREBETS.sol#56) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (@openzeppelin/contracts/GSN/Context.sol#25)" inContext (@openzeppelin/contracts/GSN/Context.sol#15-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#10) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#11)
Variable SUREBETSToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#473) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/SUREBETS.sol#165) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#463) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/SUREBETS.sol#261) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#199) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#199) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#473) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#199) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/SUREBETS.sol#165) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._getValues(uint256).rTransferAmount (contracts/SUREBETS.sol#246) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#473) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#463) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#473) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#463) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#463) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/SUREBETS.sol#261) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/SUREBETS.sol#261) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#199) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#199) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Variable SUREBETSToken._transferStandard(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#454) is too similar to SUREBETSToken._transferStandard(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#454)
Variable SUREBETSToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#473) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Variable SUREBETSToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#473) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#199) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#463) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Variable SUREBETSToken._getValues(uint256).rTransferAmount (contracts/SUREBETS.sol#246) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/SUREBETS.sol#261) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/SUREBETS.sol#165) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Variable SUREBETSToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/SUREBETS.sol#165) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken._transferStandard(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#454) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/SUREBETS.sol#261) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken._getValues(uint256).rTransferAmount (contracts/SUREBETS.sol#246) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken._transferStandard(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#454) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/SUREBETS.sol#165) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/SUREBETS.sol#261) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Variable SUREBETSToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#463) is too similar to SUREBETSToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#199)
Variable SUREBETSToken._getValues(uint256).rTransferAmount (contracts/SUREBETS.sol#246) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken._transferStandard(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#454) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken._transferStandard(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#454) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Variable SUREBETSToken._transferStandard(address,address,uint256).rTransferAmount (contracts/SUREBETS.sol#454) is too similar to SUREBETSToken._getTValues(uint256).tTransferAmount (contracts/SUREBETS.sol#253)
Variable SUREBETSToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/SUREBETS.sol#165) is too similar to SUREBETSToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#473)
Variable SUREBETSToken._getValues(uint256).rTransferAmount (contracts/SUREBETS.sol#246) is too similar to SUREBETSToken._getValues(uint256).tTransferAmount (contracts/SUREBETS.sol#245)
Variable SUREBETSToken._getValues(uint256).rTransferAmount (contracts/SUREBETS.sol#246) is too similar to SUREBETSToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/SUREBETS.sol#463)
Prevent variables from having similar names.

Additional information: link

SUREBETSToken.slitherConstructorVariables() (contracts/SUREBETS.sol#22-490) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 18 (contracts/SUREBETS.sol#36)
SUREBETSToken.slitherConstructorVariables() (contracts/SUREBETS.sol#22-490) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 18 (contracts/SUREBETS.sol#56)
SUREBETSToken.slitherConstructorVariables() (contracts/SUREBETS.sol#22-490) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000 * 10 ** 18 (contracts/SUREBETS.sol#57)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SUREBETSToken._decimals (contracts/SUREBETS.sol#42) should be constant
SUREBETSToken._name (contracts/SUREBETS.sol#40) should be constant
SUREBETSToken._symbol (contracts/SUREBETS.sol#41) should be constant
SUREBETSToken._tTotal (contracts/SUREBETS.sol#36) should be constant
SUREBETSToken.numTokensSellToAddToLiquidity (contracts/SUREBETS.sol#57) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#63-67)
name() should be declared external:
- SUREBETSToken.name() (contracts/SUREBETS.sol#91-93)
symbol() should be declared external:
- SUREBETSToken.symbol() (contracts/SUREBETS.sol#95-97)
decimals() should be declared external:
- SUREBETSToken.decimals() (contracts/SUREBETS.sol#99-101)
totalSupply() should be declared external:
- SUREBETSToken.totalSupply() (contracts/SUREBETS.sol#103-105)
transfer(address,uint256) should be declared external:
- SUREBETSToken.transfer(address,uint256) (contracts/SUREBETS.sol#112-115)
allowance(address,address) should be declared external:
- SUREBETSToken.allowance(address,address) (contracts/SUREBETS.sol#117-119)
approve(address,uint256) should be declared external:
- SUREBETSToken.approve(address,uint256) (contracts/SUREBETS.sol#121-124)
transferFrom(address,address,uint256) should be declared external:
- SUREBETSToken.transferFrom(address,address,uint256) (contracts/SUREBETS.sol#126-130)
increaseAllowance(address,uint256) should be declared external:
- SUREBETSToken.increaseAllowance(address,uint256) (contracts/SUREBETS.sol#132-135)
decreaseAllowance(address,uint256) should be declared external:
- SUREBETSToken.decreaseAllowance(address,uint256) (contracts/SUREBETS.sol#137-140)
isExcludedFromReward(address) should be declared external:
- SUREBETSToken.isExcludedFromReward(address) (contracts/SUREBETS.sol#142-144)
totalFees() should be declared external:
- SUREBETSToken.totalFees() (contracts/SUREBETS.sol#146-148)
deliver(uint256) should be declared external:
- SUREBETSToken.deliver(uint256) (contracts/SUREBETS.sol#150-157)
reflectionFromToken(uint256,bool) should be declared external:
- SUREBETSToken.reflectionFromToken(uint256,bool) (contracts/SUREBETS.sol#159-168)
excludeFromReward(address) should be declared external:
- SUREBETSToken.excludeFromReward(address) (contracts/SUREBETS.sol#176-184)
excludeFromFee(address) should be declared external:
- SUREBETSToken.excludeFromFee(address) (contracts/SUREBETS.sol#209-211)
includeInFee(address) should be declared external:
- SUREBETSToken.includeInFee(address) (contracts/SUREBETS.sol#213-215)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SUREBETSToken.setSwapAndLiquifyEnabled(bool) (contracts/SUREBETS.sol#231-234)
isExcludedFromFee(address) should be declared external:
- SUREBETSToken.isExcludedFromFee(address) (contracts/SUREBETS.sol#317-319)
withdraw(address,uint256) should be declared external:
- SUREBETSToken.withdraw(address,uint256) (contracts/SUREBETS.sol#482-484)
withdrawBNB() should be declared external:
- SUREBETSToken.withdrawBNB() (contracts/SUREBETS.sol#486-488)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 4% buy tax and 2% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Twitter account link seems to be invalid


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token has a considerable age, but we're still unable to find its website


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SUREBETS