SatoshiStreetBets Token Logo

SSB [SatoshiStreetBets] Token

About SSB

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

We are determined to create a successful crypto project and support it with
the massive Satoshi Street Bets community. We will establish the standard
of how a cryptocurrency and community should operate.

We are on a mission to change the way new investors view crypto and
pride ourselves in transparency, professionalism, and dedication.
Our constant drive for success is the fuel that powers the CORE team.

We have a large network of connections and resources available to ensure we
achieve our goals.

Social

Laser Scorebeta Last Audit: 13 February 2023

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

SSB.swapBackForFee(uint256) (#450-482) sends eth to arbitrary user
Dangerous calls:
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SSB._transfer(address,address,uint256) (#398-448):
External calls:
- swapBackForFee(swapBackAmount) (#422)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#458-464)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
- scaleBuyFee() (#432)
- oracle.getScale(_feeDenominator) (#345-353)
External calls sending eth:
- swapBackForFee(swapBackAmount) (#422)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
State variables written after the call(s):
- restoreAllFee() (#445)
- _feeDenominator = _previousDenominator (#387)
- _transferFromExcluded(from,to,amount) (#438)
- _rOwned[address(this)] = _rOwned[address(this)] + rTax (#319)
- _rOwned[sender] = _rOwned[sender] - rAmount (#551)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#552)
- _transferToExcluded(from,to,amount) (#440)
- _rOwned[address(this)] = _rOwned[address(this)] + rTax (#319)
- _rOwned[sender] = _rOwned[sender] - rAmount (#540)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#542)
- _transferStandard(from,to,amount) (#442)
- _rOwned[address(this)] = _rOwned[address(this)] + rTax (#319)
- _rOwned[sender] = _rOwned[sender] - rAmount (#531)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#532)
- _transferFromExcluded(from,to,amount) (#438)
- _rTotal = _rTotal - rFee (#277)
- _transferToExcluded(from,to,amount) (#440)
- _rTotal = _rTotal - rFee (#277)
- _transferStandard(from,to,amount) (#442)
- _rTotal = _rTotal - rFee (#277)
- restoreAllFee() (#445)
- _reflectFee = _previousReflectFee (#385)
- _transferFromExcluded(from,to,amount) (#438)
- _tOwned[sender] = _tOwned[sender] - tAmount (#550)
- _transferToExcluded(from,to,amount) (#440)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#541)
- restoreAllFee() (#445)
- _taxFee = _previousTaxFee (#386)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

SSB._transfer(address,address,uint256) (#398-448) uses a dangerous strict equality:
- launchBlock == 0 (#409)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Reentrancy in SSB.scaleBuyFee() (#338-354):
External calls:
- oracle.getScale(_feeDenominator) (#345-353)
State variables written after the call(s):
- _feeDenominator = _feeDenominator * _feeDenominator (#351)
- _reflectFee = scale * _reflectFee (#349)
- _taxFee = scale * _taxFee (#350)
Apply the check-effects-interactions pattern.

Additional information: link

SSB.swapBackForFee(uint256) (#450-482) ignores return value by _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
SSB.swapBackForFee(uint256) (#450-482) ignores return value by _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
SSB.swapBackForFee(uint256) (#450-482) ignores return value by _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

SSB.setFeeReceivers(address,address,address)._marketingReceiver (#600) lacks a zero-check on :
- _marketingFeeReceiver = _marketingReceiver (#603)
Auth.transferOwnership(address).newOwner (#100) lacks a zero-check on :
- owner = newOwner (#102)
SSB.constructor(address,address,address)._marketing (#192) lacks a zero-check on :
- _marketingFeeReceiver = _marketing (#195)
SSB.constructor(address,address,address)._dev (#192) lacks a zero-check on :
- _devFeeReceiver = _dev (#194)
SSB.setFeeReceivers(address,address,address)._communityReceiver (#600) lacks a zero-check on :
- _communityFeeReceiver = _communityReceiver (#601)
SSB.constructor(address,address,address)._community (#192) lacks a zero-check on :
- _communityFeeReceiver = _community (#193)
SSB.setFeeReceivers(address,address,address)._devReceiver (#600) lacks a zero-check on :
- _devFeeReceiver = _devReceiver (#602)
Check that the address is not zero.

Additional information: link

SSB.scaleBuyFee().scale (#346) is a local variable never initialized
SSB._onTokenTransfer(address,address,uint256).shouldProtect (#518) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

SSB._onTokenTransfer(address,address,uint256) (#509-527) ignores return value by protection.protect(sender,recipient,amount) (#518-523)
SSB.scaleBuyFee() (#338-354) ignores return value by oracle.getScale(_feeDenominator) (#345-353)
Ensure that all the return values of the function calls are used.

Additional information: link

SSB.allowance(address,address).owner (#243) shadows:
- Auth.owner (#66) (state variable)
SSB._approve(address,address,uint256).owner (#390) shadows:
- Auth.owner (#66) (state variable)
Rename the local variables that shadow another component.

Additional information: link

SSB.getSellFees() (#369-382) uses timestamp for comparisons
Dangerous comparisons:
- buybackMultiplierTriggeredAt + buybackMultiplierLength <= block.timestamp (#370)
Avoid relying on block.timestamp.

Additional information: link

Low level call in SSB.swapBackForFee(uint256) (#450-482):
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable 'SSB.scaleBuyFee().scale (#346)' in SSB.scaleBuyFee() (#338-354) potentially used before declaration: _reflectFee = scale * _reflectFee (#349)
Variable 'SSB.scaleBuyFee().scale (#346)' in SSB.scaleBuyFee() (#338-354) potentially used before declaration: _taxFee = scale * _taxFee (#350)
Variable 'SSB.scaleBuyFee().scale (#346)' in SSB.scaleBuyFee() (#338-354) potentially used before declaration: scale < _feeDenominator (#348)
Variable 'SSB._onTokenTransfer(address,address,uint256).shouldProtect (#518)' in SSB._onTokenTransfer(address,address,uint256) (#509-527) potentially used before declaration: shouldProtect (#519)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

SSB._previousDenominator (#160) is set pre-construction with a non-constant function or state variable:
- _feeDenominator
SSB._previousReflectFee (#158) is set pre-construction with a non-constant function or state variable:
- _reflectFee
SSB._maxTxAmount (#179) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2000
SSB._rTotal (#152) is set pre-construction with a non-constant function or state variable:
- (UINT_MAX - (UINT_MAX % _tTotal))
SSB._previousTaxFee (#159) is set pre-construction with a non-constant function or state variable:
- _taxFee
SSB.swapBackAmount (#180) is set pre-construction with a non-constant function or state variable:
- _tTotal / 5000
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

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

Additional information: link

Reentrancy in SSB.buyback(uint256,bool,uint256) (#484-502):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(amountOutMin,path,DEAD,block.timestamp) (#489-494)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#497)
Reentrancy in SSB._transfer(address,address,uint256) (#398-448):
External calls:
- swapBackForFee(swapBackAmount) (#422)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#458-464)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
- scaleBuyFee() (#432)
- oracle.getScale(_feeDenominator) (#345-353)
External calls sending eth:
- swapBackForFee(swapBackAmount) (#422)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
State variables written after the call(s):
- scaleBuyFee() (#432)
- _previousDenominator = _feeDenominator (#343)
- scaleBuyFee() (#432)
- _previousReflectFee = _reflectFee (#341)
- scaleBuyFee() (#432)
- _previousTaxFee = _taxFee (#342)
- _transferFromExcluded(from,to,amount) (#438)
- _tFeeTotal = _tFeeTotal + tReflect (#278)
- _transferToExcluded(from,to,amount) (#440)
- _tFeeTotal = _tFeeTotal + tReflect (#278)
- _transferStandard(from,to,amount) (#442)
- _tFeeTotal = _tFeeTotal + tReflect (#278)
Reentrancy in SSB._onTokenTransfer(address,address,uint256) (#509-527):
External calls:
- lottery.onBurn(sender,amount) (#511)
State variables written after the call(s):
- protectionEnabled = false (#515)
Reentrancy in SSB._onTokenTransfer(address,address,uint256) (#509-527):
External calls:
- lottery.onBurn(sender,amount) (#511)
- protection.protect(sender,recipient,amount) (#518-523)
State variables written after the call(s):
- protect[recipient] = true (#520)
Reentrancy in SSB._transfer(address,address,uint256) (#398-448):
External calls:
- swapBackForFee(swapBackAmount) (#422)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#458-464)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
External calls sending eth:
- swapBackForFee(swapBackAmount) (#422)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
State variables written after the call(s):
- scaleSellFee() (#434)
- _feeDenominator = _denominator (#366)
- removeAllFee() (#430)
- _previousDenominator = _feeDenominator (#332)
- scaleSellFee() (#434)
- _previousDenominator = _feeDenominator (#361)
- removeAllFee() (#430)
- _previousReflectFee = _reflectFee (#330)
- scaleSellFee() (#434)
- _previousReflectFee = _reflectFee (#359)
- removeAllFee() (#430)
- _previousTaxFee = _taxFee (#331)
- scaleSellFee() (#434)
- _previousTaxFee = _taxFee (#360)
- removeAllFee() (#430)
- _reflectFee = 0 (#334)
- scaleSellFee() (#434)
- _reflectFee = _reflection (#364)
- removeAllFee() (#430)
- _taxFee = 0 (#335)
- scaleSellFee() (#434)
- _taxFee = _tax (#365)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SSB.buyback(uint256,bool,uint256) (#484-502):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(amountOutMin,path,DEAD,block.timestamp) (#489-494)
Event emitted after the call(s):
- Buyback(amount,triggerMultiplier) (#501)
- BuybackMultiplierTriggered(buybackMultiplierLength) (#498)
Reentrancy in SSB._onTokenTransfer(address,address,uint256) (#509-527):
External calls:
- lottery.onBurn(sender,amount) (#511)
Event emitted after the call(s):
- ProtectionDisabled() (#516)
Reentrancy in SSB._transfer(address,address,uint256) (#398-448):
External calls:
- swapBackForFee(swapBackAmount) (#422)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#458-464)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
- scaleBuyFee() (#432)
- oracle.getScale(_feeDenominator) (#345-353)
External calls sending eth:
- swapBackForFee(swapBackAmount) (#422)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#535)
- _transferStandard(from,to,amount) (#442)
- Transfer(sender,recipient,tTransferAmount) (#545)
- _transferToExcluded(from,to,amount) (#440)
- Transfer(sender,recipient,tTransferAmount) (#555)
- _transferFromExcluded(from,to,amount) (#438)
Reentrancy in SSB._transfer(address,address,uint256) (#398-448):
External calls:
- swapBackForFee(swapBackAmount) (#422)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#458-464)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
- scaleBuyFee() (#432)
- oracle.getScale(_feeDenominator) (#345-353)
- _onTokenTransfer(from,to,amount) (#447)
- lottery.onBurn(sender,amount) (#511)
- protection.protect(sender,recipient,amount) (#518-523)
External calls sending eth:
- swapBackForFee(swapBackAmount) (#422)
- _communityFeeReceiver.call{gas: 35000,value: amountCommunity}() (#472)
- _devFeeReceiver.call{gas: 35000,value: amountDev}() (#476)
- _marketingFeeReceiver.call{gas: 35000,value: amountMarketing}() (#480)
Event emitted after the call(s):
- Protected(recipient,true) (#521)
- _onTokenTransfer(from,to,amount) (#447)
- ProtectionDisabled() (#516)
- _onTokenTransfer(from,to,amount) (#447)
Reentrancy in SSB._onTokenTransfer(address,address,uint256) (#509-527):
External calls:
- lottery.onBurn(sender,amount) (#511)
- protection.protect(sender,recipient,amount) (#518-523)
Event emitted after the call(s):
- Protected(recipient,true) (#521)
Apply the check-effects-interactions pattern.

Additional information: link

Variable SSB._communitySplit (#163) is not in mixedCase
Constant SSB.protectionLength (#139) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SSB._isExcludedFromTxLimit (#149) is not in mixedCase
Variable SSB._tOwned (#145) is not in mixedCase
Variable SSB._maxTxAmount (#179) is not in mixedCase
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._buyback (#558) is not in mixedCase
Variable SSB._devSplit (#164) is not in mixedCase
Parameter SSB.setFeeReceivers(address,address,address)._marketingReceiver (#600) is not in mixedCase
Constant SSB._symbol (#133) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SSB._marketingFeeReceiver (#168) is not in mixedCase
Variable SSB._previousTaxFee (#159) is not in mixedCase
Parameter SSB.setFeeReceivers(address,address,address)._devReceiver (#600) is not in mixedCase
Parameter SSB.setProtection(IAntiSnipe,address)._protection (#607) is not in mixedCase
Parameter SSB.setSwapBack(uint256,bool)._amount (#594) is not in mixedCase
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._denominator (#558) is not in mixedCase
Variable SSB._communityFeeReceiver (#166) is not in mixedCase
Parameter SSB.setFeeReceivers(address,address,address)._communityReceiver (#600) is not in mixedCase
Variable SSB._allowances (#146) is not in mixedCase
Variable SSB._buybackSplit (#162) is not in mixedCase
Variable SSB._tFeeTotal (#153) is not in mixedCase
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._toReflect (#558) is not in mixedCase
Variable SSB._devFeeReceiver (#167) is not in mixedCase
Constant SSB._name (#132) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._community (#558) is not in mixedCase
Variable SSB._tTotal (#151) is not in mixedCase
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._dev (#558) is not in mixedCase
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._toTax (#558) is not in mixedCase
Variable SSB._previousReflectFee (#158) is not in mixedCase
Parameter SSB.setSwapBack(uint256,bool)._enabled (#594) is not in mixedCase
Parameter SSB.setBuyFeeOracle(IBuyFeeOracle)._oracle (#622) is not in mixedCase
Variable SSB._isExcludedFromFee (#148) is not in mixedCase
Constant SSB._decimals (#134) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SSB.calculateFees(uint256)._amount (#322) is not in mixedCase
Variable SSB._rTotal (#152) is not in mixedCase
Variable SSB._previousDenominator (#160) is not in mixedCase
Variable SSB._taxFee (#156) is not in mixedCase
Parameter SSB.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#558) is not in mixedCase
Variable SSB._reflectFee (#155) is not in mixedCase
Variable SSB._marketingSplit (#165) is not in mixedCase
Variable SSB._rOwned (#144) is not in mixedCase
Parameter SSB.setLottery(IBurnLottery)._lottery (#617) is not in mixedCase
Variable SSB._feeDenominator (#157) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable SSB._transferFromExcluded(address,address,uint256).rTransferAmount (#549) is too similar to SSB._transferFromExcluded(address,address,uint256).tTransferAmount (#549)
Variable SSB._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#297) is too similar to SSB._getValues(uint256).tTransferAmount (#282)
Variable SSB._transferToExcluded(address,address,uint256).rTransferAmount (#539) is too similar to SSB._transferToExcluded(address,address,uint256).tTransferAmount (#539)
Variable SSB._transferToExcluded(address,address,uint256).rTransferAmount (#539) is too similar to SSB._getTValues(uint256).tTransferAmount (#289)
Variable SSB.reflectionFromToken(uint256,bool).rTransferAmount (#265) is too similar to SSB._getTValues(uint256).tTransferAmount (#289)
Variable SSB._transferFromExcluded(address,address,uint256).rTransferAmount (#549) is too similar to SSB._transferStandard(address,address,uint256).tTransferAmount (#530)
Variable SSB._transferFromExcluded(address,address,uint256).rTransferAmount (#549) is too similar to SSB._getTValues(uint256).tTransferAmount (#289)
Variable SSB._transferStandard(address,address,uint256).rTransferAmount (#530) is too similar to SSB._transferFromExcluded(address,address,uint256).tTransferAmount (#549)
Variable SSB._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#297) is too similar to SSB._transferFromExcluded(address,address,uint256).tTransferAmount (#549)
Variable SSB.reflectionFromToken(uint256,bool).rTransferAmount (#265) is too similar to SSB._transferStandard(address,address,uint256).tTransferAmount (#530)
Variable SSB._getValues(uint256).rTransferAmount (#283) is too similar to SSB._transferFromExcluded(address,address,uint256).tTransferAmount (#549)
Variable SSB._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#297) is too similar to SSB._getTValues(uint256).tTransferAmount (#289)
Variable SSB._getValues(uint256).rTransferAmount (#283) is too similar to SSB._transferStandard(address,address,uint256).tTransferAmount (#530)
Variable SSB.reflectionFromToken(uint256,bool).rTransferAmount (#265) is too similar to SSB._getValues(uint256).tTransferAmount (#282)
Variable SSB._transferFromExcluded(address,address,uint256).rTransferAmount (#549) is too similar to SSB._getValues(uint256).tTransferAmount (#282)
Variable SSB._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#297) is too similar to SSB._transferToExcluded(address,address,uint256).tTransferAmount (#539)
Variable SSB._transferStandard(address,address,uint256).rTransferAmount (#530) is too similar to SSB._transferStandard(address,address,uint256).tTransferAmount (#530)
Variable SSB._transferToExcluded(address,address,uint256).rTransferAmount (#539) is too similar to SSB._transferStandard(address,address,uint256).tTransferAmount (#530)
Variable SSB._transferStandard(address,address,uint256).rTransferAmount (#530) is too similar to SSB._transferToExcluded(address,address,uint256).tTransferAmount (#539)
Variable SSB._transferFromExcluded(address,address,uint256).rTransferAmount (#549) is too similar to SSB._transferToExcluded(address,address,uint256).tTransferAmount (#539)
Variable SSB._transferStandard(address,address,uint256).rTransferAmount (#530) is too similar to SSB._getTValues(uint256).tTransferAmount (#289)
Variable SSB._transferStandard(address,address,uint256).rTransferAmount (#530) is too similar to SSB._getValues(uint256).tTransferAmount (#282)
Variable SSB._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#297) is too similar to SSB._transferStandard(address,address,uint256).tTransferAmount (#530)
Variable SSB._getValues(uint256).rTransferAmount (#283) is too similar to SSB._transferToExcluded(address,address,uint256).tTransferAmount (#539)
Variable SSB._getValues(uint256).rTransferAmount (#283) is too similar to SSB._getValues(uint256).tTransferAmount (#282)
Variable SSB._getValues(uint256).rTransferAmount (#283) is too similar to SSB._getTValues(uint256).tTransferAmount (#289)
Variable SSB._transferToExcluded(address,address,uint256).rTransferAmount (#539) is too similar to SSB._getValues(uint256).tTransferAmount (#282)
Variable SSB.reflectionFromToken(uint256,bool).rTransferAmount (#265) is too similar to SSB._transferToExcluded(address,address,uint256).tTransferAmount (#539)
Variable SSB._transferToExcluded(address,address,uint256).rTransferAmount (#539) is too similar to SSB._transferFromExcluded(address,address,uint256).tTransferAmount (#549)
Variable SSB.reflectionFromToken(uint256,bool).rTransferAmount (#265) is too similar to SSB._transferFromExcluded(address,address,uint256).tTransferAmount (#549)
Prevent variables from having similar names.

Additional information: link

SSB.slitherConstructorConstantVariables() (#127-648) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#130)
SSB.slitherConstructorVariables() (#127-648) uses literals with too many digits:
- _tTotal = 1000000000000000 * (10 ** _decimals) (#151)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#87-90)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#100-107)
authorize(address) should be declared external:
- Auth.authorize(address) (#82-85)
reflectionFromToken(uint256,bool) should be declared external:
- SSB.reflectionFromToken(uint256,bool) (#259-268)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 10% buy tax and 20% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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.


Token is deployed only at one blockchain


Twitter account seems to be suspended

Additional information: link


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 crawl data from the website


Token was delisted from CoinGecko

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


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 relatively low CoinMarketCap rank

Price for SSB