Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
GhostTiger.addLiquidity(uint256,uint256) (#745-758) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in GhostTiger._transfer(address,address,uint256) (#654-692):
External calls:
- swapAndLiquify(contractTokenBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#676)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#679)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#687)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _balances[deadAddress] = _balances[deadAddress].add(burnAmount) (#767)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#784)
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.
Reentrancy in GhostTiger.changeRouterVersion(address) (#621-638):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#629-630)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#637)
Apply the check-effects-interactions pattern.
Additional information: link
GhostTiger.addLiquidity(uint256,uint256) (#745-758) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Ensure that all the return values of the function calls are used.
Additional information: link
GhostTiger.allowance(address,address).owner (#507) shadows:
- Ownable.owner() (#150-152) (function)
GhostTiger._approve(address,address,uint256).owner (#530) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.
Additional information: link
GhostTiger.setBuyTaxes(uint256,uint256,uint256,uint256) (#550-557) should emit an event for:
- _buyLiquidityFee = newLiquidityTax (#551)
- _buyMarketingFee = newMarketingTax (#552)
- _buyTeamFee = newTeamTax (#553)
- _burnfee = newBurnTax (#554)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee).add(_burnfee) (#556)
GhostTiger.setSellTaxes(uint256,uint256,uint256,uint256) (#559-566) should emit an event for:
- _sellLiquidityFee = newLiquidityTax (#560)
- _sellMarketingFee = newMarketingTax (#561)
- _sellTeamFee = newTeamTax (#562)
- _burnfee = newBurnTax (#563)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee).add(_burnfee) (#565)
GhostTiger.setDistributionSettings(uint256,uint256,uint256) (#568-574) should emit an event for:
- _liquidityShare = newLiquidityShare (#569)
- _teamShare = newTeamShare (#571)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#573)
GhostTiger.setMaxTxAmount(uint256) (#576-578) should emit an event for:
- _maxTxAmount = maxTxAmount (#577)
GhostTiger.setWalletLimit(uint256) (#588-590) should emit an event for:
- _walletMax = newLimit (#589)
GhostTiger.setNumTokensBeforeSwap(uint256) (#592-594) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#593)
Emit an event for critical parameter changes.
Additional information: link
GhostTiger.setMarketingWalletAddress(address).newAddress (#596) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#597)
GhostTiger.setTeamWalletAddress(address).newAddress (#600) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#601)
Check that the address is not zero.
Additional information: link
Reentrancy in GhostTiger._transfer(address,address,uint256) (#654-692):
External calls:
- swapAndLiquify(contractTokenBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#676)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _burnfee = 0 (#770)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#771)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#772)
Reentrancy in GhostTiger.changeRouterVersion(address) (#621-638):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#629-630)
State variables written after the call(s):
- isWalletLimitExempt[address(uniswapPair)] = true (#636)
- uniswapPair = newPairAddress (#633)
- uniswapV2Router = _uniswapV2Router (#634)
Reentrancy in GhostTiger.constructor(string,string,uint256,uint256) (#449-485):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#453-454)
State variables written after the call(s):
- _MaxBurnRate = MaxBurnRate (#464)
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#457)
- _balances[_msgSender()] = _totalSupply (#483)
- _burnfee = Burnfee (#464)
- _name = NAME (#463)
- _symbol = SYMBOL (#463)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#468)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee).add(_burnfee) (#466)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee).add(_burnfee) (#467)
- isExcludedFromFee[owner()] = true (#459)
- isExcludedFromFee[address(this)] = true (#460)
- isExcludedFromFee[teamWalletAddress] = true (#461)
- isExcludedFromFee[marketingWalletAddress] = true (#462)
- isMarketPair[address(uniswapPair)] = true (#480)
- isMarketPair[marketingWalletAddress] = true (#481)
- isTxLimitExempt[owner()] = true (#476)
- isTxLimitExempt[address(this)] = true (#477)
- isTxLimitExempt[marketingWalletAddress] = true (#478)
- isWalletLimitExempt[owner()] = true (#470)
- isWalletLimitExempt[address(uniswapPair)] = true (#471)
- isWalletLimitExempt[address(this)] = true (#472)
- isWalletLimitExempt[deadAddress] = true (#473)
- isWalletLimitExempt[marketingWalletAddress] = true (#474)
- uniswapV2Router = _uniswapV2Router (#456)
Reentrancy in GhostTiger.swapAndLiquify(uint256) (#701-723):
External calls:
- swapTokensForEth(tokensForSwap) (#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#716)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#719)
- recipient.transfer(amount) (#618)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- _allowances[owner][spender] = amount (#534)
Reentrancy in GhostTiger.transferFrom(address,address,uint256) (#648-652):
External calls:
- _transfer(sender,recipient,amount) (#649)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#649)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#650)
- _allowances[owner][spender] = amount (#534)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in GhostTiger._transfer(address,address,uint256) (#654-692):
External calls:
- swapAndLiquify(contractTokenBalance) (#676)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#676)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#785)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- Transfer(sender,recipient,finalAmount) (#689)
Reentrancy in GhostTiger.constructor(string,string,uint256,uint256) (#449-485):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#453-454)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#484)
Reentrancy in GhostTiger.swapAndLiquify(uint256) (#701-723):
External calls:
- swapTokensForEth(tokensForSwap) (#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#716)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#719)
- recipient.transfer(amount) (#618)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
Reentrancy in GhostTiger.swapTokensForEth(uint256) (#725-743):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#742)
Reentrancy in GhostTiger.transferFrom(address,address,uint256) (#648-652):
External calls:
- _transfer(sender,recipient,amount) (#649)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#734-740)
External calls sending eth:
- _transfer(sender,recipient,amount) (#649)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#650)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.
Additional information: link
GhostTiger._totalSupply (#411) is set pre-construction with a non-constant function or state variable:
- 1000 * 10 ** 6 * 10 ** 2 * 10 ** _decimals
GhostTiger._maxTxAmount (#412) is set pre-construction with a non-constant function or state variable:
- 5 * 10 ** 6 * 10 ** 2 * 10 ** _decimals
GhostTiger._walletMax (#413) is set pre-construction with a non-constant function or state variable:
- 5 * 10 ** 6 * 10 ** 2 * 10 ** _decimals
GhostTiger.minimumTokensBeforeSwap (#414) is set pre-construction with a non-constant function or state variable:
- 1 * 10 ** 6 * 10 ** _decimals
GhostTiger.total (#423) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 ** 6
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) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#202) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#203) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#219) is not in mixedCase
Function IUniswapV2Router01.WETH() (#238) is not in mixedCase
Parameter GhostTiger.setSwapAndLiquifyEnabled(bool)._enabled (#604) is not in mixedCase
Variable GhostTiger._balances (#384) is not in mixedCase
Variable GhostTiger._burnfee (#392) is not in mixedCase
Variable GhostTiger._MaxBurnRate (#393) is not in mixedCase
Variable GhostTiger._buyLiquidityFee (#395) is not in mixedCase
Variable GhostTiger._buyMarketingFee (#396) is not in mixedCase
Variable GhostTiger._buyTeamFee (#397) is not in mixedCase
Variable GhostTiger._sellLiquidityFee (#399) is not in mixedCase
Variable GhostTiger._sellMarketingFee (#400) is not in mixedCase
Variable GhostTiger._sellTeamFee (#401) is not in mixedCase
Variable GhostTiger._liquidityShare (#403) is not in mixedCase
Variable GhostTiger._marketingShare (#404) is not in mixedCase
Variable GhostTiger._teamShare (#405) is not in mixedCase
Variable GhostTiger._totalTaxIfBuying (#407) is not in mixedCase
Variable GhostTiger._totalTaxIfSelling (#408) is not in mixedCase
Variable GhostTiger._totalDistributionShares (#409) is not in mixedCase
Variable GhostTiger._maxTxAmount (#412) is not in mixedCase
Variable GhostTiger._walletMax (#413) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in GhostTiger._transfer(address,address,uint256) (#654-692):
External calls:
- swapAndLiquify(contractTokenBalance) (#676)
- recipient.transfer(amount) (#618)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#676)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#679)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#687)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _balances[deadAddress] = _balances[deadAddress].add(burnAmount) (#767)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#784)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _burnfee = 0 (#770)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#771)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#772)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#785)
- finalAmount = takeFee(sender,recipient,amount) (#681-682)
- Transfer(sender,recipient,finalAmount) (#689)
Reentrancy in GhostTiger.swapAndLiquify(uint256) (#701-723):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#716)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#719)
- recipient.transfer(amount) (#618)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#716)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#719)
- recipient.transfer(amount) (#618)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
- _allowances[owner][spender] = amount (#534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#722)
Reentrancy in GhostTiger.transferFrom(address,address,uint256) (#648-652):
External calls:
- _transfer(sender,recipient,amount) (#649)
- recipient.transfer(amount) (#618)
External calls sending eth:
- _transfer(sender,recipient,amount) (#649)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#650)
- _allowances[owner][spender] = amount (#534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#650)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#243) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#244)
Prevent variables from having similar names.
Additional information: link
GhostTiger.slitherConstructorVariables() (#371-792) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#382)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
GhostTiger._decimals (#378) should be constant
GhostTiger.deadAddress (#382) should be constant
GhostTiger.max (#424) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#159-162)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#164-168)
name() should be declared external:
- GhostTiger.name() (#487-489)
symbol() should be declared external:
- GhostTiger.symbol() (#491-493)
decimals() should be declared external:
- GhostTiger.decimals() (#495-497)
totalSupply() should be declared external:
- GhostTiger.totalSupply() (#499-501)
allowance(address,address) should be declared external:
- GhostTiger.allowance(address,address) (#507-509)
increaseAllowance(address,uint256) should be declared external:
- GhostTiger.increaseAllowance(address,uint256) (#511-514)
decreaseAllowance(address,uint256) should be declared external:
- GhostTiger.decreaseAllowance(address,uint256) (#516-519)
minimumTokensBeforeSwapAmount() should be declared external:
- GhostTiger.minimumTokensBeforeSwapAmount() (#521-523)
approve(address,uint256) should be declared external:
- GhostTiger.approve(address,uint256) (#525-528)
setMarketPairStatus(address,bool) should be declared external:
- GhostTiger.setMarketPairStatus(address,bool) (#538-540)
setIsExcludedFromFee(address,bool) should be declared external:
- GhostTiger.setIsExcludedFromFee(address,bool) (#546-548)
setSwapAndLiquifyEnabled(bool) should be declared external:
- GhostTiger.setSwapAndLiquifyEnabled(bool) (#604-607)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- GhostTiger.setSwapAndLiquifyByLimitOnly(bool) (#609-611)
getCirculatingSupply() should be declared external:
- GhostTiger.getCirculatingSupply() (#613-615)
changeRouterVersion(address) should be declared external:
- GhostTiger.changeRouterVersion(address) (#621-638)
transfer(address,uint256) should be declared external:
- GhostTiger.transfer(address,uint256) (#643-646)
transferFrom(address,address,uint256) should be declared external:
- GhostTiger.transferFrom(address,address,uint256) (#648-652)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts