RelaxN Token Logo

RTE [RelaxN] Token

About RTE

Listings

Token 22 months

Website

white paper

RelaxN aims to be a SocialFi and GameFi platform where people can earn by relaxing in various activities, creating entertaining content, or enjoying content created by others. This SUPER-RELAX-APP would help improve people's mental and physical health like what #Tiktok, #Facebook, and #Netflix have done for you all. Warming up with #use-your-voice, RelaxN is promised to lead the trend of #sing-to-earn. The laughing, watching, reading, sleeping, and shopping to earn functions are going to be integrated soon.

Social

Laser Scorebeta Last Audit: 24 June 2022

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


Contract ownership is not renounced (belongs to a wallet)


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

RTE._transferWithFee(address,address,uint256) (#874-886) performs a multiplication on the result of a division:
-feeAmount = tAmount.mul(_taxFee).div(100) (#875)
-markettingFee = feeAmount.mul(6).div(10) (#876)
RTE._transferWithFee(address,address,uint256) (#874-886) performs a multiplication on the result of a division:
-feeAmount = tAmount.mul(_taxFee).div(100) (#875)
-_balance[_ecosystemWalet] = _balance[_ecosystemWalet].add(feeAmount.mul(4).div(10)) (#882)
RTE.slitherConstructorVariables() (#665-888) performs a multiplication on the result of a division:
-_unlockPerMonth = _totalSupply.mul(5).div(100).mul(5).div(100) (#686)
Consider ordering multiplication before division.

Additional information: link

RTE.allowance(address,address).owner (#737) shadows:
- Ownable.owner() (#416-418) (function)
RTE._approve(address,address,uint256).owner (#852) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.

Additional information: link

RTE.setMarketingWalet(address).account (#762) lacks a zero-check on :
- _marketingWalet = account (#763)
RTE.setEcosystemWalet(address).account (#766) lacks a zero-check on :
- _ecosystemWalet = account (#767)
Check that the address is not zero.

Additional information: link

Reentrancy in RTE.constructor() (#691-710):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#703-704)
State variables written after the call(s):
- _isExcluded[_msgSender()] = true (#706)
- _isExcluded[_ecosystemWalet] = true (#707)
- _isExcluded[_marketingWalet] = true (#708)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RTE.constructor() (#691-710):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#703-704)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#709)
Apply the check-effects-interactions pattern.

Additional information: link

RTE.unlockDev() (#770-780) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > nextUnlockTime,Cannot unlock now) (#773)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.

Additional information: link

RTE._unlockPerMonth (#686) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(5).div(100).mul(5).div(100)
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

Low level call in Address.sendValue(address,uint256) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#487) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#488) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#505) is not in mixedCase
Function IUniswapV2Router01.WETH() (#527) is not in mixedCase
Variable RTE._taxFee (#678) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#532) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#533)
Prevent variables from having similar names.

Additional information: link

RTE.slitherConstructorVariables() (#665-888) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** 9 (#671)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#399) is never used in RTE (#665-888)
Ownable._lockTime (#400) is never used in RTE (#665-888)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#400) should be constant
Ownable._previousOwner (#399) should be constant
RTE._decimals (#677) should be constant
RTE._name (#675) should be constant
RTE._symbol (#676) should be constant
RTE._totalSupply (#671) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#416-418)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
name() should be declared external:
- RTE.name() (#712-714)
symbol() should be declared external:
- RTE.symbol() (#716-718)
decimals() should be declared external:
- RTE.decimals() (#720-722)
totalSupply() should be declared external:
- RTE.totalSupply() (#724-726)
balanceOf(address) should be declared external:
- RTE.balanceOf(address) (#728-730)
transfer(address,uint256) should be declared external:
- RTE.transfer(address,uint256) (#732-735)
allowance(address,address) should be declared external:
- RTE.allowance(address,address) (#737-739)
approve(address,uint256) should be declared external:
- RTE.approve(address,uint256) (#741-744)
transferFrom(address,address,uint256) should be declared external:
- RTE.transferFrom(address,address,uint256) (#746-750)
increaseAllowance(address,uint256) should be declared external:
- RTE.increaseAllowance(address,uint256) (#752-755)
decreaseAllowance(address,uint256) should be declared external:
- RTE.decreaseAllowance(address,uint256) (#757-760)
setMarketingWalet(address) should be declared external:
- RTE.setMarketingWalet(address) (#762-764)
setEcosystemWalet(address) should be declared external:
- RTE.setEcosystemWalet(address) (#766-768)
unlockDev() should be declared external:
- RTE.unlockDev() (#770-780)
getTeamTokenLocked() should be declared external:
- RTE.getTeamTokenLocked() (#782-784)
getTimeTokenLocked() should be declared external:
- RTE.getTimeTokenLocked() (#786-788)
getWaitForGameTokenLocked() should be declared external:
- RTE.getWaitForGameTokenLocked() (#790-792)
unlockRte() should be declared external:
- RTE.unlockRte() (#794-797)
excludeFromFee(address) should be declared external:
- RTE.excludeFromFee(address) (#799-801)
includeInFee(address) should be declared external:
- RTE.includeInFee(address) (#803-805)
getCurrentSupply() should be declared external:
- RTE.getCurrentSupply() (#813-822)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for RTE

News for RTE