Solium Rise Token Logo

SOLAR [Solium Rise] Token

About SOLAR

Listings

Token 22 months
CoinGecko 20 months
CoinMarketCap 20 months
white paper

Solium Rise is beyond a reward token: Although you’ll get SOL rewards for holding $SOLAR, there are even more rewards to be earned when SOLARDEX Launches.

$SOLAR will be the native token and the central part of our ecosystem, It will be used to access a wide range of products and services starting with the SOLARDEX.

$SOLAR is an intelligent token programmed to take care of you! Starting from providing watertight investment security to assuring that every investor gets equal access to token, you get rewarded and everything works on autopilot.

$SOLAR will be used to access premium tools on the SOLARDEX

Social

Laser Scorebeta Last Audit: 24 April 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.


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

DividendDistributor.distributeDividend(address) (#282-293) ignores return value by RWRD.transfer(shareholder,amount) (#288)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

SOLIUMRISE.swapBack() (#579-627) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SOLIUMRISE._transferFrom(address,address,uint256) (#463-511):
External calls:
- swapBack() (#490)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#590-596)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
External calls sending eth:
- swapBack() (#490)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#493)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#496)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#495)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#536)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#537)
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.


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.


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.

SOLIUMRISE.swapBack().tmpSuccess (#609) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
SOLIUMRISE.swapBack().tmpSuccess (#609) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
(tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
SOLIUMRISE.swapBack().tmpSuccess (#609) is written in both
(tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
tmpSuccess = false (#614)
Fix or remove the writes.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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

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

Additional information: link

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

Low level call in SOLIUMRISE.swapBack() (#579-627):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in SOLIUMRISE._transferFrom(address,address,uint256) (#463-511):
External calls:
- swapBack() (#490)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#590-596)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
- distributor.setShare(sender,_balances[sender]) (#500)
- distributor.setShare(recipient,_balances[recipient]) (#504)
- distributor.process(distributorGas) (#507)
External calls sending eth:
- swapBack() (#490)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#509)
Reentrancy in SOLIUMRISE._transferFrom(address,address,uint256) (#463-511):
External calls:
- swapBack() (#490)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#590-596)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
External calls sending eth:
- swapBack() (#490)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#538)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#495)
- Transfer(sender,burnFeeReceiver,burnTokens) (#541)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#495)
Reentrancy in SOLIUMRISE.constructor() (#391-417):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#393)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#416)
Reentrancy in SOLIUMRISE.swapBack() (#579-627):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#590-596)
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#608)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#609)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#610)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#625)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#282-293):
External calls:
- RWRD.transfer(shareholder,amount) (#288)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#290)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#291)
Reentrancy in DividendDistributor.process(uint256) (#251-275):
External calls:
- distributeDividend(shareholders[currentIndex]) (#267)
- RWRD.transfer(shareholder,amount) (#288)
State variables written after the call(s):
- currentIndex ++ (#272)
Reentrancy in DividendDistributor.setShare(address,uint256) (#215-229):
External calls:
- distributeDividend(shareholder) (#217)
- RWRD.transfer(shareholder,amount) (#288)
State variables written after the call(s):
- shares[shareholder].amount = amount (#227)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#228)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#210-213) should emit an event for:
- minPeriod = _minPeriod (#211)
- minDistribution = _minDistribution (#212)
SOLIUMRISE.setMaxTxPercent_base1000(uint256) (#454-456) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#455)
SOLIUMRISE.setTxLimit(uint256) (#458-460) should emit an event for:
- _maxTxAmount = amount (#459)
SOLIUMRISE.set_sell_multiplier(uint256) (#564-566) should emit an event for:
- sellMultiplier = Multiplier (#565)
SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#663-673) should emit an event for:
- liquidityFee = _liquidityFee (#664)
- reflectionFee = _reflectionFee (#665)
- marketingFee = _marketingFee (#666)
- teamFee = _teamFee (#667)
- charityFee = _charityFee (#668)
- burnFee = _burnFee (#669)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _teamFee + _burnFee + _charityFee (#670)
- feeDenominator = _feeDenominator (#671)
SOLIUMRISE.setSwapBackSettings(bool,uint256) (#683-686) should emit an event for:
- swapThreshold = _amount (#685)
SOLIUMRISE.setTargetLiquidity(uint256,uint256) (#688-691) should emit an event for:
- targetLiquidity = _target (#689)
- targetLiquidityDenominator = _denominator (#690)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#92) lacks a zero-check on :
- owner = adr (#93)
SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#675) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#676)
SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#675) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#677)
SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#675) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#678)
SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#675) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#679)
SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._charityFeeReceiver (#675) lacks a zero-check on :
- charityFeeReceiver = _charityFeeReceiver (#680)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#282-293) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#288)
SOLIUMRISE.multiTransfer(address,address[],uint256[]) (#717-741) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#733)
SOLIUMRISE.multiTransfer_fixed(address,address[],uint256) (#743-762) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#754)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in SOLIUMRISE.constructor() (#391-417):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#393)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#394)
- _balances[msg.sender] = _totalSupply (#415)
- autoLiquidityReceiver = DEAD (#409)
- burnFeeReceiver = DEAD (#413)
- charityFeeReceiver = 0x064916e98d252F0DFD37De0A38d2d8f68D8E4b7c (#412)
- distributor = new DividendDistributor(0xB0EeB0632bAB15F120735e5838908378936bd484) (#396)
- isDividendExempt[pair] = true (#405)
- isDividendExempt[address(this)] = true (#406)
- isDividendExempt[DEAD] = true (#407)
- isFeeExempt[msg.sender] = true (#398)
- isTimelockExempt[msg.sender] = true (#401)
- isTimelockExempt[DEAD] = true (#402)
- isTimelockExempt[address(this)] = true (#403)
- isTxLimitExempt[msg.sender] = true (#399)
- marketingFeeReceiver = 0xC11eFB4e8cb20A6029b23411a53d57F8e1cA8B5A (#410)
- teamFeeReceiver = msg.sender (#411)
Reentrancy in DividendDistributor.deposit() (#231-249):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#238-243)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#248)
- totalDividends = totalDividends.add(amount) (#247)
Reentrancy in DividendDistributor.distributeDividend(address) (#282-293):
External calls:
- RWRD.transfer(shareholder,amount) (#288)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#289)
Reentrancy in DividendDistributor.setShare(address,uint256) (#215-229):
External calls:
- distributeDividend(shareholder) (#217)
- RWRD.transfer(shareholder,amount) (#288)
State variables written after the call(s):
- addShareholder(shareholder) (#221)
- shareholderIndexes[shareholder] = shareholders.length (#315)
- removeShareholder(shareholder) (#223)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#321)
- addShareholder(shareholder) (#221)
- shareholders.push(shareholder) (#316)
- removeShareholder(shareholder) (#223)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#320)
- shareholders.pop() (#322)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#226)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#277-280) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#278-279)
SOLIUMRISE._transferFrom(address,address,uint256) (#463-511) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#483)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#251-275) has costly operations inside a loop:
- currentIndex = 0 (#263)
DividendDistributor.distributeDividend(address) (#282-293) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#287)
DividendDistributor.process(uint256) (#251-275) has costly operations inside a loop:
- currentIndex ++ (#272)
Use a local variable to hold the loop computation result.

Additional information: link

SOLIUMRISE._maxTxAmount (#339) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SOLIUMRISE._maxWalletToken (#340) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SOLIUMRISE.totalFee (#360) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee + charityFee
SOLIUMRISE.swapThreshold (#387) 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

Function IDEXRouter.WETH() (#107) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#210) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#210) is not in mixedCase
Variable DividendDistributor._token (#163) is not in mixedCase
Variable DividendDistributor.RWRD (#171) is not in mixedCase
Variable DividendDistributor.WBNB (#172) is not in mixedCase
Function SOLIUMRISE.setMaxWalletPercent_base1000(uint256) (#451-453) is not in mixedCase
Parameter SOLIUMRISE.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#451) is not in mixedCase
Function SOLIUMRISE.setMaxTxPercent_base1000(uint256) (#454-456) is not in mixedCase
Parameter SOLIUMRISE.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#454) is not in mixedCase
Function SOLIUMRISE.clearStuckBalance_sender(uint256) (#559-562) is not in mixedCase
Function SOLIUMRISE.set_sell_multiplier(uint256) (#564-566) is not in mixedCase
Parameter SOLIUMRISE.set_sell_multiplier(uint256).Multiplier (#564) is not in mixedCase
Parameter SOLIUMRISE.tradingStatus(bool)._status (#569) is not in mixedCase
Parameter SOLIUMRISE.cooldownEnabled(bool,uint8)._status (#574) is not in mixedCase
Parameter SOLIUMRISE.cooldownEnabled(bool,uint8)._interval (#574) is not in mixedCase
Function SOLIUMRISE.enable_blacklist(bool) (#640-642) is not in mixedCase
Parameter SOLIUMRISE.enable_blacklist(bool)._status (#640) is not in mixedCase
Function SOLIUMRISE.manage_blacklist(address[],bool) (#644-648) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#663) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#663) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#663) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#663) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#663) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._charityFee (#663) is not in mixedCase
Parameter SOLIUMRISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#663) is not in mixedCase
Parameter SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#675) is not in mixedCase
Parameter SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#675) is not in mixedCase
Parameter SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#675) is not in mixedCase
Parameter SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#675) is not in mixedCase
Parameter SOLIUMRISE.setFeeReceivers(address,address,address,address,address)._charityFeeReceiver (#675) is not in mixedCase
Parameter SOLIUMRISE.setSwapBackSettings(bool,uint256)._enabled (#683) is not in mixedCase
Parameter SOLIUMRISE.setSwapBackSettings(bool,uint256)._amount (#683) is not in mixedCase
Parameter SOLIUMRISE.setTargetLiquidity(uint256,uint256)._target (#688) is not in mixedCase
Parameter SOLIUMRISE.setTargetLiquidity(uint256,uint256)._denominator (#688) is not in mixedCase
Parameter SOLIUMRISE.setDistributionCriteria(uint256,uint256)._minPeriod (#693) is not in mixedCase
Parameter SOLIUMRISE.setDistributionCriteria(uint256,uint256)._minDistribution (#693) is not in mixedCase
Function SOLIUMRISE.multiTransfer_fixed(address,address[],uint256) (#743-762) is not in mixedCase
Variable SOLIUMRISE.WBNB (#329) is not in mixedCase
Variable SOLIUMRISE.DEAD (#330) is not in mixedCase
Variable SOLIUMRISE.ZERO (#331) is not in mixedCase
Constant SOLIUMRISE._name (#333) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SOLIUMRISE._symbol (#334) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SOLIUMRISE._decimals (#335) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SOLIUMRISE._totalSupply (#337) is not in mixedCase
Variable SOLIUMRISE._maxTxAmount (#339) is not in mixedCase
Variable SOLIUMRISE._maxWalletToken (#340) is not in mixedCase
Variable SOLIUMRISE._balances (#342) is not in mixedCase
Variable SOLIUMRISE._allowances (#343) is not in mixedCase
Follow the Solidity naming convention.

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

SOLIUMRISE.slitherConstructorVariables() (#326-766) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#330)
SOLIUMRISE.slitherConstructorVariables() (#326-766) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#331)
SOLIUMRISE.slitherConstructorVariables() (#326-766) uses literals with too many digits:
- distributorGas = 500000 (#380)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.WBNB (#172) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#185) should be constant
SOLIUMRISE.DEAD (#330) should be constant
SOLIUMRISE.WBNB (#329) should be constant
SOLIUMRISE.ZERO (#331) should be constant
SOLIUMRISE._totalSupply (#337) 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) (#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:
- SOLIUMRISE.tradingStatus(bool) (#569-571)
cooldownEnabled(bool,uint8) should be declared external:
- SOLIUMRISE.cooldownEnabled(bool,uint8) (#574-577)
enable_blacklist(bool) should be declared external:
- SOLIUMRISE.enable_blacklist(bool) (#640-642)
manage_blacklist(address[],bool) should be declared external:
- SOLIUMRISE.manage_blacklist(address[],bool) (#644-648)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 7% buy tax and 14% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to verify token contract address on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token has no active CoinMarketCap listing / rank


Alexa traffic rank is relatively low

Additional information: link


Young tokens have high risks of price dump / death


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


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 SOLAR

News for SOLAR