Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
Reentrancy in Token._transfer(address,address,uint256) (#846-887):
External calls:
- swapAndLiquify(contractTokenBalance) (#866)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#866)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _devFee = _previousDevFee (#830)
- _devFee = 0 (#822)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _liquidityFee = _previousLiquidityFee (#828)
- _liquidityFee = 0 (#820)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _rOwned[foundAddress] = _rOwned[foundAddress].add(rDev) (#674)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#787)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurn) (#613)
- _rOwned[devAddress] = _rOwned[devAddress].add(rDev) (#663)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#666)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#551)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#552)
- _rOwned[ownerAddres] = _rOwned[ownerAddres].sub(rAmount) (#560)
- _rOwned[cur] = _rOwned[cur].add(curRAmount) (#605)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _rTotal = _rTotal.sub(rFee) (#726)
Apply the check-effects-interactions pattern.
Additional information: link
Token.setErc20With(address,address,uint256) (#719-721) ignores return value by IERC20(con).transfer(addr,amount) (#720)
Token.swapTokensForDividendToken(uint256) (#936-956) ignores return value by IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Token._takeInviterFee(address,address,uint256) (#572-608) performs a multiplication on the result of a division:
-curTAmount = tAmount.mul(rate).div(1000) (#603)
-curRAmount = curTAmount.mul(currentRate) (#604)
Token.swapAndLiquify(uint256) (#889-916) performs a multiplication on the result of a division:
-addHl = uint256(100).mul(_liquidityFee).div(_liquidityFee.add(lsDevFee)) (#894)
-addNumber = contractTokenBalance.mul(addHl).div(100) (#895)
Consider ordering multiplication before division.
Additional information: link
PancakeLibrary.getAmountsOut(address,uint256,address[]).i (#382) 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
Token.addLiquidity(uint256,uint256) (#522-535) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
Ensure that all the return values of the function calls are used.
Additional information: link
Token.allowance(address,address).owner (#510) shadows:
- Ownable.owner() (#90-92) (function)
Token._approve(address,address,uint256).owner (#838) shadows:
- Ownable.owner() (#90-92) (function)
Rename the local variables that shadow another component.
Additional information: link
Token.setTaxFeePercent(uint256) (#686-688) should emit an event for:
- _taxFee = taxFee (#687)
Token.setLiquidityFeePercent(uint256) (#690-692) should emit an event for:
- _liquidityFee = liquidityFee (#691)
Token.setBurnFeePercent(uint256) (#694-696) should emit an event for:
- _burnFee = burnFee (#695)
Token.setDevFeePercent(uint256) (#698-700) should emit an event for:
- _devFee = devFee (#699)
Emit an event for critical parameter changes.
Additional information: link
Ownable.setOwner(address,bool).addr (#113) lacks a zero-check on :
- _owner = addr (#114)
Token.setEthWith(address,uint256).addr (#715) lacks a zero-check on :
- address(addr).transfer(amount) (#716)
Check that the address is not zero.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#846-887):
External calls:
- swapAndLiquify(contractTokenBalance) (#866)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#866)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _burnFee = _previousBurnFee (#829)
- _burnFee = 0 (#821)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _inviterFee = _previousInviterFee (#831)
- _inviterFee = 0 (#823)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _previousBurnFee = _burnFee (#815)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _previousDevFee = _devFee (#816)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _previousInviterFee = _inviterFee (#817)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _previousLiquidityFee = _liquidityFee (#814)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _previousTaxFee = _taxFee (#813)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _tFeeTotal = _tFeeTotal.add(tFee) (#727)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- _taxFee = _previousTaxFee (#827)
- _taxFee = 0 (#819)
- inviter[to] = from (#885)
Reentrancy in Token.constructor() (#468-483):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#473)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#477)
- _isExcludedFromFee[ownerAddres] = true (#478)
- _isExcludedFromFee[burnAddress] = true (#479)
- _isExcludedFromFee[address(this)] = true (#480)
- uniswapV2Router = _uniswapV2Router (#474)
Reentrancy in Token.swapAndLiquify(uint256) (#889-916):
External calls:
- swapTokensForEth(half) (#903)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#910)
- _allowances[owner][spender] = amount (#842)
Reentrancy in Token.swapAndLiquify(uint256) (#889-916):
External calls:
- swapTokensForEth(half) (#903)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- swapTokensForDividendToken(devNumber) (#913)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
State variables written after the call(s):
- swapTokensForDividendToken(devNumber) (#913)
- _allowances[owner][spender] = amount (#842)
Reentrancy in Token.transferFrom(address,address,uint256) (#622-626):
External calls:
- _transfer(sender,recipient,amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- _transfer(sender,recipient,amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#624)
- _allowances[owner][spender] = amount (#842)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#846-887):
External calls:
- swapAndLiquify(contractTokenBalance) (#866)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#866)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
Event emitted after the call(s):
- Transfer(sender,foundAddress,tDev) (#675)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- Transfer(sender,burnAddress,tBurn) (#614)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- Transfer(sender,devAddress,tDev) (#664)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- Transfer(sender,address(this),tDev) (#667)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- Transfer(sender,recipient,tTransferAmount) (#553)
- _tokenTransfer(from,to,amount,takeFee) (#882)
- Transfer(sender,cur,curTAmount) (#606)
- _tokenTransfer(from,to,amount,takeFee) (#882)
Reentrancy in Token.constructor() (#468-483):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#473)
Event emitted after the call(s):
- Transfer(address(0),ownerAddres,_tTotal) (#482)
Reentrancy in Token.swapAndLiquify(uint256) (#889-916):
External calls:
- swapTokensForEth(half) (#903)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#843)
- addLiquidity(otherHalf,newBalance) (#910)
Reentrancy in Token.swapAndLiquify(uint256) (#889-916):
External calls:
- swapTokensForEth(half) (#903)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- swapTokensForDividendToken(devNumber) (#913)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#843)
- swapTokensForDividendToken(devNumber) (#913)
- SwapAndLiquify(half,newBalance,otherHalf) (#915)
Reentrancy in Token.transferFrom(address,address,uint256) (#622-626):
External calls:
- _transfer(sender,recipient,amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#927-933)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#946-952)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#954)
External calls sending eth:
- _transfer(sender,recipient,amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(devAddress),block.timestamp) (#527-534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#843)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#624)
Apply the check-effects-interactions pattern.
Additional information: link
Token.isContract(address) (#514-520) uses assembly
- INLINE ASM (#516-518)
Do not use evm assembly.
Additional information: link
Context._msgData() (#72-75) is never used and should be removed
PancakeLibrary.getAmountIn(uint256,uint256,uint256) (#369-375) is never used and should be removed
PancakeLibrary.getAmountOut(uint256,uint256,uint256) (#359-366) is never used and should be removed
PancakeLibrary.getAmountsIn(address,uint256,address[]) (#389-397) is never used and should be removed
PancakeLibrary.getAmountsOut(address,uint256,address[]) (#378-386) is never used and should be removed
PancakeLibrary.getReserves(address,address,address) (#344-349) is never used and should be removed
PancakeLibrary.pairFor(address,address,address) (#333-341) is never used and should be removed
PancakeLibrary.quote(uint256,uint256,uint256) (#352-356) is never used and should be removed
PancakeLibrary.sortTokens(address,address) (#326-330) is never used and should be removed
SafeMath.mod(uint256,uint256) (#46-48) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#50-53) is never used and should be removed
Remove unused functions.
Additional information: link
Token._rTotal (#412) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Token._previousTaxFee (#420) is set pre-construction with a non-constant function or state variable:
- _taxFee
Token._previousLiquidityFee (#423) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Token._previousBurnFee (#426) is set pre-construction with a non-constant function or state variable:
- _burnFee
Token._previousDevFee (#429) is set pre-construction with a non-constant function or state variable:
- _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
Variable Ownable._owner (#79) is not in mixedCase
Function IPancakeRouter01.WETH() (#122) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#270) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#271) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#288) is not in mixedCase
Parameter Token.setSwapAndLiquifyEnabled(bool)._enabled (#702) is not in mixedCase
Parameter Token.setLiquifyEnabled(bool)._enabled (#707) is not in mixedCase
Parameter Token.setSwapDevEnabled(bool)._enabled (#711) is not in mixedCase
Parameter Token.calculateTaxFee(uint256)._amount (#790) is not in mixedCase
Parameter Token.calculateLiquidityFee(uint256)._amount (#794) is not in mixedCase
Parameter Token.calculateBurnFee(uint256)._amount (#798) is not in mixedCase
Parameter Token.calculateDevFee(uint256)._amount (#802) is not in mixedCase
Parameter Token.calculateInvFee(uint256)._amount (#806) is not in mixedCase
Variable Token._taxFee (#419) is not in mixedCase
Variable Token._liquidityFee (#422) is not in mixedCase
Variable Token._burnFee (#425) is not in mixedCase
Variable Token._devFee (#428) is not in mixedCase
Variable Token._inviterFee (#431) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#73)" inContext (#67-76)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#127) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#128)
Variable Token._transferStandard(address,address,uint256,bool).rTransferAmount (#549) is too similar to Token._getValues(uint256).tTransferAmount (#740)
Variable Token._transferStandard(address,address,uint256,bool).rTransferAmount (#549) is too similar to Token._getTValues(uint256).tTransferAmount (#752)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#648) is too similar to Token._getValues(uint256).tTransferAmount (#740)
Variable Token._transferStandard(address,address,uint256,bool).rTransferAmount (#549) is too similar to Token._transferStandard(address,address,uint256,bool).tTransferAmount (#549)
Variable Token._getRValues(Token.TData,uint256).rTransferAmount (#766) is too similar to Token._getTValues(uint256).tTransferAmount (#752)
Variable Token._getRValues(Token.TData,uint256).rTransferAmount (#766) is too similar to Token._getValues(uint256).tTransferAmount (#740)
Variable Token._getRValues(Token.TData,uint256).rTransferAmount (#766) is too similar to Token._transferStandard(address,address,uint256,bool).tTransferAmount (#549)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#648) is too similar to Token._getTValues(uint256).tTransferAmount (#752)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#648) is too similar to Token._transferStandard(address,address,uint256,bool).tTransferAmount (#549)
Variable Token._getValues(uint256).rTransferAmount (#742) is too similar to Token._getTValues(uint256).tTransferAmount (#752)
Variable Token._getValues(uint256).rTransferAmount (#742) is too similar to Token._transferStandard(address,address,uint256,bool).tTransferAmount (#549)
Variable Token._getValues(uint256).rTransferAmount (#742) is too similar to Token._getValues(uint256).tTransferAmount (#740)
Prevent variables from having similar names.
Additional information: link
Token._transferStandard(address,address,uint256,bool) (#548-570) uses literals with too many digits:
- balanceOf(burnAddress) < 90000000000 * 10 ** 18 && ! _isExcludedFromFee[sender] (#559)
Token.slitherConstructorVariables() (#400-958) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 18 (#411)
Token.slitherConstructorVariables() (#400-958) uses literals with too many digits:
- burnAddress = address(0x000000000000000000000000000000000000dEaD) (#436)
Token.slitherConstructorVariables() (#400-958) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 18 (#452)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Token._tOwned (#404) is never used in Token (#400-958)
Remove unused state variables.
Additional information: link
Token._name (#415) should be constant
Token._symbol (#416) should be constant
Token._tTotal (#411) should be constant
Token.burnAddress (#436) should be constant
Token.devAddress (#439) should be constant
Token.foundAddress (#440) should be constant
Token.husdtToken (#442) should be constant
Token.numTokensSellToAddToLiquidity (#452) should be constant
Token.ownerAddres (#438) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#99-103)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#105-111)
setOwner(address,bool) should be declared external:
- Ownable.setOwner(address,bool) (#113-116)
name() should be declared external:
- Token.name() (#485-487)
symbol() should be declared external:
- Token.symbol() (#489-491)
decimals() should be declared external:
- Token.decimals() (#493-495)
totalSupply() should be declared external:
- Token.totalSupply() (#497-499)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#505-508)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#510-512)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#617-620)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#622-626)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#628-631)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#633-636)
totalFees() should be declared external:
- Token.totalFees() (#638-640)
reflectionFromToken(uint256,bool) should be declared external:
- Token.reflectionFromToken(uint256,bool) (#642-651)
setExcludedFromFee(address,bool) should be declared external:
- Token.setExcludedFromFee(address,bool) (#678-680)
setBlack(address,bool) should be declared external:
- Token.setBlack(address,bool) (#682-684)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Token.setSwapAndLiquifyEnabled(bool) (#702-705)
setLiquifyEnabled(bool) should be declared external:
- Token.setLiquifyEnabled(bool) (#707-709)
setSwapDevEnabled(bool) should be declared external:
- Token.setSwapDevEnabled(bool) (#711-713)
setEthWith(address,uint256) should be declared external:
- Token.setEthWith(address,uint256) (#715-717)
setErc20With(address,address,uint256) should be declared external:
- Token.setErc20With(address,address,uint256) (#719-721)
isExcludedFromFee(address) should be declared external:
- Token.isExcludedFromFee(address) (#834-836)
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.
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.
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts