Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FutureOfFiat._claimBNBTo(address,address,uint256) (#549-559) sends eth to arbitrary user
Dangerous calls:
- (sent) = to.call{value: (amountWei)}() (#555)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in FutureOfFiat._claimBNBTo(address,address,uint256) (#549-559):
External calls:
- (sent) = to.call{value: (amountWei)}() (#555)
State variables written after the call(s):
- _isWithdrawing = false (#557)
Reentrancy in FutureOfFiat._taxedTransfer(address,address,uint256,bool,bool) (#863-897):
External calls:
- claimToken(recipient,MainReward,0) (#874)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
- _swapContractToken(AutoLPThreshold,false) (#888)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#819-825)
External calls sending eth:
- claimToken(recipient,MainReward,0) (#874)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
- _swapContractToken(AutoLPThreshold,false) (#888)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
State variables written after the call(s):
- _removeToken(sender,amount) (#892)
- _balances[addr] = newAmount (#726)
- _balances[addr] = newAmount (#732)
- _addToken(address(this),contractToken) (#893)
- _balances[addr] = newAmount (#708)
- _balances[addr] = newAmount (#714)
- _balances[addr] = newAmount (#719)
- _addToken(recipient,taxedAmount) (#895)
- _balances[addr] = newAmount (#708)
- _balances[addr] = newAmount (#714)
- _balances[addr] = newAmount (#719)
- _removeToken(sender,amount) (#892)
- _totalShares -= amount (#729)
- _addToken(address(this),contractToken) (#893)
- _totalShares += amount (#711)
- _addToken(recipient,taxedAmount) (#895)
- _totalShares += amount (#711)
- _removeToken(sender,amount) (#892)
- alreadyPaidMain[addr] = mainRewardShare * newAmount (#733)
- _addToken(address(this),contractToken) (#893)
- alreadyPaidMain[addr] = mainRewardShare * newAmount (#715)
- _addToken(recipient,taxedAmount) (#895)
- alreadyPaidMain[addr] = mainRewardShare * newAmount (#715)
- _removeToken(sender,amount) (#892)
- alreadyPaidMisc[addr] = miscRewardShare * newAmount (#735)
- _addToken(address(this),contractToken) (#893)
- alreadyPaidMisc[addr] = miscRewardShare * newAmount (#717)
- _addToken(recipient,taxedAmount) (#895)
- alreadyPaidMisc[addr] = miscRewardShare * newAmount (#717)
- _swapContractToken(AutoLPThreshold,false) (#888)
- mainRewardShare += ((MainAmount * DistributionMultiplier) / totalShares) (#769)
- _swapContractToken(AutoLPThreshold,false) (#888)
- miscRewardShare += ((MiscAmount * DistributionMultiplier) / totalShares) (#770)
- _removeToken(sender,amount) (#892)
- toBePaidMain[addr] += mainPayment (#734)
- _addToken(address(this),contractToken) (#893)
- toBePaidMain[addr] += mainPayment (#716)
- _addToken(recipient,taxedAmount) (#895)
- toBePaidMain[addr] += mainPayment (#716)
- _removeToken(sender,amount) (#892)
- toBePaidMisc[addr] += miscPayment (#736)
- _addToken(address(this),contractToken) (#893)
- toBePaidMisc[addr] += miscPayment (#718)
- _addToken(recipient,taxedAmount) (#895)
- toBePaidMisc[addr] += miscPayment (#718)
Reentrancy in FutureOfFiat.claimToken(address,address,uint256) (#488-533):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
State variables written after the call(s):
- _isWithdrawing = false (#532)
Reentrancy in FutureOfFiat.transferFrom(address,address,uint256) (#474-482):
External calls:
- _transfer(sender,recipient,amount) (#475)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#819-825)
- (sent) = to.call{value: (amountWei)}() (#555)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
External calls sending eth:
- _transfer(sender,recipient,amount) (#475)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- (sent) = to.call{value: (amountWei)}() (#555)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (#480)
- _allowances[owner][spender] = amount (#453)
Apply the check-effects-interactions pattern.
Additional information: link
FutureOfFiat.ReleaseLP() (#631-636) ignores return value by liquidityToken.transfer(msg.sender,amount) (#635)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
FutureOfFiat._subtractDividents(address,uint256) (#561-574) uses a dangerous strict equality:
- amount == 0 (#562)
FutureOfFiat.claimToken(address,address,uint256) (#488-533) uses a dangerous strict equality:
- amount == 0 && payableAmount == 0 (#514)
Don't use strict equality to determine if an account has enough Ether or tokens.
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.
FutureOfFiat.BurnAddress (#395) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
FutureOfFiat.allowance(address,address)._owner (#442) shadows:
- Ownable._owner (#184) (state variable)
FutureOfFiat._approve(address,address,uint256).owner (#449) shadows:
- Ownable.owner() (#191-193) (function)
Rename the local variables that shadow another component.
Additional information: link
FutureOfFiat.WithdrawDev(uint256) (#959-964) should emit an event for:
- DevBalance -= amount (#961)
FutureOfFiat.WithdrawMarketing(uint256) (#975-980) should emit an event for:
- MarketingBalance -= amount (#977)
Emit an event for critical parameter changes.
Additional information: link
FutureOfFiat.ChangeMiscReward(address).newReward (#608) lacks a zero-check on :
- MiscReward = newReward (#609)
FutureOfFiat.SetMarketingWallet(address).addr (#1018) lacks a zero-check on :
- MarketingWallet = addr (#1021)
FutureOfFiat.SetDevWallet(address).addr (#1028) lacks a zero-check on :
- Developer = addr (#1031)
Check that the address is not zero.
Additional information: link
FutureOfFiat.constructor() (#418-441) ignores return value by _excluded.add(msg.sender) (#432)
FutureOfFiat.constructor() (#418-441) ignores return value by _excluded.add(MarketingWallet) (#433)
FutureOfFiat.constructor() (#418-441) ignores return value by _excluded.add(Developer) (#434)
FutureOfFiat.constructor() (#418-441) ignores return value by _excluded.add(address(this)) (#435)
FutureOfFiat.constructor() (#418-441) ignores return value by _excludedFromStaking.add(address(this)) (#436)
FutureOfFiat.constructor() (#418-441) ignores return value by _excludedFromStaking.add(BurnAddress) (#437)
FutureOfFiat.constructor() (#418-441) ignores return value by _excludedFromStaking.add(address(_pancakeRouter)) (#438)
FutureOfFiat.constructor() (#418-441) ignores return value by _excludedFromStaking.add(_pancakePairAddress) (#439)
FutureOfFiat.RemoveLP() (#639-655) ignores return value by liquidityToken.approve(address(_pancakeRouter),amount) (#644)
FutureOfFiat.RemoveLP() (#639-655) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#645-652)
FutureOfFiat._addLiquidity(uint256,uint256) (#828-839) ignores return value by _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
FutureOfFiat.ExcludeFromStaking(address) (#985-996) ignores return value by _excludedFromStaking.add(addr) (#994)
FutureOfFiat.IncludeMeToStaking() (#999-1005) ignores return value by _excludedFromStaking.remove(msg.sender) (#1002)
FutureOfFiat.IncludeToStaking(address) (#1007-1014) ignores return value by _excludedFromStaking.remove(addr) (#1010)
FutureOfFiat.SetMarketingWallet(address) (#1018-1024) ignores return value by _excluded.remove(prevMarketing) (#1020)
FutureOfFiat.SetMarketingWallet(address) (#1018-1024) ignores return value by _excluded.add(MarketingWallet) (#1022)
FutureOfFiat.SetDevWallet(address) (#1028-1034) ignores return value by _excluded.remove(prevDev) (#1030)
FutureOfFiat.SetDevWallet(address) (#1028-1034) ignores return value by _excluded.add(Developer) (#1032)
FutureOfFiat.ExcludeAccountFromFees(address) (#1038-1041) ignores return value by _excluded.add(account) (#1039)
FutureOfFiat.IncludeAccountToFees(address) (#1044-1047) ignores return value by _excluded.remove(account) (#1045)
Ensure that all the return values of the function calls are used.
Additional information: link
FutureOfFiat._distributeStake(uint256,bool) (#751-773) performs a multiplication on the result of a division:
-MainAmount = (amount * _MainRewardSplit) / 100 (#756)
-mainRewardShare += ((MainAmount * DistributionMultiplier) / totalShares) (#769)
FutureOfFiat._distributeStake(uint256,bool) (#751-773) performs a multiplication on the result of a division:
-MiscAmount = (amount * _MiscRewardSplit) / 100 (#757)
-miscRewardShare += ((MiscAmount * DistributionMultiplier) / totalShares) (#770)
FutureOfFiat._swapContractToken(uint16,bool) (#783-812) performs a multiplication on the result of a division:
-tokenToSwap = _balances[_pancakePairAddress] * permilleOfPancake / 1000 (#789)
-tokenForLiquidity = (tokenToSwap * _liquidityTax) / totalTax (#800)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in FutureOfFiat._swapContractToken(uint16,bool) (#783-812):
External calls:
- _swapTokenForBNB(swapToken) (#806)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#819-825)
- _addLiquidity(liqToken,liqBNB) (#809)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
External calls sending eth:
- _addLiquidity(liqToken,liqBNB) (#809)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
State variables written after the call(s):
- _distributeStake(distributeBNB,true) (#811)
- BuyBackBalance += BuyBackSplit (#760)
- _distributeStake(distributeBNB,true) (#811)
- DevBalance += DevSplit (#759)
- _distributeStake(distributeBNB,true) (#811)
- MarketingBalance += MarketingSplit (#758)
- MarketingBalance += amount (#767)
- _distributeStake(distributeBNB,true) (#811)
- mainRewardShare += ((MainAmount * DistributionMultiplier) / totalShares) (#769)
- _distributeStake(distributeBNB,true) (#811)
- miscRewardShare += ((MiscAmount * DistributionMultiplier) / totalShares) (#770)
- _distributeStake(distributeBNB,true) (#811)
- totalRewards += amount (#763)
Reentrancy in FutureOfFiat._taxedTransfer(address,address,uint256,bool,bool) (#863-897):
External calls:
- claimToken(recipient,MainReward,0) (#874)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
- _swapContractToken(AutoLPThreshold,false) (#888)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#819-825)
External calls sending eth:
- claimToken(recipient,MainReward,0) (#874)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
- _swapContractToken(AutoLPThreshold,false) (#888)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
State variables written after the call(s):
- _circulatingSupply -= tokensToBeBurnt (#894)
Reentrancy in FutureOfFiat.constructor() (#418-441):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#420)
State variables written after the call(s):
- Developer = msg.sender (#427)
- MarketingWallet = msg.sender (#426)
- MaxWallet = _totalSupply / MaxWalletDivider (#430)
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (#440)
- _allowances[owner][spender] = amount (#453)
- _addToken(msg.sender,_totalSupply) (#421)
- _balances[addr] = newAmount (#708)
- _balances[addr] = newAmount (#714)
- _balances[addr] = newAmount (#719)
- _addToken(msg.sender,_totalSupply) (#421)
- _totalShares += amount (#711)
- _addToken(msg.sender,_totalSupply) (#421)
- alreadyPaidMain[addr] = mainRewardShare * newAmount (#715)
- _addToken(msg.sender,_totalSupply) (#421)
- alreadyPaidMisc[addr] = miscRewardShare * newAmount (#717)
- sellLimit = _totalSupply / SellLimitDivider (#429)
- _addToken(msg.sender,_totalSupply) (#421)
- toBePaidMain[addr] += mainPayment (#716)
- _addToken(msg.sender,_totalSupply) (#421)
- toBePaidMisc[addr] += miscPayment (#718)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FutureOfFiat.TriggerBuyBack(uint256) (#921-935):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,BurnAddress,block.timestamp) (#929-933)
Event emitted after the call(s):
- Buyback(amount) (#934)
Reentrancy in FutureOfFiat._claimBNBTo(address,address,uint256) (#549-559):
External calls:
- (sent) = to.call{value: (amountWei)}() (#555)
Event emitted after the call(s):
- OnClaimBNB(from,to,amountWei) (#558)
Reentrancy in FutureOfFiat._taxedTransfer(address,address,uint256,bool,bool) (#863-897):
External calls:
- claimToken(recipient,MainReward,0) (#874)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
- _swapContractToken(AutoLPThreshold,false) (#888)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#819-825)
External calls sending eth:
- claimToken(recipient,MainReward,0) (#874)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
- _swapContractToken(AutoLPThreshold,false) (#888)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#454)
- _swapContractToken(AutoLPThreshold,false) (#888)
- Transfer(sender,recipient,taxedAmount) (#896)
Reentrancy in FutureOfFiat.claimToken(address,address,uint256) (#488-533):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
Event emitted after the call(s):
- OnWithdrawToken(amount,token,addr) (#531)
Reentrancy in FutureOfFiat.constructor() (#418-441):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#420)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#454)
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (#440)
- Transfer(address(0),msg.sender,_totalSupply) (#422)
Reentrancy in FutureOfFiat.transferFrom(address,address,uint256) (#474-482):
External calls:
- _transfer(sender,recipient,amount) (#475)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#819-825)
- (sent) = to.call{value: (amountWei)}() (#555)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
External calls sending eth:
- _transfer(sender,recipient,amount) (#475)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#830-838)
- (sent) = to.call{value: (amountWei)}() (#555)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#525-529)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#454)
- _approve(sender,msg.sender,currentAllowance - amount) (#480)
Apply the check-effects-interactions pattern.
Additional information: link
FutureOfFiat._lockLiquidityTokens(uint256) (#624-628) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(newUnlockTime > _liquidityUnlockTime) (#626)
FutureOfFiat.ReleaseLP() (#631-636) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#632)
FutureOfFiat.RemoveLP() (#639-655) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#640)
FutureOfFiat.RecoverBNB() (#658-663) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#659)
FutureOfFiat.getLiquidityUnlockInSeconds() (#1127-1132) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < _liquidityUnlockTime (#1128)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#209-213) uses assembly
- INLINE ASM (#211)
Address._verifyCallResult(bool,bytes,string) (#250-263) uses assembly
- INLINE ASM (#255-258)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#250-263) is never used and should be removed
Address.functionCall(address,bytes) (#219-221) is never used and should be removed
Address.functionCall(address,bytes,string) (#222-224) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#225-227) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#228-233) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#242-244) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#245-249) is never used and should be removed
Address.functionStaticCall(address,bytes) (#234-236) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#237-241) is never used and should be removed
Address.isContract(address) (#209-213) is never used and should be removed
Address.sendValue(address,uint256) (#214-218) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (#300-303) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (#297-299) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#307-309) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#343-345) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (#337-339) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#319-321) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#355-357) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#313-315) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#349-351) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (#334-336) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#316-318) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#352-354) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#310-312) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#346-348) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#214-218):
- (success) = recipient.call{value: amount}() (#216)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#228-233):
- (success,returndata) = target.call{value: value}(data) (#231)
Low level call in Address.functionStaticCall(address,bytes,string) (#237-241):
- (success,returndata) = target.staticcall(data) (#239)
Low level call in Address.functionDelegateCall(address,bytes,string) (#245-249):
- (success,returndata) = target.delegatecall(data) (#247)
Low level call in FutureOfFiat._claimBNBTo(address,address,uint256) (#549-559):
- (sent) = to.call{value: (amountWei)}() (#555)
Low level call in FutureOfFiat.RemoveLP() (#639-655):
- (sent) = msg.sender.call{value: (address(this).balance)}() (#653)
Low level call in FutureOfFiat.RecoverBNB() (#658-663):
- (sent) = msg.sender.call{value: (address(this).balance)}() (#661)
Low level call in FutureOfFiat.WithdrawAllDev() (#951-956):
- (sent) = Developer.call{value: (amount)}() (#954)
Low level call in FutureOfFiat.WithdrawDev(uint256) (#959-964):
- (sent) = Developer.call{value: (amount)}() (#962)
Low level call in FutureOfFiat.WithdrawAllMarketing() (#967-972):
- (sent) = MarketingWallet.call{value: (amount)}() (#970)
Low level call in FutureOfFiat.WithdrawMarketing(uint256) (#975-980):
- (sent) = MarketingWallet.call{value: (amount)}() (#978)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeERC20.DOMAIN_SEPARATOR() (#37) is not in mixedCase
Function IPancakeERC20.PERMIT_TYPEHASH() (#38) is not in mixedCase
Function IPancakeRouter01.WETH() (#137) is not in mixedCase
Event FutureOfFiatonUpdateLPThreshold(uint16) (#683) is not in CapWords
Event FutureOfFiatonBurnTokens(uint256) (#938) is not in CapWords
Parameter FutureOfFiat.allowance(address,address)._owner (#442) is not in mixedCase
Function FutureOfFiat.ClaimMainReward() (#536-538) is not in mixedCase
Function FutureOfFiat.ClaimMiscReward() (#541-545) is not in mixedCase
Function FutureOfFiat.ChangeMainReward(address) (#600-604) is not in mixedCase
Function FutureOfFiat.ChangeMiscReward(address) (#608-611) is not in mixedCase
Function FutureOfFiat.LockLiquidityTokens(uint256) (#620-623) is not in mixedCase
Function FutureOfFiat.ReleaseLP() (#631-636) is not in mixedCase
Function FutureOfFiat.RemoveLP() (#639-655) is not in mixedCase
Function FutureOfFiat.RecoverBNB() (#658-663) is not in mixedCase
Function FutureOfFiat.UpdateAutoLPThreshold(uint16) (#684-689) is not in mixedCase
Parameter FutureOfFiat.UpdateAutoLPThreshold(uint16).Threshold (#684) is not in mixedCase
Function FutureOfFiat.CreateLPandBNB(uint16,bool) (#692-694) is not in mixedCase
Parameter FutureOfFiat.CreateLPandBNB(uint16,bool).PermilleOfPancake (#692) is not in mixedCase
Function FutureOfFiat.ManualBNBSwap(bool) (#843-845) is not in mixedCase
Function FutureOfFiat.TriggerBuyBack(uint256) (#921-935) is not in mixedCase
Function FutureOfFiat.BurnTokens(uint256) (#939-948) is not in mixedCase
Function FutureOfFiat.WithdrawAllDev() (#951-956) is not in mixedCase
Function FutureOfFiat.WithdrawDev(uint256) (#959-964) is not in mixedCase
Function FutureOfFiat.WithdrawAllMarketing() (#967-972) is not in mixedCase
Function FutureOfFiat.WithdrawMarketing(uint256) (#975-980) is not in mixedCase
Function FutureOfFiat.ExcludeFromStaking(address) (#985-996) is not in mixedCase
Function FutureOfFiat.IncludeMeToStaking() (#999-1005) is not in mixedCase
Function FutureOfFiat.IncludeToStaking(address) (#1007-1014) is not in mixedCase
Function FutureOfFiat.SetMarketingWallet(address) (#1018-1024) is not in mixedCase
Function FutureOfFiat.SetDevWallet(address) (#1028-1034) is not in mixedCase
Function FutureOfFiat.ExcludeAccountFromFees(address) (#1038-1041) is not in mixedCase
Function FutureOfFiat.IncludeAccountToFees(address) (#1044-1047) is not in mixedCase
Function FutureOfFiat.UpdateTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) (#1055-1073) is not in mixedCase
Function FutureOfFiat.UpdateRewardSplit(uint8,uint8) (#1077-1083) is not in mixedCase
Parameter FutureOfFiat.UpdateRewardSplit(uint8,uint8).MainSplit (#1077) is not in mixedCase
Parameter FutureOfFiat.UpdateRewardSplit(uint8,uint8).MiscSplit (#1077) is not in mixedCase
Function FutureOfFiat.UpdateLimits(uint256,uint256) (#1086-1100) is not in mixedCase
Constant FutureOfFiat._name (#369) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FutureOfFiat._symbol (#370) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FutureOfFiat._decimals (#371) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FutureOfFiat._totalSupply (#372) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FutureOfFiat._circulatingSupply (#373) is not in mixedCase
Constant FutureOfFiat.MaxWalletDivider (#374) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FutureOfFiat.SellLimitDivider (#375) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FutureOfFiat.MaxTax (#376) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FutureOfFiat._MainRewardSplit (#389) is not in mixedCase
Variable FutureOfFiat._MiscRewardSplit (#390) is not in mixedCase
Variable FutureOfFiat.MaxWallet (#391) is not in mixedCase
Variable FutureOfFiat.MarketingWallet (#393) is not in mixedCase
Variable FutureOfFiat.Developer (#394) is not in mixedCase
Variable FutureOfFiat.BurnAddress (#395) is not in mixedCase
Constant FutureOfFiat.PancakeRouter (#400) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FutureOfFiat.MainReward (#402) is not in mixedCase
Variable FutureOfFiat.MiscReward (#403) is not in mixedCase
Constant FutureOfFiat.DistributionMultiplier (#667) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FutureOfFiat.MarketingBalance (#673) is not in mixedCase
Variable FutureOfFiat.DevBalance (#674) is not in mixedCase
Variable FutureOfFiat.BuyBackBalance (#675) is not in mixedCase
Variable FutureOfFiat.AutoLPThreshold (#676) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#57) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#58)
Prevent variables from having similar names.
Additional information: link
FutureOfFiat.slitherConstructorVariables() (#361-1140) uses literals with too many digits:
- BurnAddress = 0x000000000000000000000000000000000000dEaD (#395)
FutureOfFiat.slitherConstructorConstantVariables() (#361-1140) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** _decimals (#372)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#198-201)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#202-206)
ClaimMainReward() should be declared external:
- FutureOfFiat.ClaimMainReward() (#536-538)
ClaimMiscReward() should be declared external:
- FutureOfFiat.ClaimMiscReward() (#541-545)
getMainBalance(address) should be declared external:
- FutureOfFiat.getMainBalance(address) (#587-590)
getMiscBalance(address) should be declared external:
- FutureOfFiat.getMiscBalance(address) (#593-596)
ChangeMainReward(address) should be declared external:
- FutureOfFiat.ChangeMainReward(address) (#600-604)
ChangeMiscReward(address) should be declared external:
- FutureOfFiat.ChangeMiscReward(address) (#608-611)
LockLiquidityTokens(uint256) should be declared external:
- FutureOfFiat.LockLiquidityTokens(uint256) (#620-623)
ReleaseLP() should be declared external:
- FutureOfFiat.ReleaseLP() (#631-636)
RemoveLP() should be declared external:
- FutureOfFiat.RemoveLP() (#639-655)
RecoverBNB() should be declared external:
- FutureOfFiat.RecoverBNB() (#658-663)
UpdateAutoLPThreshold(uint16) should be declared external:
- FutureOfFiat.UpdateAutoLPThreshold(uint16) (#684-689)
CreateLPandBNB(uint16,bool) should be declared external:
- FutureOfFiat.CreateLPandBNB(uint16,bool) (#692-694)
ManualBNBSwap(bool) should be declared external:
- FutureOfFiat.ManualBNBSwap(bool) (#843-845)
TriggerBuyBack(uint256) should be declared external:
- FutureOfFiat.TriggerBuyBack(uint256) (#921-935)
BurnTokens(uint256) should be declared external:
- FutureOfFiat.BurnTokens(uint256) (#939-948)
WithdrawAllDev() should be declared external:
- FutureOfFiat.WithdrawAllDev() (#951-956)
WithdrawDev(uint256) should be declared external:
- FutureOfFiat.WithdrawDev(uint256) (#959-964)
WithdrawAllMarketing() should be declared external:
- FutureOfFiat.WithdrawAllMarketing() (#967-972)
WithdrawMarketing(uint256) should be declared external:
- FutureOfFiat.WithdrawMarketing(uint256) (#975-980)
ExcludeFromStaking(address) should be declared external:
- FutureOfFiat.ExcludeFromStaking(address) (#985-996)
IncludeMeToStaking() should be declared external:
- FutureOfFiat.IncludeMeToStaking() (#999-1005)
IncludeToStaking(address) should be declared external:
- FutureOfFiat.IncludeToStaking(address) (#1007-1014)
SetMarketingWallet(address) should be declared external:
- FutureOfFiat.SetMarketingWallet(address) (#1018-1024)
SetDevWallet(address) should be declared external:
- FutureOfFiat.SetDevWallet(address) (#1028-1034)
ExcludeAccountFromFees(address) should be declared external:
- FutureOfFiat.ExcludeAccountFromFees(address) (#1038-1041)
IncludeAccountToFees(address) should be declared external:
- FutureOfFiat.IncludeAccountToFees(address) (#1044-1047)
UpdateTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) should be declared external:
- FutureOfFiat.UpdateTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) (#1055-1073)
UpdateRewardSplit(uint8,uint8) should be declared external:
- FutureOfFiat.UpdateRewardSplit(uint8,uint8) (#1077-1083)
UpdateLimits(uint256,uint256) should be declared external:
- FutureOfFiat.UpdateLimits(uint256,uint256) (#1086-1100)
getLimits() should be declared external:
- FutureOfFiat.getLimits() (#1123-1125)
getLiquidityUnlockInSeconds() should be declared external:
- FutureOfFiat.getLiquidityUnlockInSeconds() (#1127-1132)
getTaxes() should be declared external:
- FutureOfFiat.getTaxes() (#1134-1136)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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.
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 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 whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap
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
Unable to find Twitter account
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account