Genuine NFT marketplace project that designed and prepared for everyone
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
Reentrancy in FSDCOIN._transfer(address,address,uint256) (#1112-1156):
External calls:
- swapAndLiquify(contractTokenBalance) (#1143)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1143)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1051)
- _rOwned[_MarketingWalletAddress] = _rOwned[_MarketingWalletAddress].add(rMarketing) (#1059)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1247)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1237)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1259)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1238)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#960)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1260)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1249)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#962)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _rTotal = _rTotal.sub(rFee) (#1004)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _tOwned[_MarketingWalletAddress] = _tOwned[_MarketingWalletAddress].add(tMarketing) (#1061)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1053)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1258)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#959)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1248)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#961)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
FSDCOIN.addLiquidity(uint256,uint256) (#1199-1212) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
Ensure that all the return values of the function calls are used.
Additional information: link
FSDCOIN.includeInReward(address) (#945-956) has costly operations inside a loop:
- _excluded.pop() (#952)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version^0.8.3 (#9) 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
Redundant expression "this (#317)" inContext (#311-320)
Remove redundant statements if they congest code but offer no value.
Additional information: link
FSDCOIN.allowance(address,address).owner (#876) shadows:
- Ownable.owner() (#536-538) (function)
FSDCOIN._approve(address,address,uint256).owner (#1104) shadows:
- Ownable.owner() (#536-538) (function)
Rename the local variables that shadow another component.
Additional information: link
FSDCOIN.setTaxFeePercent(uint256) (#977-979) should emit an event for:
- _taxFee = taxFee (#978)
FSDCOIN.setMarketingFeePercent(uint256) (#981-983) should emit an event for:
- _marketingFee = marketingFee (#982)
FSDCOIN.setLiquidityFeePercent(uint256) (#985-987) should emit an event for:
- _liquidityFee = liquidityFee (#986)
FSDCOIN.setMaxTxPercent(uint256) (#989-993) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#990-992)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in FSDCOIN._transfer(address,address,uint256) (#1112-1156):
External calls:
- swapAndLiquify(contractTokenBalance) (#1143)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1143)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _liquidityFee = _previousLiquidityFee (#1097)
- _liquidityFee = 0 (#1091)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _marketingFee = _previousMarketingFee (#1096)
- _marketingFee = 0 (#1090)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _previousLiquidityFee = _liquidityFee (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _previousMarketingFee = _marketingFee (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _previousTaxFee = _taxFee (#1085)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1005)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- _taxFee = _previousTaxFee (#1095)
- _taxFee = 0 (#1089)
Reentrancy in FSDCOIN.constructor() (#825-847):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#835-836)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#842)
- _isExcludedFromFee[address(this)] = true (#843)
- uniswapV2Router = _uniswapV2Router (#839)
Reentrancy in FSDCOIN.swapAndLiquify(uint256) (#1158-1179):
External calls:
- swapTokensForEth(half) (#1170)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
- addLiquidity(otherHalf,newBalance) (#1176)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1176)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1176)
- _allowances[owner][spender] = amount (#1108)
Reentrancy in FSDCOIN.transferFrom(address,address,uint256) (#885-889):
External calls:
- _transfer(sender,recipient,amount) (#886)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
External calls sending eth:
- _transfer(sender,recipient,amount) (#886)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#887)
- _allowances[owner][spender] = amount (#1108)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FSDCOIN._transfer(address,address,uint256) (#1112-1156):
External calls:
- swapAndLiquify(contractTokenBalance) (#1143)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1143)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1242)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- Transfer(sender,recipient,tTransferAmount) (#1264)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- Transfer(sender,recipient,tTransferAmount) (#1253)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
- Transfer(sender,recipient,tTransferAmount) (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1155)
Reentrancy in FSDCOIN.constructor() (#825-847):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#835-836)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#846)
Reentrancy in FSDCOIN.swapAndLiquify(uint256) (#1158-1179):
External calls:
- swapTokensForEth(half) (#1170)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
- addLiquidity(otherHalf,newBalance) (#1176)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1176)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1109)
- addLiquidity(otherHalf,newBalance) (#1176)
- SwapAndLiquify(half,newBalance,otherHalf) (#1178)
Reentrancy in FSDCOIN.transferFrom(address,address,uint256) (#885-889):
External calls:
- _transfer(sender,recipient,amount) (#886)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1190-1196)
External calls sending eth:
- _transfer(sender,recipient,amount) (#886)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1204-1211)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1109)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#887)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#343-352) uses assembly
- INLINE ASM (#350)
Address._verifyCallResult(bool,bytes,string) (#488-505) uses assembly
- INLINE ASM (#497-500)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#488-505) is never used and should be removed
Address.functionCall(address,bytes) (#396-398) is never used and should be removed
Address.functionCall(address,bytes,string) (#406-408) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#421-423) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#431-438) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#470-472) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#480-486) is never used and should be removed
Address.functionStaticCall(address,bytes) (#446-448) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#456-462) is never used and should be removed
Address.isContract(address) (#343-352) is never used and should be removed
Address.sendValue(address,uint256) (#370-376) is never used and should be removed
Context._msgData() (#316-319) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#271-276) is never used and should be removed
SafeMath.mod(uint256,uint256) (#231-233) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#293-298) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#102-108) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#144-149) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#156-161) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#127-137) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#115-120) is never used and should be removed
Remove unused functions.
Additional information: link
FSDCOIN._rTotal (#788) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FSDCOIN._previousTaxFee (#795) is set pre-construction with a non-constant function or state variable:
- _taxFee
FSDCOIN._previousMarketingFee (#797) is set pre-construction with a non-constant function or state variable:
- _marketingFee
FSDCOIN._previousLiquidityFee (#799) 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
Low level call in Address.sendValue(address,uint256) (#370-376):
- (success) = recipient.call{value: amount}() (#374)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#431-438):
- (success,returndata) = target.call{value: value}(data) (#436)
Low level call in Address.functionStaticCall(address,bytes,string) (#456-462):
- (success,returndata) = target.staticcall(data) (#460)
Low level call in Address.functionDelegateCall(address,bytes,string) (#480-486):
- (success,returndata) = target.delegatecall(data) (#484)
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() (#602) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#603) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#620) is not in mixedCase
Function IUniswapV2Router01.WETH() (#640) is not in mixedCase
Parameter FSDCOIN.setSwapAndLiquifyEnabled(bool)._enabled (#995) is not in mixedCase
Parameter FSDCOIN.calculateTaxFee(uint256)._amount (#1064) is not in mixedCase
Parameter FSDCOIN.calculateMarketingFee(uint256)._amount (#1070) is not in mixedCase
Parameter FSDCOIN.calculateLiquidityFee(uint256)._amount (#1076) is not in mixedCase
Variable FSDCOIN._MarketingWalletAddress (#784) is not in mixedCase
Variable FSDCOIN._taxFee (#794) is not in mixedCase
Variable FSDCOIN._marketingFee (#796) is not in mixedCase
Variable FSDCOIN._liquidityFee (#798) is not in mixedCase
Variable FSDCOIN._maxTxAmount (#807) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#645) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#646)
Variable FSDCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#958) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#924) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN._getValues(uint256).rTransferAmount (#1010) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Variable FSDCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#958) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#924) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#958) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Variable FSDCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#958) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1257) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#958) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#924) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#924) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Variable FSDCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#924) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Variable FSDCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#924) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._getValues(uint256).rTransferAmount (#1010) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1257) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN._transferStandard(address,address,uint256).rTransferAmount (#1236) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1257) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._transferStandard(address,address,uint256).rTransferAmount (#1236) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#958) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1257) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._transferStandard(address,address,uint256).rTransferAmount (#1236) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._transferStandard(address,address,uint256).rTransferAmount (#1236) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Variable FSDCOIN._getValues(uint256).rTransferAmount (#1010) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1257) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Variable FSDCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to FSDCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#958)
Variable FSDCOIN._getValues(uint256).rTransferAmount (#1010) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1257) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to FSDCOIN._transferStandard(address,address,uint256).tTransferAmount (#1236)
Variable FSDCOIN._transferStandard(address,address,uint256).rTransferAmount (#1236) is too similar to FSDCOIN._getValues(uint256).tTransferAmount (#1009)
Variable FSDCOIN._getValues(uint256).rTransferAmount (#1010) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to FSDCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1257)
Variable FSDCOIN._transferStandard(address,address,uint256).rTransferAmount (#1236) is too similar to FSDCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#1246)
Variable FSDCOIN._getValues(uint256).rTransferAmount (#1010) is too similar to FSDCOIN._getTValues(uint256).tTransferAmount (#1018)
Prevent variables from having similar names.
Additional information: link
FSDCOIN.slitherConstructorVariables() (#773-1268) uses literals with too many digits:
- _tTotal = 1000000000000000000 (#787)
FSDCOIN.slitherConstructorVariables() (#773-1268) uses literals with too many digits:
- _maxTxAmount = 30000000000000000 (#807)
FSDCOIN.slitherConstructorVariables() (#773-1268) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 30000000000000000 (#808)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FSDCOIN._MarketingWalletAddress (#784) should be constant
FSDCOIN._decimals (#793) should be constant
FSDCOIN._name (#791) should be constant
FSDCOIN._symbol (#792) should be constant
FSDCOIN._tTotal (#787) should be constant
FSDCOIN.numTokensSellToAddToLiquidity (#808) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#555-558)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#564-568)
name() should be declared external:
- FSDCOIN.name() (#850-852)
symbol() should be declared external:
- FSDCOIN.symbol() (#854-856)
decimals() should be declared external:
- FSDCOIN.decimals() (#858-860)
totalSupply() should be declared external:
- FSDCOIN.totalSupply() (#862-864)
transfer(address,uint256) should be declared external:
- FSDCOIN.transfer(address,uint256) (#871-874)
allowance(address,address) should be declared external:
- FSDCOIN.allowance(address,address) (#876-878)
approve(address,uint256) should be declared external:
- FSDCOIN.approve(address,uint256) (#880-883)
transferFrom(address,address,uint256) should be declared external:
- FSDCOIN.transferFrom(address,address,uint256) (#885-889)
increaseAllowance(address,uint256) should be declared external:
- FSDCOIN.increaseAllowance(address,uint256) (#891-894)
decreaseAllowance(address,uint256) should be declared external:
- FSDCOIN.decreaseAllowance(address,uint256) (#896-899)
isExcludedFromReward(address) should be declared external:
- FSDCOIN.isExcludedFromReward(address) (#901-903)
totalFees() should be declared external:
- FSDCOIN.totalFees() (#905-907)
deliver(uint256) should be declared external:
- FSDCOIN.deliver(uint256) (#909-916)
reflectionFromToken(uint256,bool) should be declared external:
- FSDCOIN.reflectionFromToken(uint256,bool) (#918-927)
excludeFromReward(address) should be declared external:
- FSDCOIN.excludeFromReward(address) (#935-943)
excludeFromFee(address) should be declared external:
- FSDCOIN.excludeFromFee(address) (#969-971)
includeInFee(address) should be declared external:
- FSDCOIN.includeInFee(address) (#973-975)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FSDCOIN.setSwapAndLiquifyEnabled(bool) (#995-998)
isExcludedFromFee(address) should be declared external:
- FSDCOIN.isExcludedFromFee(address) (#1100-1102)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Token is deployed only at one blockchain
Contract has 1% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
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 Telegram link on the website
Unable to find Twitter link on the website
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Last post in Twitter was more than 180 days ago
Unable to find Youtube account
Unable to find Discord account