GiftFOMO Token Logo

GFOMO [GiftFOMO] Token

About GFOMO

Listings

Not Found
Token 3 years

Welcome to GiftFOMO the first Christmas Rebase&Rewards token
Take a chance to win gifts everyday and big Christmas present !

Telegram : https://t.co/rXgg7ZA6BR

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

GiftFOMO.swapBack() (#725-773) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GiftFOMO._transferFrom(address,address,uint256) (#570-623):
External calls:
- swapBack() (#602)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#738-744)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
External calls sending eth:
- swapBack() (#602)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#605)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#608)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#607)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#657)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#326-337) ignores return value by RWRD.transfer(shareholder,amount) (#332)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

GiftFOMO.swapBack().tmpSuccess (#756) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
GiftFOMO.swapBack().tmpSuccess (#756) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
tmpSuccess = false (#760)
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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

DividendDistributor.process(uint256) (#295-319) has costly operations inside a loop:
- currentIndex = 0 (#307)
DividendDistributor.distributeDividend(address) (#326-337) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#331)
DividendDistributor.process(uint256) (#295-319) has costly operations inside a loop:
- currentIndex ++ (#316)
Use a local variable to hold the loop computation result.

Additional information: link

DividendDistributor.shouldDistribute(address) (#321-324) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#322-323)
GiftFOMO._transferFrom(address,address,uint256) (#570-623) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#586)
Avoid relying on block.timestamp.

Additional information: link

GiftFOMO.totalFee (#396) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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 (#7) allows old versions
solc-0.7.4 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

Reentrancy in GiftFOMO.constructor() (#498-528):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#500)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#501)
- _rBalance[msg.sender] = rSupply (#526)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#505)
- autoLiquidityReceiver = msg.sender (#522)
- devFeeReceiver = 0xE9848159423e42D2c2d7CdBEB5a3c5E131417657 (#524)
- distributor = new DividendDistributor(address(router)) (#509)
- isDividendExempt[pair] = true (#518)
- isDividendExempt[address(this)] = true (#519)
- isDividendExempt[DEAD] = true (#520)
- isFeeExempt[msg.sender] = true (#511)
- isTimelockExempt[msg.sender] = true (#514)
- isTimelockExempt[DEAD] = true (#515)
- isTimelockExempt[address(this)] = true (#516)
- isTxLimitExempt[msg.sender] = true (#512)
- marketingFeeReceiver = 0x762AFc4b7d02563Ed42276c9F720be577BcaafC8 (#523)
- pairContract = InterfaceLP(pair) (#504)
- rate = rSupply.div(_totalSupply) (#506)
Reentrancy in DividendDistributor.deposit() (#275-293):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#282-287)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#292)
- totalDividends = totalDividends.add(amount) (#291)
Reentrancy in DividendDistributor.distributeDividend(address) (#326-337):
External calls:
- RWRD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#333)
Reentrancy in DividendDistributor.setShare(address,uint256) (#259-273):
External calls:
- distributeDividend(shareholder) (#261)
- RWRD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- addShareholder(shareholder) (#265)
- shareholderIndexes[shareholder] = shareholders.length (#359)
- removeShareholder(shareholder) (#267)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#365)
- addShareholder(shareholder) (#265)
- shareholders.push(shareholder) (#360)
- removeShareholder(shareholder) (#267)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#364)
- shareholders.pop() (#366)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#270)
Apply the check-effects-interactions pattern.

Additional information: link

SafeMathInt.abs(int256) (#75-78) is never used and should be removed
SafeMathInt.add(int256,int256) (#69-73) is never used and should be removed
SafeMathInt.div(int256,int256) (#57-61) is never used and should be removed
SafeMathInt.sub(int256,int256) (#63-67) is never used and should be removed
Remove unused functions.

Additional information: link

GiftFOMO.rebase_percentage(uint256,bool) (#455-463) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#458)
GiftFOMO.rebase_percentage(uint256,bool) (#455-463) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#460)
GiftFOMO.takeFee(address,uint256,bool) (#644-661) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#651)
GiftFOMO.takeFee(address,uint256,bool) (#644-661) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#654)
GiftFOMO.swapBack() (#725-773) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#729)
GiftFOMO.setSwapBackSettings(bool,uint256) (#817-820) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#819)
GiftFOMO.setMaxWalletPercent_base1000(uint256) (#897-899) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#898)
GiftFOMO.setMaxTxPercent_base1000(uint256) (#901-903) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#902)
GiftFOMO.slitherConstructorVariables() (#370-969) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(2) (#452)
GiftFOMO.slitherConstructorVariables() (#370-969) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(4) (#453)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#326-337):
External calls:
- RWRD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#334)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#335)
Reentrancy in DividendDistributor.process(uint256) (#295-319):
External calls:
- distributeDividend(shareholders[currentIndex]) (#311)
- RWRD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- currentIndex ++ (#316)
Reentrancy in DividendDistributor.setShare(address,uint256) (#259-273):
External calls:
- distributeDividend(shareholder) (#261)
- RWRD.transfer(shareholder,amount) (#332)
State variables written after the call(s):
- shares[shareholder].amount = amount (#271)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#272)
Apply the check-effects-interactions pattern.

Additional information: link

GiftFOMO.manage_houseguests(address[],bool).i (#714) is a local variable never initialized
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

GiftFOMO.swapBack() (#725-773) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
Ensure that all the return values of the function calls are used.

Additional information: link

GiftFOMO.setMaster(address) (#839-841) should emit an event for:
- master = _master (#840)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#254-257) should emit an event for:
- minPeriod = _minPeriod (#255)
- minDistribution = _minDistribution (#256)
GiftFOMO.set_sell_multiplier(uint256) (#686-688) should emit an event for:
- sellMultiplier = Multiplier (#687)
GiftFOMO.tradingStatus(bool,uint256) (#692-698) should emit an event for:
- deadBlocks = _deadBlocks (#696)
GiftFOMO.launchStatus(uint256) (#700-702) should emit an event for:
- launchedAt = _launchblock (#701)
GiftFOMO.setFees(uint256,uint256,uint256,uint256,uint256) (#799-807) should emit an event for:
- liquidityFee = _liquidityFee (#800)
- reflectionFee = _reflectionFee (#801)
- marketingFee = _marketingFee (#802)
- devFee = _devFee (#803)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#804)
- feeDenominator = _feeDenominator (#805)
GiftFOMO.setSwapBackSettings(bool,uint256) (#817-820) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#819)
GiftFOMO.setTargetLiquidity(uint256,uint256) (#823-826) should emit an event for:
- targetLiquidity = _target (#824)
- targetLiquidityDenominator = _denominator (#825)
GiftFOMO.setMaxWalletPercent_base1000(uint256) (#897-899) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#898)
GiftFOMO.setMaxTxPercent_base1000(uint256) (#901-903) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#902)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#132) lacks a zero-check on :
- owner = adr (#133)
GiftFOMO.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#810) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#811)
GiftFOMO.setFeeReceivers(address,address,address)._marketingFeeReceiver (#810) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#812)
GiftFOMO.setFeeReceivers(address,address,address)._devFeeReceiver (#810) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#813)
GiftFOMO.setMaster(address)._master (#839) lacks a zero-check on :
- master = _master (#840)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#326-337) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#332)
GiftFOMO.multiTransfer(address,address[],uint256[]) (#909-933) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#925)
GiftFOMO.multiTransfer_fixed(address,address[],uint256) (#935-954) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#946)
GiftFOMO.rebase_updatebalance(address[]) (#956-965) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#962)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in GiftFOMO._transferFrom(address,address,uint256) (#570-623):
External calls:
- swapBack() (#602)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#738-744)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
- distributor.setShare(sender,balanceOf(sender)) (#612)
- distributor.setShare(recipient,balanceOf(recipient)) (#616)
- distributor.process(distributorGas) (#619)
External calls sending eth:
- swapBack() (#602)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#621)
Reentrancy in GiftFOMO._transferFrom(address,address,uint256) (#570-623):
External calls:
- swapBack() (#602)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#738-744)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
External calls sending eth:
- swapBack() (#602)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#658)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#607)
Reentrancy in GiftFOMO.constructor() (#498-528):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#500)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#527)
Reentrancy in GiftFOMO.rebase(uint256,int256) (#466-494):
External calls:
- pairContract.sync() (#490)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#492)
Reentrancy in GiftFOMO.swapBack() (#725-773):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#738-744)
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#755)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#763-770)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#771)
Apply the check-effects-interactions pattern.

Additional information: link

Low level call in GiftFOMO.swapBack() (#725-773):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#756)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#757)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#151) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#254) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#254) is not in mixedCase
Variable DividendDistributor._token (#207) is not in mixedCase
Variable DividendDistributor.RWRD (#215) is not in mixedCase
Variable DividendDistributor.WBNB (#216) is not in mixedCase
Function GiftFOMO.rebase_percentage(uint256,bool) (#455-463) is not in mixedCase
Parameter GiftFOMO.rebase_percentage(uint256,bool)._percentage_base1000 (#455) is not in mixedCase
Function GiftFOMO.clearStuckBalance_sender(uint256) (#679-682) is not in mixedCase
Function GiftFOMO.set_sell_multiplier(uint256) (#686-688) is not in mixedCase
Parameter GiftFOMO.set_sell_multiplier(uint256).Multiplier (#686) is not in mixedCase
Parameter GiftFOMO.tradingStatus(bool,uint256)._status (#692) is not in mixedCase
Parameter GiftFOMO.tradingStatus(bool,uint256)._deadBlocks (#692) is not in mixedCase
Parameter GiftFOMO.launchStatus(uint256)._launchblock (#700) is not in mixedCase
Function GiftFOMO.enable_hotel_CaliforniaMode(bool) (#705-707) is not in mixedCase
Parameter GiftFOMO.enable_hotel_CaliforniaMode(bool)._status (#705) is not in mixedCase
Function GiftFOMO.set_max_roomrent(uint256) (#709-711) is not in mixedCase
Parameter GiftFOMO.set_max_roomrent(uint256)._rent_withoutdecimal (#709) is not in mixedCase
Function GiftFOMO.manage_houseguests(address[],bool) (#713-717) is not in mixedCase
Parameter GiftFOMO.cooldownEnabled(bool,uint8)._status (#719) is not in mixedCase
Parameter GiftFOMO.cooldownEnabled(bool,uint8)._interval (#719) is not in mixedCase
Parameter GiftFOMO.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#799) is not in mixedCase
Parameter GiftFOMO.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#799) is not in mixedCase
Parameter GiftFOMO.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#799) is not in mixedCase
Parameter GiftFOMO.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#799) is not in mixedCase
Parameter GiftFOMO.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#799) is not in mixedCase
Parameter GiftFOMO.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#810) is not in mixedCase
Parameter GiftFOMO.setFeeReceivers(address,address,address)._marketingFeeReceiver (#810) is not in mixedCase
Parameter GiftFOMO.setFeeReceivers(address,address,address)._devFeeReceiver (#810) is not in mixedCase
Parameter GiftFOMO.setSwapBackSettings(bool,uint256)._enabled (#817) is not in mixedCase
Parameter GiftFOMO.setSwapBackSettings(bool,uint256)._percentage_base10000 (#817) is not in mixedCase
Parameter GiftFOMO.setTargetLiquidity(uint256,uint256)._target (#823) is not in mixedCase
Parameter GiftFOMO.setTargetLiquidity(uint256,uint256)._denominator (#823) is not in mixedCase
Parameter GiftFOMO.setLP(address)._address (#833) is not in mixedCase
Parameter GiftFOMO.setMaster(address)._master (#839) is not in mixedCase
Parameter GiftFOMO.setDistributionCriteria(uint256,uint256)._minPeriod (#856) is not in mixedCase
Parameter GiftFOMO.setDistributionCriteria(uint256,uint256)._minDistribution (#856) is not in mixedCase
Function GiftFOMO.setMaxWalletPercent_base1000(uint256) (#897-899) is not in mixedCase
Parameter GiftFOMO.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#897) is not in mixedCase
Function GiftFOMO.setMaxTxPercent_base1000(uint256) (#901-903) is not in mixedCase
Parameter GiftFOMO.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#901) is not in mixedCase
Function GiftFOMO.multiTransfer_fixed(address,address[],uint256) (#935-954) is not in mixedCase
Function GiftFOMO.rebase_updatebalance(address[]) (#956-965) is not in mixedCase
Variable GiftFOMO.WBNB (#374) is not in mixedCase
Variable GiftFOMO.DEAD (#375) is not in mixedCase
Variable GiftFOMO.ZERO (#376) is not in mixedCase
Constant GiftFOMO._name (#378) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GiftFOMO._symbol (#379) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GiftFOMO._decimals (#380) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GiftFOMO._rBalance (#384) is not in mixedCase
Variable GiftFOMO._allowances (#385) is not in mixedCase
Variable GiftFOMO.rebase_count (#444) is not in mixedCase
Variable GiftFOMO._totalSupply (#446) is not in mixedCase
Constant GiftFOMO.rSupply (#449) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GiftFOMO._maxTxAmount (#452) is not in mixedCase
Variable GiftFOMO._maxWalletToken (#453) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

GiftFOMO.setDistributorSettings(uint256) (#862-865) uses literals with too many digits:
- require(bool)(gas < 900000) (#863)
GiftFOMO.slitherConstructorVariables() (#370-969) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#375)
GiftFOMO.slitherConstructorVariables() (#370-969) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#376)
GiftFOMO.slitherConstructorVariables() (#370-969) uses literals with too many digits:
- maxRoomRent = 8000000000 (#400)
GiftFOMO.slitherConstructorVariables() (#370-969) uses literals with too many digits:
- distributorGas = 500000 (#423)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#47) is never used in SafeMathInt (#45-79)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#216) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#229) should be constant
GiftFOMO.DEAD (#375) should be constant
GiftFOMO.WBNB (#374) should be constant
GiftFOMO.ZERO (#376) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#116-118)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#120-122)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#132-136)
rebase_percentage(uint256,bool) should be declared external:
- GiftFOMO.rebase_percentage(uint256,bool) (#455-463)
tradingStatus(bool,uint256) should be declared external:
- GiftFOMO.tradingStatus(bool,uint256) (#692-698)
launchStatus(uint256) should be declared external:
- GiftFOMO.launchStatus(uint256) (#700-702)
enable_hotel_CaliforniaMode(bool) should be declared external:
- GiftFOMO.enable_hotel_CaliforniaMode(bool) (#705-707)
set_max_roomrent(uint256) should be declared external:
- GiftFOMO.set_max_roomrent(uint256) (#709-711)
manage_houseguests(address[],bool) should be declared external:
- GiftFOMO.manage_houseguests(address[],bool) (#713-717)
cooldownEnabled(bool,uint8) should be declared external:
- GiftFOMO.cooldownEnabled(bool,uint8) (#719-722)
rescueToken(address,uint256) should be declared external:
- GiftFOMO.rescueToken(address,uint256) (#869-871)
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.


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


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on 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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for GFOMO

News for GFOMO