Rayons Energy Token Logo

RAYONS [Rayons Energy] Token

About RAYONS

Listings

Token 2 years
white paper

Rayons Energy is a technology company focused on solar energy generation and its applications, seeking to consolidate the use of clean energy in the market. Initially, we are going to create a photovoltaic plant to use the energy to mine cryptocurrencies. In a second stage, we are going create a large-scale solar plant to sell the energy generated to companies via a consortium. In the third stage, we are going to create a business condominium within the plant so that companies that demand high energy consumption migrate their operations to the condominium and, by renting our warehouses, reduce their costs with the energy bill, in addition to contributing to sustainability and may receive government incentives for using energy from renewable sources.

Social

Laser Scorebeta Last Audit: 30 November 2021

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...)

Reentrancy in RAYONSENERGY.transferFrom(address,address,uint256) (#738-742):
External calls:
- _transfer(sender,recipient,amount) (#739)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1061-1067)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1041-1047)
External calls sending eth:
- _transfer(sender,recipient,amount) (#739)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#740)
- _allowances[owner][spender] = amount (#920)
Apply the check-effects-interactions pattern.

Additional information: link

RAYONSENERGY.lockToBuyOrSellForTime(uint256,uint256) (#660-669) uses a dangerous strict equality:
- lastBuyOrSellTime == 0 (#662)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

RAYONSENERGY.addLiquidity(uint256,uint256) (#1070-1081) ignores return value by PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
Ensure that all the return values of the function calls are used.

Additional information: link

RAYONSENERGY._approve(address,address,uint256).owner (#917) shadows:
- Ownable.owner() (#246-248) (function)
Rename the local variables that shadow another component.

Additional information: link

RAYONSENERGY.setMaxWallet(uint256) (#725-727) should emit an event for:
- _maxWallet = maxWalletPercent * 10 ** _decimals (#726)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in RAYONSENERGY.swapAndLiquify(uint256) (#1013-1029):
External calls:
- swapTokensForBNB(toSwap) (#1021)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1061-1067)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1025)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1025)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
State variables written after the call(s):
- contractBalance.lp_balance -= tokensSwapped (#1027)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RAYONSENERGY.transferFrom(address,address,uint256) (#738-742):
External calls:
- _transfer(sender,recipient,amount) (#739)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1061-1067)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1041-1047)
External calls sending eth:
- _transfer(sender,recipient,amount) (#739)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1072-1079)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#921)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#740)
Apply the check-effects-interactions pattern.

Additional information: link

RAYONSENERGY.lockToBuyOrSellForTime(uint256,uint256) (#660-669) uses timestamp for comparisons
Dangerous comparisons:
- lastBuyOrSellTime == 0 (#662)
- crashTime >= lockTime (#666)
Avoid relying on block.timestamp.

Additional information: link

EnumerableSet.values(EnumerableSet.AddressSet) (#499-508) uses assembly
- INLINE ASM (#503-505)
Do not use evm assembly.

Additional information: link

SafeMath.trySub(uint256,uint256) (#38-43) is never used and should be removed
Remove unused functions.

Additional information: link

RAYONSENERGY._rTotal (#531) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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

solc-0.8.9 is not recommended for deployment
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 Address.functionDelegateCall(address,bytes,string) (#202-211):
- (success,returndata) = target.delegatecall(data) (#209)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable RAYONSENERGY.Trading (#599) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#128)" inContext (#122-131)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable RAYONSENERGY.setMaxRxPercent(uint256).maxRxPercent (#721) is too similar to RAYONSENERGY.setMaxTxPercent(uint256).maxTxPercent (#717)
Prevent variables from having similar names.

Additional information: link

RAYONSENERGY.slitherConstructorVariables() (#511-1089) uses literals with too many digits:
- numTokensToSwap = 5000000 * 10 ** _decimals (#535)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

withdraw() should be declared external:
- RAYONSENERGY.withdraw() (#1083-1086)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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 verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for RAYONS