ForeverFOMO Token Logo

ForeverFOMO Token

About ForeverFOMO

Listings

Token 2 years

ForeverFOMO is a price-elastic token with adjusting supply, moving towards the price of Bitcoin. Different then just a normal pegged token/stable coin, rebases make price-elastic tokens into synthetic commodities with fluctuating values and supplies that gradually stabilize. Ultimately, rebases are designed to be tradable and potentially extremely profitable.
Every 4 hours there is a change in supply called a 'rebase'. The rebase is automatically triggered by an online dashboard. Negative rebases are amplified to make ForeverFOMO return to positive rebase territory faster. Rebases are triggered 6 times a day. for 360 Epochs, every 8 hours or 1 epoch, ForeverFOMO will do a price rebase that will increase the price 8%.
ForeverFOMO plans to branch into the NFT marketplace within 30 days as well.

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

ForeverFOMO.swapBack() (#569-638) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#613-616)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#617-620)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#621-624)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ForeverFOMO._transferFrom(address,address,uint256) (#504-542):
External calls:
- swapBack() (#524)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#591-597)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#613-616)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#617-620)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#621-624)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#629-636)
External calls sending eth:
- swapBack() (#524)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#613-616)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#617-620)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#621-624)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#629-636)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#527)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#532-534)
- gonAmountReceived = takeFee(sender,gonAmount) (#529-531)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (#561-563)
Apply the check-effects-interactions pattern.

Additional information: link

ForeverFOMO.swapBack().success (#613) is written in both
(success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#621-624)
success = false (#626)
Fix or remove the writes.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

ForeverFOMO.slitherConstructorVariables() (#310-846) performs a multiplication on the result of a division:
-gonMaxWallet = TOTAL_GONS.div(100).mul(5) (#349)
Consider ordering multiplication before division.

Additional information: link

ForeverFOMO.swapBack() (#569-638) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#629-636)
Ensure that all the return values of the function calls are used.

Additional information: link

ERC20Detailed.constructor(string,string,uint8).decimals (#143) shadows:
- ERC20Detailed.decimals() (#158-160) (function)
Rename the local variables that shadow another component.

Additional information: link

ForeverFOMO.setMaster(address) (#452-454) should emit an event for:
- master = _master (#453)
Emit an event for critical parameter changes.

Additional information: link

ForeverFOMO.setFees(uint256,uint256,uint256,uint256,uint256) (#761-775) should emit an event for:
- ecosystemFee = _ecosystemFee (#768)
- liquidityFee = _liquidityFee (#769)
- buyBackFee = _buyBackFee (#770)
- marketingFee = _marketingFee (#771)
- totalFee = ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee) (#772)
- feeDenominator = _feeDenominator (#773)
Emit an event for critical parameter changes.

Additional information: link

ForeverFOMO.clearStuckBalance(uint256,address).adr (#797) lacks a zero-check on :
- address(adr).transfer((amountETH * amountPercentage) / 100) (#799-801)
Check that the address is not zero.

Additional information: link

Reentrancy in ForeverFOMO.constructor() (#421-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#424-427)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#428)
- _gonBalances[msg.sender] = TOTAL_GONS (#432)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#433)
- _isFeeExempt[msg.sender] = true (#436)
- _isFeeExempt[address(this)] = true (#437)
- _isMaxWalletExempt[pair] = true (#439)
- _isMaxWalletExempt[DEAD] = true (#440)
- _isMaxWalletExempt[address(this)] = true (#441)
- _isMaxWalletExempt[msg.sender] = true (#442)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#431)
- autoLiquidityReceiver = 0x000000000000000000000000000000000000dEaD (#444)
- buyBackFeeReceiver = 0xC2807585c639550C4c3aaBc6B690f0Fa3e1632cC (#447)
- ecosystemFeeReceiver = 0xD9f74A35355BdFd2AF44217037cF0458972884d5 (#446)
- initialDistributionFinished = false (#435)
- marketingFeeReceiver = 0x3F7F08C85e4744840Dc1a6208feA5bB725607653 (#445)
- pairContract = InterfaceLP(pair) (#429)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ForeverFOMO.rebase(uint256,int256) (#393-419):
External calls:
- pairContract.sync() (#415)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#417)
Apply the check-effects-interactions pattern.

Additional information: link

SafeMathInt.sub(int256,int256) (#181-185) is never used and should be removed
Remove unused functions.

Additional information: link

ForeverFOMO.totalFee (#355-356) is set pre-construction with a non-constant function or state variable:
- ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee)
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

Pragma version^0.7.4 (#45) 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

Low level call in ForeverFOMO.swapBack() (#569-638):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#613-616)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#617-620)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#621-624)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ForeverFOMO.ZERO (#360) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#256) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#257)
Prevent variables from having similar names.

Additional information: link

ForeverFOMO.slitherConstructorVariables() (#310-846) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#360)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#165) is never used in SafeMathInt (#163-197)
Remove unused state variables.

Additional information: link

ForeverFOMO.ZERO (#360) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueToken(address,uint256) should be declared external:
- ForeverFOMO.rescueToken(address,uint256) (#789-795)
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.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


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 Twitter link on the website


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for ForeverFOMO