FudCoin Official is here to change the security of the Bsc crypto space, We have a new and unique method for verifying a Developers legitimacy alongside our own Contract audit.
This is a service that will ensure that any tokens verified by us are as secure as can possibly be, Thus giving investors reassurance and saving Developers having to Doxx.
This is what we call FUDDoxx. Participating tokens will automatically receive a listing on our FUDDoxx website along with an E-stamp to use on their own platforms.
Future plans include the launch of FUDexchange also, A trading platform which will inc: A swap, Farming, Mining, and staking.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FUD.addLiquidity(uint256,uint256) (#1217-1230) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in FUD._transfer(address,address,uint256) (#1130-1174):
External calls:
- swapAndLiquify(contractTokenBalance) (#1161)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1161)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1069)
- _rOwned[_marketingWalletAddress] = _rOwned[_marketingWalletAddress].add(rMarketing) (#1077)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1265)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1255)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1277)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1256)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#973)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1278)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1267)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#975)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _rTotal = _rTotal.sub(rFee) (#1022)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1071)
- _tOwned[_marketingWalletAddress] = _tOwned[_marketingWalletAddress].add(tMarketing) (#1079)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1276)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#972)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1266)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#974)
Apply the check-effects-interactions pattern.
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.
FUD.includeInReward(address) (#957-968) has costly operations inside a loop:
- _excluded.pop() (#964)
Use a local variable to hold the loop computation result.
Additional information: link
FUD.addLiquidity(uint256,uint256) (#1217-1230) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
Ensure that all the return values of the function calls are used.
Additional information: link
FUD.allowance(address,address).owner (#882) shadows:
- Ownable.owner() (#534-536) (function)
FUD._approve(address,address,uint256).owner (#1122) shadows:
- Ownable.owner() (#534-536) (function)
Rename the local variables that shadow another component.
Additional information: link
FUD.setTaxFeePercent(uint256) (#990-992) should emit an event for:
- _taxFee = taxFee (#991)
FUD.setTokenLiquifyCap(uint256) (#995-997) should emit an event for:
- numTokensSellToAddToLiquidity = tokenNumber * 10 ** 6 * 10 ** _decimals (#996)
FUD.setMarketingFeePercent(uint256) (#999-1001) should emit an event for:
- _marketingFee = marketingFee (#1000)
FUD.setLiquidityFeePercent(uint256) (#1003-1005) should emit an event for:
- _liquidityFee = liquidityFee (#1004)
FUD.setMaxTxPercent(uint256) (#1007-1011) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1008-1010)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in FUD._transfer(address,address,uint256) (#1130-1174):
External calls:
- swapAndLiquify(contractTokenBalance) (#1161)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1161)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _liquidityFee = _previousLiquidityFee (#1115)
- _liquidityFee = 0 (#1109)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _marketingFee = _previousMarketingFee (#1114)
- _marketingFee = 0 (#1108)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _previousLiquidityFee = _liquidityFee (#1105)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _previousMarketingFee = _marketingFee (#1104)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _previousTaxFee = _taxFee (#1103)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1023)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- _taxFee = _previousTaxFee (#1113)
- _taxFee = 0 (#1107)
Reentrancy in FUD.constructor() (#831-854):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#839-840)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#849)
- _isExcludedFromFee[_marketingWalletAddress] = true (#850)
- _isExcludedFromFee[address(this)] = true (#851)
- _marketingWalletAddress = 0xE552a6e82802592f0A40b137b333e6cCBd60ED66 (#846)
- uniswapV2Router = _uniswapV2Router (#843)
Reentrancy in FUD.setRouterAddress(address) (#1285-1290):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1288)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1289)
Reentrancy in FUD.swapAndLiquify(uint256) (#1176-1197):
External calls:
- swapTokensForEth(half) (#1188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- addLiquidity(otherHalf,newBalance) (#1194)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1194)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1194)
- _allowances[owner][spender] = amount (#1126)
Reentrancy in FUD.transferFrom(address,address,uint256) (#891-895):
External calls:
- _transfer(sender,recipient,amount) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- _transfer(sender,recipient,amount) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#893)
- _allowances[owner][spender] = amount (#1126)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FUD._transfer(address,address,uint256) (#1130-1174):
External calls:
- swapAndLiquify(contractTokenBalance) (#1161)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1161)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1260)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- Transfer(sender,recipient,tTransferAmount) (#1271)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- Transfer(sender,recipient,tTransferAmount) (#1282)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
- Transfer(sender,recipient,tTransferAmount) (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1173)
Reentrancy in FUD.constructor() (#831-854):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#839-840)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#853)
Reentrancy in FUD.swapAndLiquify(uint256) (#1176-1197):
External calls:
- swapTokensForEth(half) (#1188)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- addLiquidity(otherHalf,newBalance) (#1194)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1194)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1127)
- addLiquidity(otherHalf,newBalance) (#1194)
- SwapAndLiquify(half,newBalance,otherHalf) (#1196)
Reentrancy in FUD.transferFrom(address,address,uint256) (#891-895):
External calls:
- _transfer(sender,recipient,amount) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- _transfer(sender,recipient,amount) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1222-1229)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1127)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#893)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#341-350) uses assembly
- INLINE ASM (#348)
Address._verifyCallResult(bool,bytes,string) (#486-503) uses assembly
- INLINE ASM (#495-498)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#486-503) is never used and should be removed
Address.functionCall(address,bytes) (#394-396) is never used and should be removed
Address.functionCall(address,bytes,string) (#404-406) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#419-421) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#429-436) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#468-470) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#478-484) is never used and should be removed
Address.functionStaticCall(address,bytes) (#444-446) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#454-460) is never used and should be removed
Address.isContract(address) (#341-350) is never used and should be removed
Address.sendValue(address,uint256) (#368-374) is never used and should be removed
Context._msgData() (#314-317) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#269-274) is never used and should be removed
SafeMath.mod(uint256,uint256) (#229-231) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#291-296) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#100-106) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#142-147) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#154-159) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#125-135) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#113-118) is never used and should be removed
Remove unused functions.
Additional information: link
FUD._tTotal (#794) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 6 * 10 ** _decimals
FUD._rTotal (#795) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FUD._maxTxAmount (#798) is set pre-construction with a non-constant function or state variable:
- 500000 * 10 ** 6 * 10 ** _decimals
FUD.numTokensSellToAddToLiquidity (#799) is set pre-construction with a non-constant function or state variable:
- 50000 * 10 ** 6 * 10 ** _decimals
FUD._previousTaxFee (#804) is set pre-construction with a non-constant function or state variable:
- _taxFee
FUD._previousMarketingFee (#807) is set pre-construction with a non-constant function or state variable:
- _marketingFee
FUD._previousLiquidityFee (#810) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.8.3 (#8) allows old versions
solc-0.8.3 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
Low level call in Address.sendValue(address,uint256) (#368-374):
- (success) = recipient.call{value: amount}() (#372)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#429-436):
- (success,returndata) = target.call{value: value}(data) (#434)
Low level call in Address.functionStaticCall(address,bytes,string) (#454-460):
- (success,returndata) = target.staticcall(data) (#458)
Low level call in Address.functionDelegateCall(address,bytes,string) (#478-484):
- (success,returndata) = target.delegatecall(data) (#482)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#600) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#601) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#618) is not in mixedCase
Function IUniswapV2Router01.WETH() (#638) is not in mixedCase
Parameter FUD.setSwapAndLiquifyEnabled(bool)._enabled (#1013) is not in mixedCase
Parameter FUD.calculateTaxFee(uint256)._amount (#1082) is not in mixedCase
Parameter FUD.calculateMarketingFee(uint256)._amount (#1088) is not in mixedCase
Parameter FUD.calculateLiquidityFee(uint256)._amount (#1094) is not in mixedCase
Variable FUD._marketingWalletAddress (#784) is not in mixedCase
Variable FUD._maxTxAmount (#798) is not in mixedCase
Variable FUD._taxFee (#803) is not in mixedCase
Variable FUD._marketingFee (#806) is not in mixedCase
Variable FUD._liquidityFee (#809) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#315)" inContext (#309-318)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#643) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#644)
Variable FUD._getValues(uint256).rTransferAmount (#1028) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._transferToExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD._transferStandard(address,address,uint256).rTransferAmount (#1254) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD._transferBothExcluded(address,address,uint256).rTransferAmount (#971) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._transferFromExcluded(address,address,uint256).rTransferAmount (#1275) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD._getValues(uint256).rTransferAmount (#1028) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._transferToExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Variable FUD._getValues(uint256).rTransferAmount (#1028) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD._transferToExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD._transferFromExcluded(address,address,uint256).rTransferAmount (#1275) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Variable FUD._transferBothExcluded(address,address,uint256).rTransferAmount (#971) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD._transferStandard(address,address,uint256).rTransferAmount (#1254) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD._transferFromExcluded(address,address,uint256).rTransferAmount (#1275) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD._getValues(uint256).rTransferAmount (#1028) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Variable FUD._transferBothExcluded(address,address,uint256).rTransferAmount (#971) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Variable FUD.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD._getValues(uint256).rTransferAmount (#1028) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Variable FUD._transferBothExcluded(address,address,uint256).rTransferAmount (#971) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._transferBothExcluded(address,address,uint256).rTransferAmount (#971) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._getValues(uint256).rTransferAmount (#1028) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD._transferToExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1045) is too similar to FUD._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable FUD._transferStandard(address,address,uint256).rTransferAmount (#1254) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._transferStandard(address,address,uint256).rTransferAmount (#1254) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD._transferFromExcluded(address,address,uint256).rTransferAmount (#1275) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._transferToExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._transferToExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1045) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._transferStandard(address,address,uint256).rTransferAmount (#1254) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Variable FUD._transferFromExcluded(address,address,uint256).rTransferAmount (#1275) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._transferFromExcluded(address,address,uint256).rTransferAmount (#1275) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1045) is too similar to FUD._getValues(uint256).tTransferAmount (#1027)
Variable FUD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1045) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._transferBothExcluded(address,address,uint256).rTransferAmount (#971) is too similar to FUD._getTValues(uint256).tTransferAmount (#1036)
Variable FUD._transferStandard(address,address,uint256).rTransferAmount (#1254) is too similar to FUD._transferBothExcluded(address,address,uint256).tTransferAmount (#971)
Variable FUD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1045) is too similar to FUD._transferStandard(address,address,uint256).tTransferAmount (#1254)
Variable FUD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1045) is too similar to FUD._transferToExcluded(address,address,uint256).tTransferAmount (#1264)
Prevent variables from having similar names.
Additional information: link
FUD.slitherConstructorVariables() (#771-1293) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 6 * 10 ** _decimals (#794)
FUD.slitherConstructorVariables() (#771-1293) uses literals with too many digits:
- _maxTxAmount = 500000 * 10 ** 6 * 10 ** _decimals (#798)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FUD._decimals (#791) should be constant
FUD._name (#787) should be constant
FUD._symbol (#788) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#553-556)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#562-566)
name() should be declared external:
- FUD.name() (#856-858)
symbol() should be declared external:
- FUD.symbol() (#860-862)
decimals() should be declared external:
- FUD.decimals() (#864-866)
totalSupply() should be declared external:
- FUD.totalSupply() (#868-870)
transfer(address,uint256) should be declared external:
- FUD.transfer(address,uint256) (#877-880)
allowance(address,address) should be declared external:
- FUD.allowance(address,address) (#882-884)
approve(address,uint256) should be declared external:
- FUD.approve(address,uint256) (#886-889)
transferFrom(address,address,uint256) should be declared external:
- FUD.transferFrom(address,address,uint256) (#891-895)
increaseAllowance(address,uint256) should be declared external:
- FUD.increaseAllowance(address,uint256) (#897-900)
decreaseAllowance(address,uint256) should be declared external:
- FUD.decreaseAllowance(address,uint256) (#902-905)
isExcludedFromReward(address) should be declared external:
- FUD.isExcludedFromReward(address) (#907-909)
totalFees() should be declared external:
- FUD.totalFees() (#911-913)
deliver(uint256) should be declared external:
- FUD.deliver(uint256) (#915-922)
reflectionFromToken(uint256,bool) should be declared external:
- FUD.reflectionFromToken(uint256,bool) (#924-933)
excludeFromReward(address) should be declared external:
- FUD.excludeFromReward(address) (#941-949)
setMarketingWalletAddress(address) should be declared external:
- FUD.setMarketingWalletAddress(address) (#951-955)
excludeFromFee(address) should be declared external:
- FUD.excludeFromFee(address) (#982-984)
includeInFee(address) should be declared external:
- FUD.includeInFee(address) (#986-988)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FUD.setSwapAndLiquifyEnabled(bool) (#1013-1016)
isExcludedFromFee(address) should be declared external:
- FUD.isExcludedFromFee(address) (#1118-1120)
setRouterAddress(address) should be declared external:
- FUD.setRouterAddress(address) (#1285-1290)
Use the external attribute for functions never called from the contract.
Additional information: link
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 contract audit
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 token on CoinHunt
Additional information: link
Unable to find code repository for the project
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
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Discord account