Stream Smart Business Token Logo

SSB [Stream Smart Business] Token

About SSB

Listings

Token 2 years
white paper

Experience and efficiency to contribute to the development of tokenized projects.

Stream Smart Business -SSB is a consultant and incubator for DeFi projects. We provide a variety of business services and solutions When it comes to brokering and supporting token projects. The reason for developing this business is justified by filling a gap in the DeFi market regarding the growing demand for quality products and services that are essential for the DeFi market.

In addition, we provide smart contract analytics and auditing for projects that have already been launched and that need technical input from smart contract professionals about running their code on the Ethereum Virtual Machine.

Experienced team and great community. Doxxed CEO Fernando Nogueira

Liquidity lock link: https://dxsale.app/app/v3/dxlplocksearch?id=0&add=0xC03B1a1C0fFA1C23d3680F765503315c9ef2448E&type=lpdefi&chain=BSC

Whitepaper https://en.streamsmartbusiness.com/whitepaper-en

Social

Laser Scorebeta Last Audit: 9 December 2021

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...)

StreamSmartBusiness.swapBack() (#541-580) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in StreamSmartBusiness._transferFrom(address,address,uint256) (#474-496):
External calls:
- swapBack() (#479)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#552-558)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
External calls sending eth:
- swapBack() (#479)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#484)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#487)
- amountReceived = takeFee(sender,recipient,amount) (#486)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#528)
- triggerAutoBuyback() (#480)
- inSwap = true (#419)
- inSwap = false (#419)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#315-326) ignores return value by BUSD.transfer(shareholder,amount) (#321)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


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.


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.


Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious

Reentrancy in DividendDistributor.distributeDividend(address) (#315-326):
External calls:
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#323)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#324)
Reentrancy in DividendDistributor.process(uint256) (#284-308):
External calls:
- distributeDividend(shareholders[currentIndex]) (#300)
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- currentIndex ++ (#305)
Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- shares[shareholder].amount = amount (#260)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#261)
Apply the check-effects-interactions pattern.

Additional information: link

StreamSmartBusiness.swapBack() (#541-580) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#243-246) should emit an event for:
- minPeriod = _minPeriod (#244)
- minDistribution = _minDistribution (#245)
StreamSmartBusiness.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#626-634) should emit an event for:
- autoBuybackCap = _cap (#628)
- autoBuybackAmount = _amount (#630)
StreamSmartBusiness.setBuybackMultiplierSettings(uint256,uint256,uint256) (#636-641) should emit an event for:
- buybackMultiplierNumerator = numerator (#638)
- buybackMultiplierDenominator = denominator (#639)
- buybackMultiplierLength = length (#640)
StreamSmartBusiness.setTxLimit(uint256) (#651-654) should emit an event for:
- _maxTxAmount = amount (#653)
StreamSmartBusiness.setFees(uint256,uint256,uint256,uint256,uint256) (#674-681) should emit an event for:
- liquidityFee = _liquidityFee (#675)
- reflectionFee = _reflectionFee (#677)
- marketingFee = _marketingFee (#678)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#679)
- feeDenominator = _feeDenominator (#680)
StreamSmartBusiness.setSwapBackSettings(bool,uint256) (#688-691) should emit an event for:
- swapThreshold = _amount (#690)
StreamSmartBusiness.setTargetLiquidity(uint256,uint256) (#693-696) should emit an event for:
- targetLiquidity = _target (#694)
- targetLiquidityDenominator = _denominator (#695)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#125) lacks a zero-check on :
- owner = adr (#126)
StreamSmartBusiness.setFeeReceivers(address,address)._autoLiquidityReceiver (#683) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#684)
StreamSmartBusiness.setFeeReceivers(address,address)._marketingFeeReceiver (#683) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#685)
Check that the address is not zero.

Additional information: link

Reentrancy in StreamSmartBusiness._transferFrom(address,address,uint256) (#474-496):
External calls:
- swapBack() (#479)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#552-558)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
External calls sending eth:
- swapBack() (#479)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
State variables written after the call(s):
- triggerAutoBuyback() (#480)
- buybackMultiplierTriggeredAt = block.timestamp (#605)
- launch() (#482)
- launchedAt = block.number (#648)
Reentrancy in StreamSmartBusiness.constructor() (#421-440):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#423)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#424)
- _balances[_presaler] = _totalSupply (#438)
- autoLiquidityReceiver = msg.sender (#435)
- distributor = new DividendDistributor(address(router)) (#426)
- isDividendExempt[pair] = true (#431)
- isDividendExempt[address(this)] = true (#432)
- isDividendExempt[DEAD] = true (#433)
- isFeeExempt[_presaler] = true (#429)
- isTxLimitExempt[_presaler] = true (#430)
- marketingFeeReceiver = msg.sender (#436)
Reentrancy in DividendDistributor.deposit() (#264-282):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#271-276)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#281)
- totalDividends = totalDividends.add(amount) (#280)
Reentrancy in DividendDistributor.distributeDividend(address) (#315-326):
External calls:
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#322)
Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- BUSD.transfer(shareholder,amount) (#321)
State variables written after the call(s):
- addShareholder(shareholder) (#254)
- shareholderIndexes[shareholder] = shareholders.length (#348)
- removeShareholder(shareholder) (#256)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#354)
- addShareholder(shareholder) (#254)
- shareholders.push(shareholder) (#349)
- removeShareholder(shareholder) (#256)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#353)
- shareholders.pop() (#355)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#259)
Reentrancy in StreamSmartBusiness.triggerAutoBuyback() (#602-611):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#603)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#609)
- autoBuybackBlockLast = block.number (#608)
- autoBuybackEnabled = false (#610)
- buybackMultiplierTriggeredAt = block.timestamp (#605)
Reentrancy in StreamSmartBusiness.triggerManualBuyback(uint256,bool) (#590-596):
External calls:
- buyTokens(amount,DEAD) (#591)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#593)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in StreamSmartBusiness._transferFrom(address,address,uint256) (#474-496):
External calls:
- swapBack() (#479)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#552-558)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
External calls sending eth:
- swapBack() (#479)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#606)
- triggerAutoBuyback() (#480)
- Transfer(sender,address(this),feeAmount) (#529)
- amountReceived = takeFee(sender,recipient,amount) (#486)
Reentrancy in StreamSmartBusiness._transferFrom(address,address,uint256) (#474-496):
External calls:
- swapBack() (#479)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#552-558)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
- distributor.setShare(sender,_balances[sender]) (#489)
- distributor.setShare(recipient,_balances[recipient]) (#490)
- distributor.process(distributorGas) (#492)
External calls sending eth:
- swapBack() (#479)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
- triggerAutoBuyback() (#480)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#494)
Reentrancy in StreamSmartBusiness.constructor() (#421-440):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#423)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#439)
Reentrancy in StreamSmartBusiness.swapBack() (#541-580):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#552-558)
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#565)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#570-577)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#578)
Reentrancy in StreamSmartBusiness.triggerAutoBuyback() (#602-611):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#603)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#606)
Reentrancy in StreamSmartBusiness.triggerManualBuyback(uint256,bool) (#590-596):
External calls:
- buyTokens(amount,DEAD) (#591)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#618-623)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#594)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#310-313) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#311-312)
StreamSmartBusiness._transferFrom(address,address,uint256) (#474-496) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#482)
StreamSmartBusiness.getTotalFee(bool) (#513-517) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#515)
StreamSmartBusiness.shouldSwapBack() (#534-539) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#535-538)
StreamSmartBusiness.isOverLiquified(uint256,uint256) (#728-730) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#729)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#284-308) has costly operations inside a loop:
- currentIndex = 0 (#296)
DividendDistributor.process(uint256) (#284-308) has costly operations inside a loop:
- currentIndex ++ (#305)
Use a local variable to hold the loop computation result.

Additional information: link

StreamSmartBusiness._maxTxAmount (#372) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 20
StreamSmartBusiness._maxWalletToken (#373) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1
StreamSmartBusiness.swapThreshold (#417) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version^0.8.5 (#4) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.5 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 StreamSmartBusiness.swapBack() (#541-580):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#566)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#140) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#243) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#243) is not in mixedCase
Variable DividendDistributor._token (#196) is not in mixedCase
Variable DividendDistributor.BUSD (#204) is not in mixedCase
Variable DividendDistributor.WBNB (#205) is not in mixedCase
Parameter StreamSmartBusiness.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#626) is not in mixedCase
Parameter StreamSmartBusiness.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#626) is not in mixedCase
Parameter StreamSmartBusiness.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#626) is not in mixedCase
Parameter StreamSmartBusiness.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#626) is not in mixedCase
Parameter StreamSmartBusiness.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#626) is not in mixedCase
Parameter StreamSmartBusiness.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#674) is not in mixedCase
Parameter StreamSmartBusiness.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#674) is not in mixedCase
Parameter StreamSmartBusiness.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#674) is not in mixedCase
Parameter StreamSmartBusiness.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#674) is not in mixedCase
Parameter StreamSmartBusiness.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#674) is not in mixedCase
Parameter StreamSmartBusiness.setFeeReceivers(address,address)._autoLiquidityReceiver (#683) is not in mixedCase
Parameter StreamSmartBusiness.setFeeReceivers(address,address)._marketingFeeReceiver (#683) is not in mixedCase
Parameter StreamSmartBusiness.setSwapBackSettings(bool,uint256)._enabled (#688) is not in mixedCase
Parameter StreamSmartBusiness.setSwapBackSettings(bool,uint256)._amount (#688) is not in mixedCase
Parameter StreamSmartBusiness.setTargetLiquidity(uint256,uint256)._target (#693) is not in mixedCase
Parameter StreamSmartBusiness.setTargetLiquidity(uint256,uint256)._denominator (#693) is not in mixedCase
Parameter StreamSmartBusiness.setDistributionCriteria(uint256,uint256)._minPeriod (#703) is not in mixedCase
Parameter StreamSmartBusiness.setDistributionCriteria(uint256,uint256)._minDistribution (#703) is not in mixedCase
Variable StreamSmartBusiness.BUSD (#362) is not in mixedCase
Variable StreamSmartBusiness.WBNB (#363) is not in mixedCase
Variable StreamSmartBusiness.DEAD (#364) is not in mixedCase
Variable StreamSmartBusiness.ZERO (#365) is not in mixedCase
Constant StreamSmartBusiness._name (#367) is not in UPPER_CASE_WITH_UNDERSCORES
Constant StreamSmartBusiness._symbol (#368) is not in UPPER_CASE_WITH_UNDERSCORES
Constant StreamSmartBusiness._decimals (#369) is not in UPPER_CASE_WITH_UNDERSCORES
Variable StreamSmartBusiness._totalSupply (#371) is not in mixedCase
Variable StreamSmartBusiness._maxTxAmount (#372) is not in mixedCase
Variable StreamSmartBusiness._maxWalletToken (#373) is not in mixedCase
Variable StreamSmartBusiness._balances (#375) is not in mixedCase
Variable StreamSmartBusiness._allowances (#376) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#145) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#146)
Prevent variables from having similar names.

Additional information: link

StreamSmartBusiness.slitherConstructorVariables() (#359-742) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#364)
StreamSmartBusiness.slitherConstructorVariables() (#359-742) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#365)
StreamSmartBusiness.slitherConstructorVariables() (#359-742) uses literals with too many digits:
- _totalSupply = 20000000 * (10 ** _decimals) (#371)
StreamSmartBusiness.slitherConstructorVariables() (#359-742) uses literals with too many digits:
- distributorGas = 500000 (#414)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

StreamSmartBusiness.BUSD (#362) is never used in StreamSmartBusiness (#359-742)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#205) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#218) should be constant
StreamSmartBusiness.BUSD (#362) should be constant
StreamSmartBusiness.DEAD (#364) should be constant
StreamSmartBusiness.WBNB (#363) should be constant
StreamSmartBusiness.ZERO (#365) should be constant
StreamSmartBusiness._totalSupply (#371) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#97-99)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#104-106)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#125-129)
getUnpaidEarnings(address) should be declared external:
- StreamSmartBusiness.getUnpaidEarnings(address) (#711-713)
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.


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.


Twitter account link seems to be invalid


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Young tokens have high risks of 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 SSB