LiL Moon Rockets: NYR token Token Logo

NYR [LiL Moon Rockets: NYR] Token

About NYR

Listings

Not Found
Token 5 years

LiL Moon Rockets is a digital vector pop art NFT collection consisting of 13337 unique art pieces, stored on the Binance SmartChain as NFTs. The LiL Moon Rockets collection was curated out of 272,160,000 possible combinations using a unique proprietary random number generation algorithm.

Social

Laser Scorebeta Last Audit: 18 January 2022

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

Anti-Scam

Links


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

NameYourRocket.accumulated(uint256) (contracts/NameYourRocket.sol#121-141) uses a dangerous strict equality:
- lastClaimed == emissionStart (contracts/NameYourRocket.sol#135)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Contract name (LiL Moon Rockets: NYR token) 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.

NameYourRocket.constructor(string,string,uint256).name (contracts/NameYourRocket.sol#53) shadows:
- NameYourRocket.name() (contracts/NameYourRocket.sol#64-66) (function)
NameYourRocket.constructor(string,string,uint256).symbol (contracts/NameYourRocket.sol#53) shadows:
- NameYourRocket.symbol() (contracts/NameYourRocket.sol#72-74) (function)
Rename the local variables that shadow another component.

Additional information: link

NameYourRocket.setRocketsAddress(address).rocketsAddress (contracts/NameYourRocket.sol#146) lacks a zero-check on :
- _rocketsAddress = rocketsAddress (contracts/NameYourRocket.sol#149)
Check that the address is not zero.

Additional information: link

NameYourRocket.claim(uint256[]) (contracts/NameYourRocket.sol#155-180) has external calls inside a loop: require(bool,string)(tokenIndices[i] < IRockets(_rocketsAddress).totalSupply(),NFT at index has not been minted yet) (contracts/NameYourRocket.sol#161)
NameYourRocket.claim(uint256[]) (contracts/NameYourRocket.sol#155-180) has external calls inside a loop: require(bool,string)(IRockets(_rocketsAddress).ownerOf(tokenIndex) == msg.sender,Sender is not the owner) (contracts/NameYourRocket.sol#168)
NameYourRocket.accumulated(uint256) (contracts/NameYourRocket.sol#121-141) has external calls inside a loop: require(bool,string)(IRockets(_rocketsAddress).ownerOf(tokenIndex) != address(0),Owner cannot be 0 address) (contracts/NameYourRocket.sol#123)
NameYourRocket.accumulated(uint256) (contracts/NameYourRocket.sol#121-141) has external calls inside a loop: require(bool,string)(tokenIndex < IRockets(_rocketsAddress).totalSupply(),NFT at index has not been minted yet) (contracts/NameYourRocket.sol#124)
NameYourRocket.lastClaim(uint256) (contracts/NameYourRocket.sol#110-116) has external calls inside a loop: require(bool,string)(IRockets(_rocketsAddress).ownerOf(tokenIndex) != address(0),Owner cannot be 0 address) (contracts/NameYourRocket.sol#111)
NameYourRocket.lastClaim(uint256) (contracts/NameYourRocket.sol#110-116) has external calls inside a loop: require(bool,string)(tokenIndex < IRockets(_rocketsAddress).totalSupply(),NFT at index has not been minted yet) (contracts/NameYourRocket.sol#112)
NameYourRocket.accumulated(uint256) (contracts/NameYourRocket.sol#121-141) has external calls inside a loop: IRockets(_rocketsAddress).isMintedBeforeReveal(tokenIndex) == true (contracts/NameYourRocket.sol#136)
Favor pull over push strategy for external calls.

Additional information: link

NameYourRocket.lastClaim(uint256) (contracts/NameYourRocket.sol#110-116) uses timestamp for comparisons
Dangerous comparisons:
- uint256(_lastClaim[tokenIndex]) != 0 (contracts/NameYourRocket.sol#114)
NameYourRocket.accumulated(uint256) (contracts/NameYourRocket.sol#121-141) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > emissionStart,Emission has not started yet) (contracts/NameYourRocket.sol#122)
- lastClaimed >= emissionEnd (contracts/NameYourRocket.sol#129)
- lastClaimed == emissionStart (contracts/NameYourRocket.sol#135)
- block.timestamp < emissionEnd (contracts/NameYourRocket.sol#131)
NameYourRocket.claim(uint256[]) (contracts/NameYourRocket.sol#155-180) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > emissionStart,Emission has not started yet) (contracts/NameYourRocket.sol#156)
- claimQty != 0 (contracts/NameYourRocket.sol#171)
- require(bool,string)(totalClaimQty != 0,No accumulated NYR) (contracts/NameYourRocket.sol#177)
Avoid relying on block.timestamp.

Additional information: link

NameYourRocket.accumulated(uint256) (contracts/NameYourRocket.sol#121-141) compares to a boolean constant:
-IRockets(_rocketsAddress).isMintedBeforeReveal(tokenIndex) == true (contracts/NameYourRocket.sol#136)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (contracts/utils/Context.sol#16-19) is never used and should be removed
NameYourRocket._setupDecimals(uint8) (contracts/NameYourRocket.sol#378-380) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/utils/SafeMath.sol#137-139) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/utils/SafeMath.sol#153-156) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.7.0 (contracts/ERC165/IERC165.sol#1) allows old versions
Pragma version^0.7.0 (contracts/IERC20.sol#1) allows old versions
Pragma version^0.7.0 (contracts/NameYourRocket.sol#1) allows old versions
Pragma version^0.7.0 (contracts/utils/SafeMath.sol#1) 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

Variable NameYourRocket.SECONDS_IN_A_DAY (contracts/NameYourRocket.sol#18) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/utils/Context.sol#17)" inContext (contracts/utils/Context.sol#11-20)
Remove redundant statements if they congest code but offer no value.

Additional information: link

NameYourRocket.SECONDS_IN_A_DAY (contracts/NameYourRocket.sol#18) should be constant
NameYourRocket.emissionPerDay (contracts/NameYourRocket.sol#29) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- NameYourRocket.name() (contracts/NameYourRocket.sol#64-66)
symbol() should be declared external:
- NameYourRocket.symbol() (contracts/NameYourRocket.sol#72-74)
decimals() should be declared external:
- NameYourRocket.decimals() (contracts/NameYourRocket.sol#89-91)
totalSupply() should be declared external:
- NameYourRocket.totalSupply() (contracts/NameYourRocket.sol#96-98)
balanceOf(address) should be declared external:
- NameYourRocket.balanceOf(address) (contracts/NameYourRocket.sol#103-105)
setRocketsAddress(address) should be declared external:
- NameYourRocket.setRocketsAddress(address) (contracts/NameYourRocket.sol#146-150)
claim(uint256[]) should be declared external:
- NameYourRocket.claim(uint256[]) (contracts/NameYourRocket.sol#155-180)
transfer(address,uint256) should be declared external:
- NameYourRocket.transfer(address,uint256) (contracts/NameYourRocket.sol#190-193)
allowance(address,address) should be declared external:
- NameYourRocket.allowance(address,address) (contracts/NameYourRocket.sol#198-200)
approve(address,uint256) should be declared external:
- NameYourRocket.approve(address,uint256) (contracts/NameYourRocket.sol#209-212)
transferFrom(address,address,uint256) should be declared external:
- NameYourRocket.transferFrom(address,address,uint256) (contracts/NameYourRocket.sol#227-234)
increaseAllowance(address,uint256) should be declared external:
- NameYourRocket.increaseAllowance(address,uint256) (contracts/NameYourRocket.sol#248-251)
burn(uint256) should be declared external:
- NameYourRocket.burn(uint256) (contracts/NameYourRocket.sol#260-263)
decreaseAllowance(address,uint256) should be declared external:
- NameYourRocket.decreaseAllowance(address,uint256) (contracts/NameYourRocket.sol#280-283)
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.


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


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.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Youtube account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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


Token has a considerable age, but average PancakeSwap 30d trading volume is low

Price for NYR