Santa Elon Token Logo

HOHOHO [Santa Elon] Token

About HOHOHO

Listings

Not Found
Token 2 years

Santa Elon has arrived! This project has the community in mind with, giveaways and upcoming announcements. Santa Elon has a roadmap of plans which include marketing, gaining CMC and CQ listing, releasing their own NFTs and Metaverse game where the NFTs will be usable with Play2Earn features.

Social

Laser Scorebeta Last Audit: 24 January 2022

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

SantaElonCoin.distributionToWallets(address,address) (#537-584) sends eth to arbitrary user
Dangerous calls:
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SantaElonCoin._transfer(address,address,uint256) (#455-511):
External calls:
- distributionToWallets(from,to) (#492)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#156-162)
- Utils.swapTokensForEth(address(pancakeRouter),contractTokenBalance) (#562-565)
External calls sending eth:
- distributionToWallets(from,to) (#492)
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
State variables written after the call(s):
- WalletDfee = previousWalletDfee (#508)
- WalletMfee = previousWalletMfee (#509)
- WalletRfee = previousWalletRfee (#510)
- _tokenTransfer(from,to,amount,takeFee) (#507)
- _balances[sender] = _balances[sender].sub(amount) (#523)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#524)
- _balances[address(this)] = _balances[address(this)].add(allFee) (#525)
- _balances[sender] = _balances[sender].sub(amount) (#530)
- _balances[recipient] = _balances[recipient].add(amount) (#531)
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.

SantaElonCoin.allowance(address,address).owner (#289) shadows:
- Ownable.owner() (#63-65) (function)
SantaElonCoin._approve(address,address,uint256).owner (#444) shadows:
- Ownable.owner() (#63-65) (function)
Rename the local variables that shadow another component.

Additional information: link

SantaElonCoin.setMaxHoldingAmount(uint256) (#374-376) should emit an event for:
- maxHoldingAmount = _amount (#375)
SantaElonCoin.setMaxTxAmount(uint256) (#378-380) should emit an event for:
- maxTxAmount = _amount (#379)
SantaElonCoin.setMinTokenToSwap(uint256) (#381-383) should emit an event for:
- minTokenToSwap = _amount (#382)
SantaElonCoin.setFeePercent(uint256,uint256,uint256) (#385-396) should emit an event for:
- WalletDfee = _WalletDfee (#390)
- previousWalletDfee = _WalletDfee (#391)
- WalletRfee = _WalletRfee (#392)
- previousWalletRfee = _WalletRfee (#393)
- WalletMfee = _WalletMfee (#394)
- previousWalletMfee = _WalletMfee (#395)
SantaElonCoin.setDistributionPercent(uint256,uint256,uint256) (#398-406) should emit an event for:
- bnbDPercent = _bnbDPercent (#403)
- bnbMPercent = _bnbMPercent (#404)
- bnbRPercent = _bnbRPercent (#405)
Emit an event for critical parameter changes.

Additional information: link

SantaElonCoin.constructor(address,address,address)._D (#210) lacks a zero-check on :
- WalletD = _D (#214)
SantaElonCoin.constructor(address,address,address)._M (#210) lacks a zero-check on :
- WalletM = _M (#215)
SantaElonCoin.constructor(address,address,address)._R (#210) lacks a zero-check on :
- WalletR = _R (#216)
SantaElonCoin.setPancakeRouter(IPancakeRouter02,address)._pair (#417) lacks a zero-check on :
- pancakePair = _pair (#422)
Check that the address is not zero.

Additional information: link

Reentrancy in SantaElonCoin.constructor(address,address,address) (#210-255):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#223-226)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#232)
- _isExcludedFromFee[address(this)] = true (#233)
- _isExcludedFromFee[address(WalletD)] = true (#234)
- _isExcludedFromFee[address(WalletM)] = true (#235)
- _isExcludedFromFee[address(WalletR)] = true (#236)
- _isExcludedFromMaxTx[owner()] = true (#240)
- _isExcludedFromMaxTx[address(this)] = true (#241)
- _isExcludedFromMaxTx[address(WalletD)] = true (#242)
- _isExcludedFromMaxTx[address(WalletM)] = true (#243)
- _isExcludedFromMaxTx[address(WalletR)] = true (#244)
- _isExcludedFromMaxholding[owner()] = true (#247)
- _isExcludedFromMaxholding[address(this)] = true (#248)
- _isExcludedFromMaxholding[address(pancakePair)] = true (#249)
- _isExcludedFromMaxholding[address(WalletD)] = true (#250)
- _isExcludedFromMaxholding[address(WalletM)] = true (#251)
- _isExcludedFromMaxholding[address(WalletR)] = true (#252)
- pancakeRouter = _pancakeRouter (#229)
Reentrancy in SantaElonCoin.transferFrom(address,address,uint256) (#307-322):
External calls:
- _transfer(sender,recipient,amount) (#312)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#156-162)
- Utils.swapTokensForEth(address(pancakeRouter),contractTokenBalance) (#562-565)
External calls sending eth:
- _transfer(sender,recipient,amount) (#312)
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,transfer amount exceeds allowance)) (#313-320)
- _allowances[owner][spender] = amount (#451)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SantaElonCoin._transfer(address,address,uint256) (#455-511):
External calls:
- distributionToWallets(from,to) (#492)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#156-162)
- Utils.swapTokensForEth(address(pancakeRouter),contractTokenBalance) (#562-565)
External calls sending eth:
- distributionToWallets(from,to) (#492)
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
Event emitted after the call(s):
- Transfer(_msgSender(),recipient,tTransferAmount) (#526)
- _tokenTransfer(from,to,amount,takeFee) (#507)
- Transfer(_msgSender(),address(this),allFee) (#527)
- _tokenTransfer(from,to,amount,takeFee) (#507)
- Transfer(_msgSender(),recipient,amount) (#533)
- _tokenTransfer(from,to,amount,takeFee) (#507)
Reentrancy in SantaElonCoin.constructor(address,address,address) (#210-255):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#223-226)
Event emitted after the call(s):
- Transfer(address(0),owner(),_totalSupply) (#254)
Reentrancy in SantaElonCoin.transferFrom(address,address,uint256) (#307-322):
External calls:
- _transfer(sender,recipient,amount) (#312)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#156-162)
- Utils.swapTokensForEth(address(pancakeRouter),contractTokenBalance) (#562-565)
External calls sending eth:
- _transfer(sender,recipient,amount) (#312)
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#452)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,transfer amount exceeds allowance)) (#313-320)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#99-111) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until defined days) (#104-107)
SantaElonCoin._transfer(address,address,uint256) (#455-511) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < _launchTime + 7200 && to == pancakePair (#484)
Avoid relying on block.timestamp.

Additional information: link

SantaElonCoin._transfer(address,address,uint256) (#455-511) compares to a boolean constant:
-_isExcludedFromMaxTx[from] == false && _isExcludedFromMaxTx[to] == false (#466-467)
SantaElonCoin._transfer(address,address,uint256) (#455-511) compares to a boolean constant:
-_isExcludedFromMaxholding[from] == false && _isExcludedFromMaxholding[to] == false (#479-480)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#42-45) is never used and should be removed
SafeMath.mod(uint256,uint256) (#640-642) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#644-651) is never used and should be removed
Remove unused functions.

Additional information: link

SantaElonCoin.maxTxAmount (#190) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(8).div(100)
SantaElonCoin.previousWalletDfee (#200) is set pre-construction with a non-constant function or state variable:
- WalletDfee
SantaElonCoin.previousWalletRfee (#202) is set pre-construction with a non-constant function or state variable:
- WalletRfee
SantaElonCoin.previousWalletMfee (#204) is set pre-construction with a non-constant function or state variable:
- WalletMfee
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.9 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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

Function IPancakeRouter01.WETH() (#126) is not in mixedCase
Parameter SantaElonCoin.includeOrExcludeFromMaxTx(address,bool)._address (#360) is not in mixedCase
Parameter SantaElonCoin.includeOrExcludeFromMaxHolding(address,bool)._address (#367) is not in mixedCase
Parameter SantaElonCoin.setMaxHoldingAmount(uint256)._amount (#374) is not in mixedCase
Parameter SantaElonCoin.setMaxTxAmount(uint256)._amount (#378) is not in mixedCase
Parameter SantaElonCoin.setMinTokenToSwap(uint256)._amount (#381) is not in mixedCase
Parameter SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletDfee (#386) is not in mixedCase
Parameter SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletRfee (#387) is not in mixedCase
Parameter SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletMfee (#388) is not in mixedCase
Parameter SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbDPercent (#399) is not in mixedCase
Parameter SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbMPercent (#400) is not in mixedCase
Parameter SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbRPercent (#401) is not in mixedCase
Parameter SantaElonCoin.setDistributionStatus(bool)._value (#408) is not in mixedCase
Parameter SantaElonCoin.setReflectionFees(bool)._value (#412) is not in mixedCase
Parameter SantaElonCoin.setPancakeRouter(IPancakeRouter02,address)._router (#417) is not in mixedCase
Parameter SantaElonCoin.setPancakeRouter(IPancakeRouter02,address)._pair (#417) is not in mixedCase
Variable SantaElonCoin._isExcludedFromFee (#172) is not in mixedCase
Variable SantaElonCoin._isExcludedFromMaxTx (#173) is not in mixedCase
Variable SantaElonCoin._isExcludedFromMaxholding (#174) is not in mixedCase
Variable SantaElonCoin.WalletD (#186) is not in mixedCase
Variable SantaElonCoin.WalletM (#187) is not in mixedCase
Variable SantaElonCoin.WalletR (#188) is not in mixedCase
Variable SantaElonCoin._launchTime (#193) is not in mixedCase
Variable SantaElonCoin._tradingOpen (#197) is not in mixedCase
Variable SantaElonCoin.WalletDfee (#199) is not in mixedCase
Variable SantaElonCoin.WalletRfee (#201) is not in mixedCase
Variable SantaElonCoin.WalletMfee (#203) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#43)" inContext (#37-46)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SantaElonCoin._transfer(address,address,uint256) (#455-511):
External calls:
- distributionToWallets(from,to) (#492)
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
State variables written after the call(s):
- WalletDfee = previousWalletDfee (#508)
- WalletMfee = previousWalletMfee (#509)
- WalletRfee = previousWalletRfee (#510)
- _tokenTransfer(from,to,amount,takeFee) (#507)
- _balances[sender] = _balances[sender].sub(amount) (#523)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#524)
- _balances[address(this)] = _balances[address(this)].add(allFee) (#525)
- _balances[sender] = _balances[sender].sub(amount) (#530)
- _balances[recipient] = _balances[recipient].add(amount) (#531)
Event emitted after the call(s):
- Transfer(_msgSender(),recipient,tTransferAmount) (#526)
- _tokenTransfer(from,to,amount,takeFee) (#507)
- Transfer(_msgSender(),address(this),allFee) (#527)
- _tokenTransfer(from,to,amount,takeFee) (#507)
- Transfer(_msgSender(),recipient,amount) (#533)
- _tokenTransfer(from,to,amount,takeFee) (#507)
Reentrancy in SantaElonCoin.transferFrom(address,address,uint256) (#307-322):
External calls:
- _transfer(sender,recipient,amount) (#312)
- WalletD.transfer(totalBalance.mul(bnbDPercent).div(percentDivider)) (#571-573)
- WalletM.transfer(totalBalance.mul(bnbMPercent).div(percentDivider)) (#575-577)
- WalletR.transfer(totalBalance.mul(bnbRPercent).div(percentDivider)) (#579-581)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,transfer amount exceeds allowance)) (#313-320)
- _allowances[owner][spender] = amount (#451)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#452)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,transfer amount exceeds allowance)) (#313-320)
Apply the check-effects-interactions pattern.

Additional information: link

Variable SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletDfee (#386) is too similar to SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletMfee (#388)
Variable SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletDfee (#386) is too similar to SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletRfee (#387)
Variable SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletMfee (#388) is too similar to SantaElonCoin.setFeePercent(uint256,uint256,uint256)._WalletRfee (#387)
Variable SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbDPercent (#399) is too similar to SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbMPercent (#400)
Variable SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbDPercent (#399) is too similar to SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbRPercent (#401)
Variable SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbMPercent (#400) is too similar to SantaElonCoin.setDistributionPercent(uint256,uint256,uint256)._bnbRPercent (#401)
Variable SantaElonCoin.bnbDPercent (#206) is too similar to SantaElonCoin.bnbMPercent (#207)
Variable SantaElonCoin.bnbDPercent (#206) is too similar to SantaElonCoin.bnbRPercent (#208)
Variable SantaElonCoin.bnbMPercent (#207) is too similar to SantaElonCoin.bnbRPercent (#208)
Variable SantaElonCoin.previousWalletDfee (#200) is too similar to SantaElonCoin.previousWalletMfee (#204)
Variable SantaElonCoin.previousWalletDfee (#200) is too similar to SantaElonCoin.previousWalletRfee (#202)
Variable SantaElonCoin.previousWalletMfee (#204) is too similar to SantaElonCoin.previousWalletRfee (#202)
Prevent variables from having similar names.

Additional information: link

SantaElonCoin.slitherConstructorVariables() (#167-585) uses literals with too many digits:
- _totalSupply = 100000000 * 1e9 (#180)
SantaElonCoin.slitherConstructorVariables() (#167-585) uses literals with too many digits:
- maxHoldingAmount = 8000000 * 1e9 (#181)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SantaElonCoin._decimals (#179) should be constant
SantaElonCoin._name (#177) should be constant
SantaElonCoin._symbol (#178) should be constant
SantaElonCoin._totalSupply (#180) should be constant
SantaElonCoin.percentDivider (#192) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#72-75)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#77-84)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#86-88)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#91-96)
unlock() should be declared external:
- Ownable.unlock() (#99-111)
name() should be declared external:
- SantaElonCoin.name() (#260-262)
symbol() should be declared external:
- SantaElonCoin.symbol() (#264-266)
decimals() should be declared external:
- SantaElonCoin.decimals() (#268-270)
totalSupply() should be declared external:
- SantaElonCoin.totalSupply() (#272-274)
transfer(address,uint256) should be declared external:
- SantaElonCoin.transfer(address,uint256) (#280-287)
allowance(address,address) should be declared external:
- SantaElonCoin.allowance(address,address) (#289-296)
approve(address,uint256) should be declared external:
- SantaElonCoin.approve(address,uint256) (#298-305)
transferFrom(address,address,uint256) should be declared external:
- SantaElonCoin.transferFrom(address,address,uint256) (#307-322)
increaseAllowance(address,uint256) should be declared external:
- SantaElonCoin.increaseAllowance(address,uint256) (#324-335)
decreaseAllowance(address,uint256) should be declared external:
- SantaElonCoin.decreaseAllowance(address,uint256) (#337-351)
setDistributionStatus(bool) should be declared external:
- SantaElonCoin.setDistributionStatus(bool) (#408-410)
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.


Telegram account link seems to be invalid


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for HOHOHO

News for HOHOHO