ShibElon Token Logo

SHIBELON Token

About SHIBELON

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

In the year 1955, a young Shibelon was born onto the far far away planet called Neptune. Technology is too advanced on Neptune but humans could not reach this far to see all the innovations that it has to bring, therefore Shibelon studied astronomy and saw that there was a very high population on earth with very limited resources to reach advanced technology. On September 28th 1971, Shibelon sent his first electromagnetic signal into South Africa which changed the world as we know it. This signal influenced an unborn child who will carry a prodigy that will revolutionise the monetary system. On June 28th 1971, that child was born, but he wasn’t a normal child, he was born a genius. And his lovely mother named him Elon Musk.

Shibelon then took his time to develop intergalactic travel and on August 18th 2008, he transferred a source code to planet earth and deployed a monetary online currency which is referred to as Bitcoin to see what the humans could do with it. He was thrilled when he found out that people started transacting with it as he intended and on May 22nd 2010 he saw a thread from a student in California who wanted to buy a pizza for 10,000 Bitcoins and decided to approve that transactions to help facilitate the adoption. Which it did! He watched over Earth for years now and has almost completed his Super Rocket which is set to take course to earth on November 10th 2021 to help create the greatest wealth transfer in

the history of the universe. As time draws near and travel gets boring alone, he will be entertaining himself on the journey by creating and developing a roadmap to his own token on the Binance Smart Chain assisted by his best friend, Adam King, who will bring only the latest never seen before technological advances to the Blockchain.

Aside from the solidity contract he has created to be shared with Humans, his Roadmap involves Advanced Staking, Super Swaps, 3D NFTs, Play 2 Earn Gaming and many more that he will be sharing on his way to Earth.
Expect him. He’s coming. He’s the Future.

Social

Laser Scorebeta Last Audit: 8 July 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

