ILUS Coin Token Logo

ILUS [ILUS Coin] Token

About ILUS

Listings

Token 3 years
CoinMarketCap 3 years
white paper

ILUS coin is an innovative token that works 24/7 for the coin holder - earning rewards around the clock by providing lifesaving technology and equipment to people who really need it through lease financing.

Social

Laser Scorebeta Last Audit: 28 February 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...)

StandardToken.withdrawStakedTokens(uint256) (#588-602) compares to a boolean constant:
-require(bool,string)(_TokenTransactionstatus[stakingId] != true,Either tokens are already withdrawn or blocked by admin) (#590)
StandardToken.submitVote(uint256,bool) (#681-711) compares to a boolean constant:
-require(bool,string)(voted[_proposalID][msg.sender] == false,Already voted) (#682)
StandardToken.submitVote(uint256,bool) (#681-711) compares to a boolean constant:
-vote == true (#698)
StandardToken.failSafe() (#399-402) compares to a boolean constant:
-require(bool,string)(_stopped == false,Fail Safe check failed) (#400)
Remove the equality to the boolean constant.

Additional information: link

StandardToken.getRewardsDetailsOfUserById(uint256) (#548-550) performs a multiplication on the result of a division:
-(_usersTokens[id].mul(_rewardPercentage).mul((block.timestamp - _stakingStartTime[id]) / 86400)).div(36500) (#549)
Consider ordering multiplication before division.

Additional information: link

StandardToken.setRewardPercentage(uint256) (#441-445) should emit an event for:
- _rewardPercentage = rewardsPercentage (#443)
StandardToken.setWithdrawLimit(uint256) (#556-560) should emit an event for:
- _withdrawLimit = withdrawLimit (#558)
Emit an event for critical parameter changes.

Additional information: link

StandardToken.constructor(string,string,uint8,address,address).Owner (#106) lacks a zero-check on :
- _owner = Owner (#111)
StandardToken.constructor(string,string,uint8,address,address).tokenPoolAddress (#106) lacks a zero-check on :
- _tokenPoolAddress = tokenPoolAddress (#112)
StandardToken.transferOwnership(address).newOwner (#149) lacks a zero-check on :
- _owner = newOwner (#150)
Check that the address is not zero.

Additional information: link

StandardToken._transfer(address,address,uint256) (#242-249) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(value > 0,Invalid Amount) (#245)
StandardToken.withdrawStakedTokens(uint256) (#588-602) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(balanceOf(_tokenPoolAddress) >= _usersTokens[stakingId],Pool is dry, can not perform transaction) (#591)
- block.timestamp > _stakingStartTime[_stakingCount].add(_withdrawLimit) (#593)
StandardToken.submitVote(uint256,bool) (#681-711) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(p.votingDeadline > block.timestamp,Voting time over) (#684)
StandardToken.getProposalStatus(uint256) (#717-725) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(proposals[_proposalID].votingDeadline < block.timestamp,Voting time is not over) (#718)
- proposals[_proposalID].inFavour > proposals[_proposalID].inAgainst (#719)
Avoid relying on block.timestamp.

Additional information: link

StandardToken.airdropByOwner(address[],uint256[]) (#300-308) has costly operations inside a loop:
- airdropcount = airdropcount + 1 (#305)
StandardToken.airdropByOwnerForMMM(address[],uint256[]) (#315-326) has costly operations inside a loop:
- tokensForMMM = remainingTokens (#322)
StandardToken.airdropByOwnerForMMM(address[],uint256[]) (#315-326) has costly operations inside a loop:
- airdropcountOfMMM = airdropcountOfMMM + 1 (#323)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.mod(uint256,uint256) (#62-65) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter StandardToken.airdropByOwner(address[],uint256[])._addresses (#300) is not in mixedCase
Parameter StandardToken.airdropByOwner(address[],uint256[])._amount (#300) is not in mixedCase
Parameter StandardToken.airdropByOwnerForMMM(address[],uint256[])._addresses (#315) is not in mixedCase
Parameter StandardToken.airdropByOwnerForMMM(address[],uint256[])._amount (#315) is not in mixedCase
Parameter StandardToken.burn(uint256)._value (#345) is not in mixedCase
Parameter StandardToken.mint(uint256)._value (#353) is not in mixedCase
Parameter StandardToken.blacklistAddresses(bool,address)._account (#643) is not in mixedCase
Parameter StandardToken.addProposal(address,uint256).Submitter (#664) is not in mixedCase
Parameter StandardToken.submitVote(uint256,bool)._proposalID (#681) is not in mixedCase
Parameter StandardToken.getProposalStatus(uint256)._proposalID (#717) is not in mixedCase
Variable StandardToken._TokenTransactionstatus (#381) is not in mixedCase
Variable StandardToken._withdrawLimit (#393) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable StandardToken._rewardPercentage (#387) is too similar to StandardToken.setRewardPercentage(uint256).rewardsPercentage (#441)
Prevent variables from having similar names.

Additional information: link

StandardToken.slitherConstructorVariables() (#88-727) uses literals with too many digits:
- _totalSupply = 100000000000000000000000000 (#96)
StandardToken.slitherConstructorVariables() (#88-727) uses literals with too many digits:
- tokensForMMM = 25150000000000000000000000 (#101)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

getowner() should be declared external:
- StandardToken.getowner() (#125-127)
transferOwnership(address) should be declared external:
- StandardToken.transferOwnership(address) (#149-152)
name() should be declared external:
- StandardToken.name() (#164-166)
symbol() should be declared external:
- StandardToken.symbol() (#171-173)
decimals() should be declared external:
- StandardToken.decimals() (#178-180)
allowance(address,address) should be declared external:
- StandardToken.allowance(address,address) (#204-206)
transfer(address,uint256) should be declared external:
- StandardToken.transfer(address,uint256) (#219-222)
transferFrom(address,address,uint256) should be declared external:
- StandardToken.transferFrom(address,address,uint256) (#230-234)
approve(address,uint256) should be declared external:
- StandardToken.approve(address,uint256) (#256-259)
increaseAllowance(address,uint256) should be declared external:
- StandardToken.increaseAllowance(address,uint256) (#280-283)
decreaseAllowance(address,uint256) should be declared external:
- StandardToken.decreaseAllowance(address,uint256) (#290-293)
airdropByOwner(address[],uint256[]) should be declared external:
- StandardToken.airdropByOwner(address[],uint256[]) (#300-308)
airdropByOwnerForMMM(address[],uint256[]) should be declared external:
- StandardToken.airdropByOwnerForMMM(address[],uint256[]) (#315-326)
burn(uint256) should be declared external:
- StandardToken.burn(uint256) (#345-347)
mint(uint256) should be declared external:
- StandardToken.mint(uint256) (#353-357)
toggleContractActive() should be declared external:
- StandardToken.toggleContractActive() (#413-415)
setTokenPoolAddress(address) should be declared external:
- StandardToken.setTokenPoolAddress(address) (#422-426)
getTokenpoolAddress() should be declared external:
- StandardToken.getTokenpoolAddress() (#432-434)
setRewardPercentage(uint256) should be declared external:
- StandardToken.setRewardPercentage(uint256) (#441-445)
getRewardPercentage() should be declared external:
- StandardToken.getRewardPercentage() (#450-452)
getContractETHBalance() should be declared external:
- StandardToken.getContractETHBalance() (#467-469)
getFinalWithdrawlStake(uint256) should be declared external:
- StandardToken.getFinalWithdrawlStake(uint256) (#490-492)
getStakingAddressById(uint256) should be declared external:
- StandardToken.getStakingAddressById(uint256) (#498-501)
getStakingStartTimeById(uint256) should be declared external:
- StandardToken.getStakingStartTimeById(uint256) (#507-510)
getStakingTokenById(uint256) should be declared external:
- StandardToken.getStakingTokenById(uint256) (#516-519)
getActiveStakesById(uint256) should be declared external:
- StandardToken.getActiveStakesById(uint256) (#525-527)
getTokenLockstatus(uint256) should be declared external:
- StandardToken.getTokenLockstatus(uint256) (#533-535)
getStakingCount() should be declared external:
- StandardToken.getStakingCount() (#540-542)
setWithdrawLimit(uint256) should be declared external:
- StandardToken.setWithdrawLimit(uint256) (#556-560)
getWithdrawLimit() should be declared external:
- StandardToken.getWithdrawLimit() (#565-567)
performStaking(uint256) should be declared external:
- StandardToken.performStaking(uint256) (#573-582)
withdrawStakedTokens(uint256) should be declared external:
- StandardToken.withdrawStakedTokens(uint256) (#588-602)
submitProposal(uint256) should be declared external:
- StandardToken.submitProposal(uint256) (#651-656)
submitVote(uint256,bool) should be declared external:
- StandardToken.submitVote(uint256,bool) (#681-711)
getProposalStatus(uint256) should be declared external:
- StandardToken.getProposalStatus(uint256) (#717-725)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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 30d PancakeSwap volume is low.


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


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account link seems to be invalid


Unable to find Discord account


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

Additional information: link


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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has a considerable age, but social accounts / website are missing or have few users


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for ILUS