ROI Token Token Logo

ROI Token

About ROI

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

white paper

The live ROI Token price today is $0,000404 USD with a 24-hour trading volume of $10.665,27 USD. We update our ROI to USD price in real-time. ROI Token is down 5,83% in the last 24 hours. The current CoinMarketCap ranking is #5754, with a live market cap of not available. The circulating supply is not available and a max. supply of 50.000.000.000 ROI coins.

If you would like to know where to buy ROI Token, the top cryptocurrency exchange for trading in ROI Token stock is currently CoinTiger. You can find others listed on our crypto exchanges page.

ROI TOKEN (ROI) is a decentralized digital asset issued by the 5ROI Global platform, which runs on the Binance Smart Chain network being issued in a limited number with the aim of promoting trading activity on 5ROI. The purpose of using ROI at 5ROI is mainly to pay for transaction fees, exchange fees, and other services in the 5ROI financial ecosystem.

5ROI Global is oriented to become a super financial and cryptocurrency application, an application that can meet any user's needs in the financial and crypto industry.

To get ROI tokens, trade on 5ROI Global - a multi-application financial and cryptocurrency exchange developed by the Vietnamese team. 5ROI Global supports a large number of token trading pairs and offers favorable exchange rates.

Currently, the 5ROI Global supports trading on both the web version and the mobile app version.

Social

Laser Scorebeta Last Audit: 16 July 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

ROIToken (#421-663) contract sets array length with a user-controlled value:
- lockList[_receiver].push(item) (#544)
Do not allow array lengths to be set directly set; instead, opt to add values as needed. Otherwise, thoroughly review the contract to ensure a user-controlled variable cannot reach an array length assignment.

Additional information: link

Contract locking ether found:
Contract ROIToken (#421-663) has payable functions:
- ROIToken.fallback() (#583-585)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

ERC20Detailed.constructor(string,string,uint8).name (#391) shadows:
- ERC20Detailed.name() (#400-402) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (#391) shadows:
- ERC20Detailed.symbol() (#407-409) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (#391) shadows:
- ERC20Detailed.decimals() (#414-416) (function)
Rename the local variables that shadow another component.

Additional information: link

ROIToken.getLockedAmount(address) (#554-563) uses timestamp for comparisons
Dangerous comparisons:
- now < lockList[lockedAddress][j].releaseDate (#557)
Avoid relying on block.timestamp.

Additional information: link

ERC20._burnFrom(address,uint256) (#263-266) is never used and should be removed
SafeMath.div(uint256,uint256) (#45-52) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-81) is never used and should be removed
SafeMath.mul(uint256,uint256) (#28-40) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.4.22<0.6.0 (#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.5.2 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

Variable ERC20._balances (#96) is not in mixedCase
Parameter ROIToken.transfer(address,uint256)._receiver (#506) is not in mixedCase
Parameter ROIToken.transfer(address,uint256)._amount (#506) is not in mixedCase
Parameter ROIToken.transferFrom(address,address,uint256)._from (#520) is not in mixedCase
Parameter ROIToken.transferFrom(address,address,uint256)._receiver (#520) is not in mixedCase
Parameter ROIToken.transferFrom(address,address,uint256)._amount (#520) is not in mixedCase
Parameter ROIToken.transferAndLock(address,uint256,uint256)._receiver (#537) is not in mixedCase
Parameter ROIToken.transferAndLock(address,uint256,uint256)._amount (#537) is not in mixedCase
Parameter ROIToken.transferAndLock(address,uint256,uint256)._releaseDate (#537) is not in mixedCase
Parameter ROIToken.burn(uint256)._amount (#579) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

ROIToken.constructor() (#440-495) uses literals with too many digits:
- totalCoins = 50000000000 * 10 ** uint256(decimals()) (#483)
ROIToken.constructor() (#440-495) uses literals with too many digits:
- ERC20.transfer(teamWallet,5000000000 * 10 ** uint256(decimals())) (#486)
ROIToken.constructor() (#440-495) uses literals with too many digits:
- ERC20.transfer(partnerWallet,5000000000 * 10 ** uint256(decimals())) (#487)
ROIToken.constructor() (#440-495) uses literals with too many digits:
- ERC20.transfer(serviceWallet,12500000000 * 10 ** uint256(decimals())) (#488)
ROIToken.constructor() (#440-495) uses literals with too many digits:
- ERC20.transfer(bountyWallet,7500000000 * 10 ** uint256(decimals())) (#489)
ROIToken.constructor() (#440-495) uses literals with too many digits:
- transferAndLock(serviceWallet,500000000 * 10 ** uint256(decimals()),quarterMap[i]) (#492)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ROIToken.bountyWallet (#426) should be constant
ROIToken.partnerWallet (#425) should be constant
ROIToken.serviceWallet (#424) should be constant
ROIToken.teamWallet (#423) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#150-153)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#178-181)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#192-195)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#318-321)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#327-329)
paused() should be declared external:
- Pausable.paused() (#355-357)
pause() should be declared external:
- Pausable.pause() (#369-372)
unpause() should be declared external:
- Pausable.unpause() (#374-377)
name() should be declared external:
- ERC20Detailed.name() (#400-402)
symbol() should be declared external:
- ERC20Detailed.symbol() (#407-409)
burn(uint256) should be declared external:
- ROIToken.burn(uint256) (#579-581)
getLockedAddresses() should be declared external:
- ROIToken.getLockedAddresses() (#593-595)
getNumberOfLockedAddresses() should be declared external:
- ROIToken.getNumberOfLockedAddresses() (#600-602)
getLockedAddressesCurrently() should be declared external:
- ROIToken.getLockedAddressesCurrently() (#619-630)
getCirculatingSupplyTotal() should be declared external:
- ROIToken.getCirculatingSupplyTotal() (#650-652)
getBurnedAmountTotal() should be declared external:
- ROIToken.getBurnedAmountTotal() (#658-660)
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.


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


Token is deployed only at one blockchain


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


Unable to find Youtube account


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

Additional information: link


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death

Price for ROI

News for ROI