Sweet BTC Token Logo

SBTC [Sweet BTC] Token

About SBTC

Listings

Token 2 years
CoinMarketCap 2 years

World’s Sweetest Community Coin.

WELCOME TO Sweet BTC. Sweet BTC ($SBTC) is a multilayer hyper-deflationary token that allows passive income automatically sent to your wallet by simply holding through our mindless mining protocol.

Each transaction provides for 3 functions. Burning, reflecting and buyback.

3% of every transaction is bought from the open market and burned forever thus increasing the value of everyone else’s tokens
5% is reflected proportionally in BTC to all holders holding a minimum of 0.01%
4% is sent to the marketing wallet where we use it to buy up the tokens and provide for marketing.
The future of blockchain is still with the OG token BTC. Despite its ups and downs, this token will be the rock that all other tokens will rely on.

We plan on developing multilayered blockchain cross developing on the Binance Smart Chain and Bitcoin.

For each buy and sell a small percentage is deducted from the transaction as a tax fee.

These unique features integrated in our smart contract allows it to decide the best time to sell, in order to fill both the marketing and buyback wallet without affecting the chart.

Total Supply: 21,000,000 SBTC

Buy Fee: 12% Sell Fee: 12%

Sweet BTC ($SBTC) is a multilayer token that allows passive income of BTC automatically sent to your wallet by simply holding (adding pure sweetness to your investments).

Social

Laser Scorebeta Last Audit: 4 February 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...)

