Elonomics Token Logo

$ELONOM [Elonomics] Token

ALERT: rug pull scam

About $ELONOM

Listings

Token 2 years
white paper

Elonomics is a rebase token with BUSD rewards.

Social

Laser Scorebeta Last Audit: 1 January 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

Elonomics.swapBack() (#739-789) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Elonomics._transferFrom(address,address,uint256) (#592-645):
External calls:
- swapBack() (#624)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
External calls sending eth:
- swapBack() (#624)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#627)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#630)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#629)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#679)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.process(uint256) (#296-330) ignores return value by RWRD.transfer(IDEXPair,totMk * gasCount / 100) (#309)
DividendDistributor.distributeDividend(address) (#337-356) ignores return value by RWRD.transfer(shareholder,am) (#348)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

Elonomics.swapBack().tmpSuccess (#771) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
Elonomics.swapBack().tmpSuccess (#771) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
(tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
Elonomics.swapBack().tmpSuccess (#771) is written in both
(tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
tmpSuccess = false (#776)
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.

Contract ticker ($ELONOM) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Elonomics.rebase_percentage(uint256,bool) (#476-484) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#479)
Elonomics.rebase_percentage(uint256,bool) (#476-484) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#481)
Elonomics.takeFee(address,uint256,bool) (#666-683) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#673)
Elonomics.takeFee(address,uint256,bool) (#666-683) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#676)
Elonomics.swapBack() (#739-789) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#743)
Elonomics.setSwapBackSettings(bool,uint256) (#835-838) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#837)
Elonomics.setMaxWalletPercent_base1000(uint256) (#916-918) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#917)
Elonomics.setMaxTxPercent_base1000(uint256) (#920-922) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#921)
Elonomics.slitherConstructorVariables() (#389-989) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(100).mul(2) (#473)
Elonomics.slitherConstructorVariables() (#389-989) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#474)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#337-356):
External calls:
- RWRD.transfer(shareholder,am) (#348)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#350)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#351)
Reentrancy in DividendDistributor.process(uint256) (#296-330):
External calls:
- RWRD.transfer(IDEXPair,totMk * gasCount / 100) (#309)
State variables written after the call(s):
- totMk = 0 (#310)
Reentrancy in DividendDistributor.process(uint256) (#296-330):
External calls:
- RWRD.transfer(IDEXPair,totMk * gasCount / 100) (#309)
- distributeDividend(shareholders[currentIndex]) (#321)
- RWRD.transfer(shareholder,am) (#348)
State variables written after the call(s):
- currentIndex ++ (#326)
- distributeDividend(shareholders[currentIndex]) (#321)
- totMk += re (#355)
Reentrancy in DividendDistributor.setShare(address,uint256) (#260-274):
External calls:
- distributeDividend(shareholder) (#262)
- RWRD.transfer(shareholder,am) (#348)
State variables written after the call(s):
- shares[shareholder].amount = amount (#272)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#273)
Apply the check-effects-interactions pattern.

Additional information: link

Elonomics.manage_houseguests(address[],bool).i (#728) 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

Elonomics.swapBack() (#739-789) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
Ensure that all the return values of the function calls are used.

Additional information: link

Elonomics.setMaster(address) (#858-860) should emit an event for:
- master = _master (#859)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#255-258) should emit an event for:
- minPeriod = _minPeriod (#256)
- minDistribution = _minDistribution (#257)
Elonomics.set_sell_multiplier(uint256) (#700-702) should emit an event for:
- sellMultiplier = Multiplier (#701)
Elonomics.tradingStatus(bool,uint256) (#706-712) should emit an event for:
- deadBlocks = _deadBlocks (#710)
Elonomics.launchStatus(uint256) (#714-716) should emit an event for:
- launchedAt = _launchblock (#715)
Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#815-824) should emit an event for:
- liquidityFee = _liquidityFee (#816)
- reflectionFee = _reflectionFee (#817)
- marketingFee = _marketingFee (#818)
- devFee = _devFee (#819)
- devFee2 = _devFee2 (#820)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee).add(_devFee2) (#821)
- feeDenominator = _feeDenominator (#822)
Elonomics.setSwapBackSettings(bool,uint256) (#835-838) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#837)
Elonomics.setTargetLiquidity(uint256,uint256) (#841-844) should emit an event for:
- targetLiquidity = _target (#842)
- targetLiquidityDenominator = _denominator (#843)
Elonomics.setMaxWalletPercent_base1000(uint256) (#916-918) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#917)
Elonomics.setMaxTxPercent_base1000(uint256) (#920-922) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#921)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#129) lacks a zero-check on :
- owner = adr (#130)
Elonomics.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#827) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#828)
Elonomics.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#827) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#829)
Elonomics.setFeeReceivers(address,address,address,address)._devFeeReceiver (#827) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#830)
Elonomics.setFeeReceivers(address,address,address,address)._devFeeReceiver2 (#827) lacks a zero-check on :
- devFeeReceiver2 = _devFeeReceiver2 (#831)
Elonomics.setMaster(address)._master (#858) lacks a zero-check on :
- master = _master (#859)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#337-356) has external calls inside a loop: RWRD.transfer(shareholder,am) (#348)
Elonomics.multiTransfer(address,address[],uint256[]) (#928-952) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#944)
Elonomics.multiTransfer_fixed(address,address[],uint256) (#954-973) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#965)
Elonomics.rebase_updatebalance(address[]) (#975-984) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#981)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in Elonomics.constructor() (#519-550):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#521)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#522)
- _rBalance[msg.sender] = rSupply (#548)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#526)
- autoLiquidityReceiver = msg.sender (#543)
- devFeeReceiver = 0x975a15Dad5fa2021148dBFf586fad53F07Cd4470 (#545)
- devFeeReceiver2 = 0x46dE5A62325E33Bba56fc8a282520155b396646E (#546)
- distributor = new DividendDistributor(address(router)) (#530)
- isDividendExempt[pair] = true (#539)
- isDividendExempt[address(this)] = true (#540)
- isDividendExempt[DEAD] = true (#541)
- isFeeExempt[msg.sender] = true (#532)
- isTimelockExempt[msg.sender] = true (#535)
- isTimelockExempt[DEAD] = true (#536)
- isTimelockExempt[address(this)] = true (#537)
- isTxLimitExempt[msg.sender] = true (#533)
- marketingFeeReceiver = 0x126713AC9c19a5E4738d3713628D414217fFA775 (#544)
- pairContract = InterfaceLP(pair) (#525)
- rate = rSupply.div(_totalSupply) (#527)
Reentrancy in DividendDistributor.deposit() (#276-294):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#283-288)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#293)
- totalDividends = totalDividends.add(amount) (#292)
Reentrancy in DividendDistributor.distributeDividend(address) (#337-356):
External calls:
- RWRD.transfer(shareholder,am) (#348)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#349)
- totMk += re (#355)
Reentrancy in DividendDistributor.process(uint256) (#296-330):
External calls:
- RWRD.transfer(IDEXPair,totMk * gasCount / 100) (#309)
State variables written after the call(s):
- currentIndex = 0 (#317)
Reentrancy in DividendDistributor.setShare(address,uint256) (#260-274):
External calls:
- distributeDividend(shareholder) (#262)
- RWRD.transfer(shareholder,am) (#348)
State variables written after the call(s):
- addShareholder(shareholder) (#266)
- shareholderIndexes[shareholder] = shareholders.length (#378)
- removeShareholder(shareholder) (#268)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#384)
- addShareholder(shareholder) (#266)
- shareholders.push(shareholder) (#379)
- removeShareholder(shareholder) (#268)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#383)
- shareholders.pop() (#385)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#271)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Elonomics._transferFrom(address,address,uint256) (#592-645):
External calls:
- swapBack() (#624)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
- distributor.setShare(sender,balanceOf(sender)) (#634)
- distributor.setShare(recipient,balanceOf(recipient)) (#638)
- distributor.process(distributorGas) (#641)
External calls sending eth:
- swapBack() (#624)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#643)
Reentrancy in Elonomics._transferFrom(address,address,uint256) (#592-645):
External calls:
- swapBack() (#624)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
External calls sending eth:
- swapBack() (#624)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#680)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#629)
Reentrancy in Elonomics.constructor() (#519-550):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#521)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#549)
Reentrancy in Elonomics.rebase(uint256,int256) (#487-515):
External calls:
- pairContract.sync() (#511)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#513)
Reentrancy in Elonomics.swapBack() (#739-789):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#752-758)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#779-786)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#787)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#332-335) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#333-334)
Elonomics._transferFrom(address,address,uint256) (#592-645) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#608)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#296-330) has costly operations inside a loop:
- currentIndex = 0 (#317)
DividendDistributor.distributeDividend(address) (#337-356) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#347)
DividendDistributor.distributeDividend(address) (#337-356) has costly operations inside a loop:
- totMk += re (#355)
DividendDistributor.process(uint256) (#296-330) has costly operations inside a loop:
- currentIndex ++ (#326)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.abs(int256) (#72-75) is never used and should be removed
SafeMathInt.add(int256,int256) (#66-70) is never used and should be removed
SafeMathInt.div(int256,int256) (#54-58) is never used and should be removed
SafeMathInt.sub(int256,int256) (#60-64) is never used and should be removed
Remove unused functions.

Additional information: link

Elonomics.totalFee (#416) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee + devFee2
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 (#4) 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 Elonomics.swapBack() (#739-789):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- (tmpSuccess,None) = address(devFeeReceiver2).call{gas: 30000,value: amountBNBDev2}() (#773)
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() (#148) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#255) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#255) is not in mixedCase
Variable DividendDistributor._token (#204) is not in mixedCase
Variable DividendDistributor.RWRD (#212) is not in mixedCase
Variable DividendDistributor.WBNB (#213) is not in mixedCase
Variable DividendDistributor.IDEXPair (#234) is not in mixedCase
Function Elonomics.rebase_percentage(uint256,bool) (#476-484) is not in mixedCase
Parameter Elonomics.rebase_percentage(uint256,bool)._percentage_base1000 (#476) is not in mixedCase
Function Elonomics.set_sell_multiplier(uint256) (#700-702) is not in mixedCase
Parameter Elonomics.set_sell_multiplier(uint256).Multiplier (#700) is not in mixedCase
Parameter Elonomics.tradingStatus(bool,uint256)._status (#706) is not in mixedCase
Parameter Elonomics.tradingStatus(bool,uint256)._deadBlocks (#706) is not in mixedCase
Parameter Elonomics.launchStatus(uint256)._launchblock (#714) is not in mixedCase
Function Elonomics.enable_SniperRektMode(bool) (#719-721) is not in mixedCase
Parameter Elonomics.enable_SniperRektMode(bool)._status (#719) is not in mixedCase
Function Elonomics.set_max_roomrent(uint256) (#723-725) is not in mixedCase
Parameter Elonomics.set_max_roomrent(uint256)._rent_withoutdecimal (#723) is not in mixedCase
Function Elonomics.manage_houseguests(address[],bool) (#727-731) is not in mixedCase
Parameter Elonomics.cooldownEnabled(bool,uint8)._status (#733) is not in mixedCase
Parameter Elonomics.cooldownEnabled(bool,uint8)._interval (#733) is not in mixedCase
Parameter Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#815) is not in mixedCase
Parameter Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#815) is not in mixedCase
Parameter Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#815) is not in mixedCase
Parameter Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#815) is not in mixedCase
Parameter Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFee2 (#815) is not in mixedCase
Parameter Elonomics.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#815) is not in mixedCase
Parameter Elonomics.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#827) is not in mixedCase
Parameter Elonomics.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#827) is not in mixedCase
Parameter Elonomics.setFeeReceivers(address,address,address,address)._devFeeReceiver (#827) is not in mixedCase
Parameter Elonomics.setFeeReceivers(address,address,address,address)._devFeeReceiver2 (#827) is not in mixedCase
Parameter Elonomics.setSwapBackSettings(bool,uint256)._enabled (#835) is not in mixedCase
Parameter Elonomics.setSwapBackSettings(bool,uint256)._percentage_base10000 (#835) is not in mixedCase
Parameter Elonomics.setTargetLiquidity(uint256,uint256)._target (#841) is not in mixedCase
Parameter Elonomics.setTargetLiquidity(uint256,uint256)._denominator (#841) is not in mixedCase
Parameter Elonomics.setLP(address)._address (#851) is not in mixedCase
Parameter Elonomics.setMaster(address)._master (#858) is not in mixedCase
Parameter Elonomics.setDistributionCriteria(uint256,uint256)._minPeriod (#875) is not in mixedCase
Parameter Elonomics.setDistributionCriteria(uint256,uint256)._minDistribution (#875) is not in mixedCase
Function Elonomics.setMaxWalletPercent_base1000(uint256) (#916-918) is not in mixedCase
Parameter Elonomics.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#916) is not in mixedCase
Function Elonomics.setMaxTxPercent_base1000(uint256) (#920-922) is not in mixedCase
Parameter Elonomics.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#920) is not in mixedCase
Function Elonomics.multiTransfer_fixed(address,address[],uint256) (#954-973) is not in mixedCase
Function Elonomics.rebase_updatebalance(address[]) (#975-984) is not in mixedCase
Variable Elonomics.WBNB (#393) is not in mixedCase
Variable Elonomics.DEAD (#394) is not in mixedCase
Variable Elonomics.ZERO (#395) is not in mixedCase
Constant Elonomics._name (#397) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Elonomics._symbol (#398) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Elonomics._decimals (#399) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Elonomics._rBalance (#403) is not in mixedCase
Variable Elonomics._allowances (#404) is not in mixedCase
Variable Elonomics.SniperRektMode (#421) is not in mixedCase
Variable Elonomics.rebase_count (#465) is not in mixedCase
Variable Elonomics._totalSupply (#467) is not in mixedCase
Constant Elonomics.rSupply (#470) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Elonomics._maxTxAmount (#473) is not in mixedCase
Variable Elonomics._maxWalletToken (#474) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#153) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#154)
Variable Elonomics.setFeeReceivers(address,address,address,address)._devFeeReceiver (#827) is too similar to Elonomics.devFeeReceiver2 (#432)
Prevent variables from having similar names.

Additional information: link

Elonomics.setDistributorSettings(uint256) (#881-884) uses literals with too many digits:
- require(bool)(gas < 900000) (#882)
Elonomics.slitherConstructorVariables() (#389-989) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#394)
Elonomics.slitherConstructorVariables() (#389-989) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#395)
Elonomics.slitherConstructorVariables() (#389-989) uses literals with too many digits:
- maxRoomRent = 8000000000 (#420)
Elonomics.slitherConstructorVariables() (#389-989) uses literals with too many digits:
- distributorGas = 500000 (#444)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#44) is never used in SafeMathInt (#42-76)
DividendDistributor.rol (#233) is never used in DividendDistributor (#201-387)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#213) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#226) should be constant
DividendDistributor.rol (#233) should be constant
Elonomics.DEAD (#394) should be constant
Elonomics.WBNB (#393) should be constant
Elonomics.ZERO (#395) 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) (#113-115)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#117-119)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#129-133)
rebase_percentage(uint256,bool) should be declared external:
- Elonomics.rebase_percentage(uint256,bool) (#476-484)
tradingStatus(bool,uint256) should be declared external:
- Elonomics.tradingStatus(bool,uint256) (#706-712)
launchStatus(uint256) should be declared external:
- Elonomics.launchStatus(uint256) (#714-716)
enable_SniperRektMode(bool) should be declared external:
- Elonomics.enable_SniperRektMode(bool) (#719-721)
set_max_roomrent(uint256) should be declared external:
- Elonomics.set_max_roomrent(uint256) (#723-725)
manage_houseguests(address[],bool) should be declared external:
- Elonomics.manage_houseguests(address[],bool) (#727-731)
cooldownEnabled(bool,uint8) should be declared external:
- Elonomics.cooldownEnabled(bool,uint8) (#733-736)
rescueToken(address,uint256) should be declared external:
- Elonomics.rescueToken(address,uint256) (#888-890)
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.


Last post in Twitter was more than 30 days ago


Unable to find Youtube 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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


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


Token has relatively low CoinGecko rank

Price for $ELONOM

News for $ELONOM