Realliq Token Logo

RLQ [Realliq] Token

About RLQ

Listings

Token 2 years

Website

white paper

REALLIQ is a platform created to ensure the safety and convenience way to invest in crypto assets on DeFi. Platform simplifies the liquidity, staking and provides better farming platform for you and built to manage your funds into long-term assets that are safe and comfortable.

We will provide the best experience for you in investing in the block chain world and let your assets do the work for you. Parent of several products in the block chain world that will produce a well performing APY for you. And become one of your right investment choices.

Social

Laser Scorebeta Last Audit: 22 December 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...)

Realliq._isExcluded (#578) is never initialized. It is used in:
- Realliq.balanceOf(address) (#630-633)
- Realliq.deliver(uint256) (#666-673)
- Realliq._takeRnd(uint256) (#761-767)
- Realliq._takeStakingreward(uint256) (#770-776)
- Realliq._tokenTransfer(address,address,uint256,bool) (#847-864)
Realliq._excluded (#580) is never initialized. It is used in:
- Realliq._getCurrentSupply() (#748-758)
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

Realliq._rTotal (#586) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Realliq._previousTaxFee (#593) is set pre-construction with a non-constant function or state variable:
- _taxFee
Realliq._previousRndFee (#601) is set pre-construction with a non-constant function or state variable:
- _rndFee
Realliq._previousStakingrewardFee (#602) is set pre-construction with a non-constant function or state variable:
- _stakingrewardFee
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) (#366-372):
- (success) = recipient.call{value: amount}() (#370)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#427-434):
- (success,returndata) = target.call{value: value}(data) (#432)
Low level call in Address.functionStaticCall(address,bytes,string) (#452-458):
- (success,returndata) = target.staticcall(data) (#456)
Low level call in Address.functionDelegateCall(address,bytes,string) (#477-483):
- (success,returndata) = target.delegatecall(data) (#481)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (#312)" inContext (#306-315)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Realliq.allowance(address,address).owner (#640) shadows:
- Ownable.owner() (#533-535) (function)
Realliq._approve(address,address,uint256).owner (#816) shadows:
- Ownable.owner() (#533-535) (function)
Rename the local variables that shadow another component.

Additional information: link

Realliq.setTaxFeePercent(uint256) (#703-705) should emit an event for:
- _taxFee = taxFee (#704)
Realliq.setRndFeePercent(uint256) (#707-709) should emit an event for:
- _rndFee = rndFee (#708)
Realliq.setStakingrewardFeePercent(uint256) (#711-713) should emit an event for:
- _stakingrewardFee = stakingrewardFee (#712)
Emit an event for critical parameter changes.

Additional information: link

Address.isContract(address) (#339-348) uses assembly
- INLINE ASM (#346)
Address._verifyCallResult(bool,bytes,string) (#485-502) uses assembly
- INLINE ASM (#494-497)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#485-502) is never used and should be removed
Address.functionCall(address,bytes) (#392-394) is never used and should be removed
Address.functionCall(address,bytes,string) (#402-404) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#417-419) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#427-434) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#466-468) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#477-483) is never used and should be removed
Address.functionStaticCall(address,bytes) (#442-444) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#452-458) is never used and should be removed
Address.isContract(address) (#339-348) is never used and should be removed
Address.sendValue(address,uint256) (#366-372) is never used and should be removed
Context._msgData() (#311-314) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#266-271) is never used and should be removed
SafeMath.mod(uint256,uint256) (#225-227) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#288-293) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#96-102) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#138-143) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#150-155) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#121-131) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#109-114) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter Realliq.calculateTaxFee(uint256)._amount (#778) is not in mixedCase
Parameter Realliq.calculateRndFee(uint256)._amount (#784) is not in mixedCase
Parameter Realliq.calculateStakingrewardFee(uint256)._amount (#790) is not in mixedCase
Variable Realliq._RndWalletAddress (#581) is not in mixedCase
Variable Realliq._StakingrewardWalletAddress (#582) is not in mixedCase
Variable Realliq._taxFee (#592) is not in mixedCase
Variable Realliq._rndFee (#596) is not in mixedCase
Variable Realliq._stakingrewardFee (#599) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).tStakingreward (#734)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._takeStakingreward(uint256).tStakingreward (#770)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._transferStandard(address,address,uint256).tStakingreward (#867)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._transferFromExcluded(address,address,uint256).tStakingreward (#888)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).tStakingreward (#734)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._transferToExcluded(address,address,uint256).tStakingreward (#877)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._takeStakingreward(uint256).tStakingreward (#770)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._transferStandard(address,address,uint256).tStakingreward (#867)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._transferFromExcluded(address,address,uint256).tStakingreward (#888)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._transferToExcluded(address,address,uint256).tStakingreward (#877)
Variable Realliq._transferToExcluded(address,address,uint256).rTransferAmount (#877) is too similar to Realliq._getValues(uint256).tTransferAmount (#721)
Variable Realliq._transferBothExcluded(address,address,uint256).rTransferAmount (#684) is too similar to Realliq._transferBothExcluded(address,address,uint256).tTransferAmount (#684)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#739) is too similar to Realliq._getValues(uint256).tTransferAmount (#721)
Variable Realliq._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to Realliq._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable Realliq._transferFromExcluded(address,address,uint256).rTransferAmount (#888) is too similar to Realliq._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable Realliq._transferFromExcluded(address,address,uint256).rTransferAmount (#888) is too similar to Realliq._transferFromExcluded(address,address,uint256).tTransferAmount (#888)
Variable Realliq._getValues(uint256).rTransferAmount (#722) is too similar to Realliq._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable Realliq._transferToExcluded(address,address,uint256).rTransferAmount (#877) is too similar to Realliq._transferBothExcluded(address,address,uint256).tTransferAmount (#684)
Variable Realliq._getValues(uint256).rTransferAmount (#722) is too similar to Realliq._transferFromExcluded(address,address,uint256).tTransferAmount (#888)
Variable Realliq._transferToExcluded(address,address,uint256).rTransferAmount (#877) is too similar to Realliq._transferToExcluded(address,address,uint256).tTransferAmount (#877)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#739) is too similar to Realliq._transferBothExcluded(address,address,uint256).tTransferAmount (#684)
Variable Realliq._transferBothExcluded(address,address,uint256).rTransferAmount (#684) is too similar to Realliq._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable Realliq._transferFromExcluded(address,address,uint256).rTransferAmount (#888) is too similar to Realliq._getValues(uint256).tTransferAmount (#721)
Variable Realliq._getValues(uint256).rTransferAmount (#722) is too similar to Realliq._getTValues(uint256).tTransferAmount (#730)
Variable Realliq._getValues(uint256).rTransferAmount (#722) is too similar to Realliq._getValues(uint256).tTransferAmount (#721)
Variable Realliq._transferToExcluded(address,address,uint256).rTransferAmount (#877) is too similar to Realliq._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable Realliq._transferBothExcluded(address,address,uint256).rTransferAmount (#684) is too similar to Realliq._getValues(uint256).tTransferAmount (#721)
Variable Realliq._transferToExcluded(address,address,uint256).rTransferAmount (#877) is too similar to Realliq._transferFromExcluded(address,address,uint256).tTransferAmount (#888)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#739) is too similar to Realliq._transferStandard(address,address,uint256).tTransferAmount (#867)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#739) is too similar to Realliq._transferFromExcluded(address,address,uint256).tTransferAmount (#888)
Variable Realliq._transferFromExcluded(address,address,uint256).rTransferAmount (#888) is too similar to Realliq._transferBothExcluded(address,address,uint256).tTransferAmount (#684)
Variable Realliq._getValues(uint256).rTransferAmount (#722) is too similar to Realliq._transferBothExcluded(address,address,uint256).tTransferAmount (#684)
Variable Realliq._transferToExcluded(address,address,uint256).rTransferAmount (#877) is too similar to Realliq._getTValues(uint256).tTransferAmount (#730)
Variable Realliq._transferFromExcluded(address,address,uint256).rTransferAmount (#888) is too similar to Realliq._transferToExcluded(address,address,uint256).tTransferAmount (#877)
Variable Realliq._getValues(uint256).rTransferAmount (#722) is too similar to Realliq._transferToExcluded(address,address,uint256).tTransferAmount (#877)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._getValues(uint256).tStakingreward (#721)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._getValues(uint256).tStakingreward (#721)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._getTValues(uint256).tStakingreward (#729)
Variable Realliq._takeStakingreward(uint256).rStakingreward (#772) is too similar to Realliq._transferBothExcluded(address,address,uint256).tStakingreward (#684)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._getTValues(uint256).tStakingreward (#729)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rStakingreward (#738) is too similar to Realliq._transferBothExcluded(address,address,uint256).tStakingreward (#684)
Variable Realliq._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to Realliq._getTValues(uint256).tTransferAmount (#730)
Variable Realliq._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to Realliq._transferFromExcluded(address,address,uint256).tTransferAmount (#888)
Variable Realliq._transferFromExcluded(address,address,uint256).rTransferAmount (#888) is too similar to Realliq._getTValues(uint256).tTransferAmount (#730)
Variable Realliq._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to Realliq._transferBothExcluded(address,address,uint256).tTransferAmount (#684)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#739) is too similar to Realliq._transferToExcluded(address,address,uint256).tTransferAmount (#877)
Variable Realliq._transferBothExcluded(address,address,uint256).rTransferAmount (#684) is too similar to Realliq._transferToExcluded(address,address,uint256).tTransferAmount (#877)
Variable Realliq._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to Realliq._getValues(uint256).tTransferAmount (#721)
Variable Realliq._transferStandard(address,address,uint256).rTransferAmount (#867) is too similar to Realliq._transferToExcluded(address,address,uint256).tTransferAmount (#877)
Variable Realliq._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#739) is too similar to Realliq._getTValues(uint256).tTransferAmount (#730)
Variable Realliq._transferBothExcluded(address,address,uint256).rTransferAmount (#684) is too similar to Realliq._getTValues(uint256).tTransferAmount (#730)
Variable Realliq._transferBothExcluded(address,address,uint256).rTransferAmount (#684) is too similar to Realliq._transferFromExcluded(address,address,uint256).tTransferAmount (#888)
Prevent variables from having similar names.

Additional information: link

Realliq._RndWalletAddress (#581) should be constant
Realliq._StakingrewardWalletAddress (#582) should be constant
Realliq._decimals (#591) should be constant
Realliq._name (#589) should be constant
Realliq._symbol (#590) should be constant
Realliq._tTotal (#585) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#552-555)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#561-565)
name() should be declared external:
- Realliq.name() (#614-616)
symbol() should be declared external:
- Realliq.symbol() (#618-620)
decimals() should be declared external:
- Realliq.decimals() (#622-624)
totalSupply() should be declared external:
- Realliq.totalSupply() (#626-628)
balanceOf(address) should be declared external:
- Realliq.balanceOf(address) (#630-633)
transfer(address,uint256) should be declared external:
- Realliq.transfer(address,uint256) (#635-638)
allowance(address,address) should be declared external:
- Realliq.allowance(address,address) (#640-642)
approve(address,uint256) should be declared external:
- Realliq.approve(address,uint256) (#644-647)
transferFrom(address,address,uint256) should be declared external:
- Realliq.transferFrom(address,address,uint256) (#649-653)
increaseAllowance(address,uint256) should be declared external:
- Realliq.increaseAllowance(address,uint256) (#655-658)
decreaseAllowance(address,uint256) should be declared external:
- Realliq.decreaseAllowance(address,uint256) (#660-663)
deliver(uint256) should be declared external:
- Realliq.deliver(uint256) (#666-673)
excludeFromFee(address) should be declared external:
- Realliq.excludeFromFee(address) (#695-697)
includeInFee(address) should be declared external:
- Realliq.includeInFee(address) (#699-701)
isExcludedFromFee(address) should be declared external:
- Realliq.isExcludedFromFee(address) (#812-814)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Last post in Twitter was more than 30 days ago


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 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 price dump / death


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of 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 CoinMarketCap rank

Price for RLQ

News for RLQ