SantaBTC Token Logo

HOHO [SantaBTC] Token

About HOHO

Listings

Token 22 months

Santa₿TC is making his way into the Cryptocurrency market to reward those who will shake his hands with BTCB rewards, in other words — when you hold Santa₿TC HOHO token you’ll receive rewards in Pegged Bitcoin !

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

SantaBTC.swapBack() (#627-671) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#654)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#343-354) ignores return value by REWARD.transfer(shareholder,amount) (#349)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in SantaBTC._transferFrom(address,address,uint256) (#505-553):
External calls:
- swapBack() (#532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#638-644)
- distributor.deposit{value: amountBNBReflection}() (#654)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#661-668)
External calls sending eth:
- swapBack() (#532)
- distributor.deposit{value: amountBNBReflection}() (#654)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#661-668)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#535)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#538)
- amountReceived = takeFee(sender,amount) (#537)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#573)
Apply the check-effects-interactions pattern.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

SantaBTC.swapBack().tmpSuccess (#655) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
tmpSuccess = false (#658)
Fix or remove the writes.

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.

Reentrancy in DividendDistributor.setShare(address,uint256) (#276-290):
External calls:
- distributeDividend(shareholder) (#278)
- REWARD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shares[shareholder].amount = amount (#288)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#289)
Apply the check-effects-interactions pattern.

Additional information: link

SantaBTC.swapBack() (#627-671) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#661-668)
Ensure that all the return values of the function calls are used.

Additional information: link

SantaBTC.setDistributorSettings(uint256) (#728-731) should emit an event for:
- distributorGas = gas (#730)
Emit an event for critical parameter changes.

Additional information: link

SantaBTC.setFeeReceivers(address,address)._marketingFeeReceiver (#709) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#711)
Check that the address is not zero.

Additional information: link

SantaBTC.airdropFixed(address,address[],uint256) (#771-788) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#780)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#276-290):
External calls:
- distributeDividend(shareholder) (#278)
- REWARD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- addShareholder(shareholder) (#282)
- shareholderIndexes[shareholder] = shareholders.length (#376)
- removeShareholder(shareholder) (#284)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#382)
- addShareholder(shareholder) (#282)
- shareholders.push(shareholder) (#377)
- removeShareholder(shareholder) (#284)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#381)
- shareholders.pop() (#383)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#287)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SantaBTC.swapBack() (#627-671):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#638-644)
- distributor.deposit{value: amountBNBReflection}() (#654)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#661-668)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#654)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#661-668)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#669)
Apply the check-effects-interactions pattern.

Additional information: link

SantaBTC._transferFrom(address,address,uint256) (#505-553) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#523)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#312-336) has costly operations inside a loop:
- currentIndex ++ (#333)
Use a local variable to hold the loop computation result.

Additional information: link

SantaBTC.swapThreshold (#438) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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.7.4 (#28) 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 SantaBTC.swapBack() (#627-671):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#655)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable SantaBTC._allowances (#405) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

SantaBTC.slitherConstructorVariables() (#387-793) uses literals with too many digits:
- distributorGas = 500000 (#430)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SantaBTC._totalSupply (#398) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

claimProcess() should be declared external:
- SantaBTC.claimProcess() (#620-622)
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.


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


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.


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 find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for HOHO