SHIBELON.swapBack() (#565-613) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SHIBELON._transferFrom(address,address,uint256) (#449-497):
External calls:
- swapBack() (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
External calls sending eth:
- swapBack() (#476)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#479)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#482)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#481)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#522)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#523)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

SHIBELON.swapBack().tmpSuccess (#595) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
SHIBELON.swapBack().tmpSuccess (#595) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
SHIBELON.swapBack().tmpSuccess (#595) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
tmpSuccess = false (#600)
Fix or remove the writes.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

SHIBELON.takeFee(address,uint256,bool) (#514-531) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#517)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#519)
Consider ordering multiplication before division.

Additional information: link

SHIBELON.manage_blacklist(address[],bool).i (#631) 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

SHIBELON.swapBack() (#565-613) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.distributeDividend(address) (#264-277) has external calls inside a loop: address(shareholder).transfer(amount) (#271)
SHIBELON.multiTransfer(address,address[],uint256[]) (#703-727) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#719)
SHIBELON.multiTransfer_fixed(address,address[],uint256) (#729-748) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#740)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in SHIBELON.constructor() (#375-403):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#379)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#380)
- _balances[msg.sender] = _totalSupply (#401)
- autoLiquidityReceiver = DEAD (#395)
- burnFeeReceiver = DEAD (#399)
- devFeeReceiver = msg.sender (#398)
- distributor = new DividendDistributor(address(msg.sender)) (#382)
- isDividendExempt[pair] = true (#391)
- isDividendExempt[address(this)] = true (#392)
- isDividendExempt[DEAD] = true (#393)
- isFeeExempt[msg.sender] = true (#384)
- isTimelockExempt[msg.sender] = true (#387)
- isTimelockExempt[DEAD] = true (#388)
- isTimelockExempt[address(this)] = true (#389)
- isTxLimitExempt[msg.sender] = true (#385)
- marketingFeeReceiver = msg.sender (#396)
- teamFeeReceiver = msg.sender (#397)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SHIBELON._transferFrom(address,address,uint256) (#449-497):
External calls:
- swapBack() (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
- distributor.setShare(sender,_balances[sender]) (#486)
- distributor.setShare(recipient,_balances[recipient]) (#490)
- distributor.process(distributorGas) (#493)
External calls sending eth:
- swapBack() (#476)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#495)
Reentrancy in SHIBELON._transferFrom(address,address,uint256) (#449-497):
External calls:
- swapBack() (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
External calls sending eth:
- swapBack() (#476)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#524)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#481)
- Transfer(sender,burnFeeReceiver,burnTokens) (#527)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#481)
Reentrancy in SHIBELON.constructor() (#375-403):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#379)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#402)
Reentrancy in SHIBELON.swapBack() (#565-613):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#611)
Apply the check-effects-interactions pattern.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#76-78)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#80-82)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#92-96)
tradingStatus(bool) should be declared external:
- SHIBELON.tradingStatus(bool) (#555-557)
cooldownEnabled(bool,uint8) should be declared external:
- SHIBELON.cooldownEnabled(bool,uint8) (#560-563)
enable_blacklist(bool) should be declared external:
- SHIBELON.enable_blacklist(bool) (#626-628)
manage_blacklist(address[],bool) should be declared external:
- SHIBELON.manage_blacklist(address[],bool) (#630-634)
Use the external attribute for functions never called from the contract.

Additional information: link

SHIBELON.slitherConstructorVariables() (#310-752) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#314)
SHIBELON.slitherConstructorVariables() (#310-752) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#315)
SHIBELON.slitherConstructorVariables() (#310-752) uses literals with too many digits:
- distributorGas = 500000 (#364)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.RWRD (#172) is never used in DividendDistributor (#160-308)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#184) should be constant
SHIBELON.DEAD (#314) should be constant
SHIBELON.ZERO (#315) should be constant
SHIBELON._totalSupply (#321) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#207-210) should emit an event for:
- minPeriod = _minPeriod (#208)
- minDistribution = _minDistribution (#209)
DividendDistributor.deposit() (#228-231) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares)) (#230)
SHIBELON.setMaxTxPercent_base1000(uint256) (#440-442) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#441)
SHIBELON.setTxLimit(uint256) (#444-446) should emit an event for:
- _maxTxAmount = amount (#445)
SHIBELON.set_sell_multiplier(uint256) (#550-552) should emit an event for:
- sellMultiplier = Multiplier (#551)
SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#649-659) should emit an event for:
- liquidityFee = _liquidityFee (#650)
- reflectionFee = _reflectionFee (#651)
- marketingFee = _marketingFee (#652)
- teamFee = _teamFee (#653)
- devFee = _devFee (#654)
- burnFee = _burnFee (#655)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _teamFee + _burnFee + _devFee (#656)
- feeDenominator = _feeDenominator (#657)
SHIBELON.setSwapBackSettings(bool,uint256) (#669-672) should emit an event for:
- swapThreshold = _amount (#671)
SHIBELON.setTargetLiquidity(uint256,uint256) (#674-677) should emit an event for:
- targetLiquidity = _target (#675)
- targetLiquidityDenominator = _denominator (#676)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.constructor(address)._tokenowner (#202) lacks a zero-check on :
- _owner = _tokenowner (#204)
Auth.transferOwnership(address).adr (#92) lacks a zero-check on :
- owner = adr (#93)
SHIBELON.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#661) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#662)
SHIBELON.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#661) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#663)
SHIBELON.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#661) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#664)
SHIBELON.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#661) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#665)
SHIBELON.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#661) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#666)
Check that the address is not zero.

Additional information: link

DividendDistributor.shouldDistribute(address) (#259-262) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#260-261)
SHIBELON._transferFrom(address,address,uint256) (#449-497) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#469)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#233-257) has costly operations inside a loop:
- currentIndex = 0 (#245)
DividendDistributor.distributeDividend(address) (#264-277) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#269)
DividendDistributor.process(uint256) (#233-257) has costly operations inside a loop:
- currentIndex ++ (#254)
Use a local variable to hold the loop computation result.

Additional information: link

SHIBELON._maxTxAmount (#323) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SHIBELON._maxWalletToken (#324) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SHIBELON.totalFee (#344) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee + devFee
SHIBELON.swapThreshold (#371) 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 (#3) 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 SHIBELON.swapBack() (#565-613):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
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() (#107) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#207) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#207) is not in mixedCase
Variable DividendDistributor._token (#163) is not in mixedCase
Variable DividendDistributor._owner (#164) is not in mixedCase
Variable DividendDistributor.RWRD (#172) is not in mixedCase
Function SHIBELON.setMaxWalletPercent_base1000(uint256) (#437-439) is not in mixedCase
Parameter SHIBELON.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#437) is not in mixedCase
Function SHIBELON.setMaxTxPercent_base1000(uint256) (#440-442) is not in mixedCase
Parameter SHIBELON.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#440) is not in mixedCase
Function SHIBELON.clearStuckBalance_sender(uint256) (#545-548) is not in mixedCase
Function SHIBELON.set_sell_multiplier(uint256) (#550-552) is not in mixedCase
Parameter SHIBELON.set_sell_multiplier(uint256).Multiplier (#550) is not in mixedCase
Parameter SHIBELON.tradingStatus(bool)._status (#555) is not in mixedCase
Parameter SHIBELON.cooldownEnabled(bool,uint8)._status (#560) is not in mixedCase
Parameter SHIBELON.cooldownEnabled(bool,uint8)._interval (#560) is not in mixedCase
Function SHIBELON.enable_blacklist(bool) (#626-628) is not in mixedCase
Parameter SHIBELON.enable_blacklist(bool)._status (#626) is not in mixedCase
Function SHIBELON.manage_blacklist(address[],bool) (#630-634) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#649) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#649) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#649) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#649) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#649) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#649) is not in mixedCase
Parameter SHIBELON.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#649) is not in mixedCase
Parameter SHIBELON.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#661) is not in mixedCase
Parameter SHIBELON.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#661) is not in mixedCase
Parameter SHIBELON.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#661) is not in mixedCase
Parameter SHIBELON.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#661) is not in mixedCase
Parameter SHIBELON.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#661) is not in mixedCase
Parameter SHIBELON.setSwapBackSettings(bool,uint256)._enabled (#669) is not in mixedCase
Parameter SHIBELON.setSwapBackSettings(bool,uint256)._amount (#669) is not in mixedCase
Parameter SHIBELON.setTargetLiquidity(uint256,uint256)._target (#674) is not in mixedCase
Parameter SHIBELON.setTargetLiquidity(uint256,uint256)._denominator (#674) is not in mixedCase
Parameter SHIBELON.setDistributionCriteria(uint256,uint256)._minPeriod (#679) is not in mixedCase
Parameter SHIBELON.setDistributionCriteria(uint256,uint256)._minDistribution (#679) is not in mixedCase
Function SHIBELON.multiTransfer_fixed(address,address[],uint256) (#729-748) is not in mixedCase
Variable SHIBELON.WBNB (#313) is not in mixedCase
Variable SHIBELON.DEAD (#314) is not in mixedCase
Variable SHIBELON.ZERO (#315) is not in mixedCase
Constant SHIBELON._name (#317) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHIBELON._symbol (#318) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SHIBELON._decimals (#319) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SHIBELON._totalSupply (#321) is not in mixedCase
Variable SHIBELON._maxTxAmount (#323) is not in mixedCase
Variable SHIBELON._maxWalletToken (#324) is not in mixedCase
Variable SHIBELON._balances (#326) is not in mixedCase
Variable SHIBELON._allowances (#327) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#264-277):
External calls:
- address(shareholder).transfer(amount) (#271)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#273)
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#274)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#275)
Reentrancy in DividendDistributor.process(uint256) (#233-257):
External calls:
- distributeDividend(shareholders[currentIndex]) (#249)
- address(shareholder).transfer(amount) (#271)
State variables written after the call(s):
- currentIndex ++ (#254)
Reentrancy in DividendDistributor.setShare(address,uint256) (#212-226):
External calls:
- distributeDividend(shareholder) (#214)
- address(shareholder).transfer(amount) (#271)
State variables written after the call(s):
- addShareholder(shareholder) (#218)
- shareholderIndexes[shareholder] = shareholders.length (#299)
- removeShareholder(shareholder) (#220)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#305)
- addShareholder(shareholder) (#218)
- shareholders.push(shareholder) (#300)
- removeShareholder(shareholder) (#220)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#304)
- shareholders.pop() (#306)
- shares[shareholder].amount = amount (#224)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#225)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#223)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Holders:

Contract has 2% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SHIBELON

News for SHIBELON