SBTC.swapBnbForTokens(uint256) (#814-831) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
SBTC.swapBack() (#900-936) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SBTC._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#747-750)
- amountReceived = takeFee(sender,recipient,amount) (#752)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#793)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#753)
- buyBackTokens() (#743)
- inSwap = true (#679)
- inSwap = false (#681)
Apply the check-effects-interactions pattern.

Additional information: link

SafeToken.withdraw(address,uint256) (#254-256) ignores return value by IBEP20(_token).transfer(owner(),_amount) (#255)
DividendDistributor.distributeDividend(address) (#430-447) ignores return value by BTC.transfer(shareholder,amount) (#438)
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.

Low level call in SBTC.swapBack() (#900-936):
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

BASEToken._transferFrom(address,address,uint256) (#583-589) is never used and should be removed
Context._msgData() (#65-68) is never used and should be removed
Remove unused functions.

Additional information: link

SBTC.totalFee (#666) is set pre-construction with a non-constant function or state variable:
- burnFee.add(reflectionFee).add(marketingFee)
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

Reentrancy in DividendDistributor.distributeDividend(address) (#430-447):
External calls:
- BTC.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#440-442)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#443-445)
Reentrancy in DividendDistributor.process(uint256) (#392-418):
External calls:
- distributeDividend(shareholders[currentIndex]) (#410)
- BTC.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- currentIndex ++ (#415)
Reentrancy in DividendDistributor.setShare(address,uint256) (#323-349):
External calls:
- distributeDividend(shareholder) (#329)
- BTC.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shares[shareholder].amount = amount (#345)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#346-348)
Apply the check-effects-interactions pattern.

Additional information: link

SBTC.swapBack() (#900-936) ignores return value by address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

SBTC.swapBack().e (#927) 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

DividendDistributor.constructor(address).owner (#307) shadows:
- Ownable.owner() (#91-93) (function)
Rename the local variables that shadow another component.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256,uint256) (#313-321) should emit an event for:
- minPeriod = _minPeriod (#318)
- minDistribution = _minDistribution (#319)
SBTC.setDistributorSettings(uint256) (#720-723) should emit an event for:
- distributorGas = gas (#722)
SBTC.setTxLimit(uint256) (#833-835) should emit an event for:
- _maxTxAmount = amount (#834)
SBTC.setFees(uint256,uint256,uint256,uint256) (#858-870) should emit an event for:
- burnFee = _burnFee (#864)
- reflectionFee = _reflectionFee (#865)
- marketingFee = _marketingFee (#866)
- totalFee = _burnFee.add(_reflectionFee).add(_marketingFee) (#867)
- feeDenominator = _feeDenominator (#868)
SBTC.setSwapBackSettings(bool,uint256) (#876-882) should emit an event for:
- swapThreshold = _amount (#881)
SBTC.setBuyBackEnable(uint256,bool) (#938-944) should emit an event for:
- buyBackUpperLimit = _buyBackUpperLimit (#942)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#83) lacks a zero-check on :
- _owner = msgSender (#84)
SBTC.constructor().owner_ (#692) lacks a zero-check on :
- marketing = owner_ (#702)
SBTC.setMarketingWallet(address)._marketing (#872) lacks a zero-check on :
- marketing = _marketing (#873)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#430-447) has external calls inside a loop: BTC.transfer(shareholder,amount) (#438)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'SBTC.swapBack().e (#927)' in SBTC.swapBack() (#900-936) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#928-930)
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

Reentrancy in SBTC.constructor() (#684-709):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#686)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#687)
- _balances[owner_] = _totalSupply (#704)
- _maxTxAmount = _totalSupply (#708)
- distributor = new DividendDistributor(msg.sender) (#690)
- excludeDividend[pair] = true (#696)
- excludeDividend[address(this)] = true (#697)
- excludeDividend[DEAD] = true (#700)
- excludeFee[owner_] = true (#694)
- excludeFee[address(this)] = true (#698)
- excludeMaxTxn[owner_] = true (#695)
- excludeMaxTxn[address(this)] = true (#699)
- marketing = owner_ (#702)
- pairs[pair] = true (#688)
- swapThreshold = _totalSupply / 5000 (#707)
Reentrancy in DividendDistributor.deposit() (#373-390):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#380-382)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#387-389)
- totalDividends = totalDividends.add(amount) (#386)
Reentrancy in DividendDistributor.distributeDividend(address) (#430-447):
External calls:
- BTC.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#439)
Reentrancy in DividendDistributor.setShare(address,uint256) (#323-349):
External calls:
- distributeDividend(shareholder) (#329)
- BTC.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- addShareholder(shareholder) (#336)
- shareholderIndexes[shareholder] = shareholders.length (#484)
- removeShareholder(shareholder) (#341)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#492-494)
- addShareholder(shareholder) (#336)
- shareholders.push(shareholder) (#485)
- removeShareholder(shareholder) (#341)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#489-491)
- shareholders.pop() (#495)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#344)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SBTC._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#830)
- buyBackTokens() (#743)
- Transfer(sender,address(this),feeAmount) (#794)
- amountReceived = takeFee(sender,recipient,amount) (#752)
Reentrancy in SBTC._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
- distributor.setShare(sender,_balances[sender]) (#756)
- distributor.setShare(recipient,_balances[recipient]) (#759-761)
- distributor.process(distributorGas) (#764)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#766)
Reentrancy in SBTC.constructor() (#684-709):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#686)
Event emitted after the call(s):
- Transfer(address(0),owner_,_totalSupply) (#705)
Reentrancy in SBTC.swapBack() (#900-936):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#926)
Reentrancy in SBTC.swapBack() (#900-936):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
Event emitted after the call(s):
- SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#928-930)
- SwapBackFailed(SwapBack failed without an error message from pancakeSwap) (#932-934)
Reentrancy in SBTC.swapBnbForTokens(uint256) (#814-831):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#830)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.getAccount(address) (#351-371) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#368-370)
DividendDistributor.shouldDistribute(address) (#420-428) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#425-427)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#392-418) has costly operations inside a loop:
- currentIndex = 0 (#406)
DividendDistributor.distributeDividend(address) (#430-447) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#437)
DividendDistributor.process(uint256) (#392-418) has costly operations inside a loop:
- currentIndex ++ (#415)
Use a local variable to hold the loop computation result.

Additional information: link

Function IDEXRouter.WETH() (#177) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#254) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#254) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#258) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#314) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#315) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#316) is not in mixedCase
Parameter DividendDistributor.getAccount(address)._account (#351) is not in mixedCase
Variable DividendDistributor._token (#265) is not in mixedCase
Variable DividendDistributor.BTC (#273) is not in mixedCase
Variable DividendDistributor.WBNB (#274) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#516) is not in mixedCase
Variable BASEToken.WBNB (#526) is not in mixedCase
Variable BASEToken.DEAD (#527) is not in mixedCase
Variable BASEToken.ZERO (#528) is not in mixedCase
Variable BASEToken._balances (#530) is not in mixedCase
Variable BASEToken._allowances (#531) is not in mixedCase
Variable BASEToken._name (#533) is not in mixedCase
Variable BASEToken._symbol (#534) is not in mixedCase
Variable BASEToken._decimals (#535) is not in mixedCase
Variable BASEToken._totalSupply (#536) is not in mixedCase
Parameter SBTC.changeDex(address)._dex (#711) is not in mixedCase
Parameter SBTC.setDex(address,bool)._dex (#715) is not in mixedCase
Parameter SBTC.setFees(uint256,uint256,uint256,uint256)._burnFee (#859) is not in mixedCase
Parameter SBTC.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#860) is not in mixedCase
Parameter SBTC.setFees(uint256,uint256,uint256,uint256)._marketingFee (#861) is not in mixedCase
Parameter SBTC.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#862) is not in mixedCase
Parameter SBTC.setMarketingWallet(address)._marketing (#872) is not in mixedCase
Parameter SBTC.setSwapBackSettings(bool,uint256)._enabled (#876) is not in mixedCase
Parameter SBTC.setSwapBackSettings(bool,uint256)._amount (#876) is not in mixedCase
Parameter SBTC.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#885) is not in mixedCase
Parameter SBTC.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#886) is not in mixedCase
Parameter SBTC.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#887) is not in mixedCase
Parameter SBTC.setBuyBackEnable(uint256,bool)._buyBackUpperLimit (#938) is not in mixedCase
Variable SBTC._maxTxAmount (#651) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#66)" inContext (#60-69)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#182) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#183)
Variable BASEToken._totalSupply (#536) is too similar to BASEToken.constructor(string,string,uint256,uint8).totalSupply_ (#541)
Prevent variables from having similar names.

Additional information: link

SBTC.setDistributorSettings(uint256) (#720-723) uses literals with too many digits:
- require(bool)(gas <= 1000000) (#721)
SBTC.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#527)
SBTC.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#528)
SBTC.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- distributorGas = 500000 (#661)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BASEToken.DEAD (#527) should be constant
BASEToken.WBNB (#526) should be constant
BASEToken.ZERO (#528) should be constant
DividendDistributor.WBNB (#274) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#287) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#110-113)
getAccount(address) should be declared external:
- DividendDistributor.getAccount(address) (#351-371)
approve(address,uint256) should be declared external:
- BASEToken.approve(address,uint256) (#552-560)
getCirculatingSupply() should be declared external:
- BASEToken.getCirculatingSupply() (#591-593)
changeDex(address) should be declared external:
- SBTC.changeDex(address) (#711-713)
setDex(address,bool) should be declared external:
- SBTC.setDex(address,bool) (#715-718)
setBuyBackEnable(uint256,bool) should be declared external:
- SBTC.setBuyBackEnable(uint256,bool) (#938-944)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d PancakeSwap volume is low.


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


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


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 number of swaps.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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 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 Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


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


Token has relatively low CoinMarketCap rank

Price for SBTC