GaoKaoDoge Token Logo

GKD [GaoKaoDoge] Token

About GKD

Listings

Token 3 years

Website

Description

Social

Not Found

Laser Scorebeta Last Audit: 28 June 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links

GaoKaoDoge.addLiquidity(uint256,uint256) (#824-837) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
GaoKaoDoge.sendETHToFee(uint256) (#869-871) sends eth to arbitrary user
Dangerous calls:
- marketingWalletAddress.transfer(amount) (#870)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GaoKaoDoge._transfer(address,address,uint256) (#719-775):
External calls:
- swapAndLiquify(contractTokenBalance) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#746)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance).add(amount.div(100000)) (#748)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#852)
- _balances[address(this)] = _balances[address(this)].add(finalAmount) (#760)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#770)
- addBot(recipient) (#762)
- _isBlacklisted[recipient] = true (#711)
Apply the check-effects-interactions pattern.

Additional information: link

GaoKaoDoge.rescueToken(address,uint256) (#874-878) ignores return value by IERC20(TokenAddress).transfer(_msgSender(),_amount) (#877)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

GaoKaoDoge.addLiquidity(uint256,uint256) (#824-837) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
Ensure that all the return values of the function calls are used.

Additional information: link

GaoKaoDoge.allowance(address,address).owner (#531) shadows:
- Ownable.owner() (#160-162) (function)
GaoKaoDoge._approve(address,address,uint256).owner (#554) shadows:
- Ownable.owner() (#160-162) (function)
Rename the local variables that shadow another component.

Additional information: link

GaoKaoDoge.Launch(uint256) (#563-567) should emit an event for:
- killblock = _kill (#565)
GaoKaoDoge.setKillNum(uint256) (#570-572) should emit an event for:
- killblock = kill (#571)
GaoKaoDoge.setBuyTaxes(uint256,uint256) (#589-594) should emit an event for:
- _buyLiquidityFee = newLiquidityTax (#590)
- _buyMarketingFee = newMarketingTax (#591)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee) (#593)
GaoKaoDoge.setSellTaxes(uint256,uint256) (#596-601) should emit an event for:
- _sellLiquidityFee = newLiquidityTax (#597)
- _sellMarketingFee = newMarketingTax (#598)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee) (#600)
GaoKaoDoge.setDistributionSettings(uint256,uint256) (#603-608) should emit an event for:
- _liquidityShare = newLiquidityShare (#604)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#607)
GaoKaoDoge.setLimitTransaction(uint256) (#617-619) should emit an event for:
- _maxTxAmount = maxTxAmount (#618)
GaoKaoDoge.setLimitAll(uint256) (#636-639) should emit an event for:
- _maxTxAmount = _newLimit * 10 ** _decimals (#637)
- _walletMax = _newLimit * 10 ** _decimals (#638)
GaoKaoDoge.setLimitWallet(uint256) (#643-645) should emit an event for:
- _walletMax = newLimit (#644)
GaoKaoDoge.setNumTokensBeforeSwap(uint256) (#647-649) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#648)
Emit an event for critical parameter changes.

Additional information: link

GaoKaoDoge.setMarketingWalletAddress(address).newAddress (#651) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#652)
Check that the address is not zero.

Additional information: link

Reentrancy in GaoKaoDoge.changeRouterVersion(address) (#673-690):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#681-682)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#689)
- isWalletLimitExempt[address(uniswapPair)] = true (#688)
- uniswapPair = newPairAddress (#685)
- uniswapV2Router = _uniswapV2Router (#686)
Reentrancy in GaoKaoDoge.constructor() (#470-509):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#474-475)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#478)
- _balances[_msgSender()] = _totalSupply (#507)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#488)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee) (#486)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee) (#487)
- isExcludedFromFee[owner()] = true (#481)
- isExcludedFromFee[address(this)] = true (#482)
- isExcludedFromFee[marketingWalletAddress] = true (#483)
- isExcludedFromFee[liquidityWalletAddress] = true (#484)
- isMarketPair[address(uniswapPair)] = true (#505)
- isTxLimitExempt[owner()] = true (#499)
- isTxLimitExempt[address(this)] = true (#500)
- isTxLimitExempt[deadAddress] = true (#501)
- isTxLimitExempt[marketingWalletAddress] = true (#502)
- isTxLimitExempt[liquidityWalletAddress] = true (#503)
- isWalletLimitExempt[owner()] = true (#491)
- isWalletLimitExempt[address(uniswapPair)] = true (#492)
- isWalletLimitExempt[address(this)] = true (#493)
- isWalletLimitExempt[deadAddress] = true (#494)
- isWalletLimitExempt[marketingWalletAddress] = true (#495)
- isWalletLimitExempt[liquidityWalletAddress] = true (#496)
- uniswapV2Router = _uniswapV2Router (#477)
Reentrancy in GaoKaoDoge.swapAndLiquify(uint256) (#784-802):
External calls:
- swapTokensForEth(tokensForSwap) (#789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#798)
- recipient.transfer(amount) (#670)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- _allowances[owner][spender] = amount (#558)
Reentrancy in GaoKaoDoge.transferFrom(address,address,uint256) (#700-704):
External calls:
- _transfer(sender,recipient,amount) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
External calls sending eth:
- _transfer(sender,recipient,amount) (#701)
- recipient.transfer(amount) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#702)
- _allowances[owner][spender] = amount (#558)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GaoKaoDoge._transfer(address,address,uint256) (#719-775):
External calls:
- swapAndLiquify(contractTokenBalance) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#853)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- Transfer(sender,recipient,finalAmount) (#772)
Reentrancy in GaoKaoDoge.constructor() (#470-509):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#474-475)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#508)
Reentrancy in GaoKaoDoge.swapAndLiquify(uint256) (#784-802):
External calls:
- swapTokensForEth(tokensForSwap) (#789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#798)
- recipient.transfer(amount) (#670)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
Reentrancy in GaoKaoDoge.swapTokensForEth(uint256) (#804-822):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#821)
Reentrancy in GaoKaoDoge.transferFrom(address,address,uint256) (#700-704):
External calls:
- _transfer(sender,recipient,amount) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#813-819)
External calls sending eth:
- _transfer(sender,recipient,amount) (#701)
- recipient.transfer(amount) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#702)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#84-93) uses assembly
- INLINE ASM (#91)
Address._functionCallWithValue(address,bytes,uint256,string) (#120-137) uses assembly
- INLINE ASM (#129-132)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#120-137) is never used and should be removed
Address.functionCall(address,bytes) (#103-105) is never used and should be removed
Address.functionCall(address,bytes,string) (#107-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#115-118) is never used and should be removed
Address.isContract(address) (#84-93) is never used and should be removed
Address.sendValue(address,uint256) (#95-101) is never used and should be removed
Context._msgData() (#11-14) is never used and should be removed
SafeMath.mod(uint256,uint256) (#72-74) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#76-79) is never used and should be removed
Remove unused functions.

Additional information: link

GaoKaoDoge._totalTaxIfBuying (#429) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee.add(_buyMarketingFee)
GaoKaoDoge._totalTaxIfSelling (#430) is set pre-construction with a non-constant function or state variable:
- _sellLiquidityFee.add(_sellMarketingFee)
GaoKaoDoge._totalSupply (#434) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
GaoKaoDoge._maxTxAmount (#435) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
GaoKaoDoge._walletMax (#436) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
GaoKaoDoge.minimumTokensBeforeSwap (#437) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 5 ** _decimals
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

solc-0.8.14 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) (#95-101):
- (success) = recipient.call{value: amount}() (#99)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#120-137):
- (success,returndata) = target.call{value: weiValue}(data) (#123)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#141) is not in mixedCase
Variable Ownable._emergency (#144) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#220) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#221) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#237) is not in mixedCase
Function IUniswapV2Router01.WETH() (#256) is not in mixedCase
Function GaoKaoDoge.Launch(uint256) (#563-567) is not in mixedCase
Parameter GaoKaoDoge.Launch(uint256)._kill (#563) is not in mixedCase
Parameter GaoKaoDoge.setWhiteList(address)._address (#610) is not in mixedCase
Parameter GaoKaoDoge.setLimitAll(uint256)._newLimit (#636) is not in mixedCase
Parameter GaoKaoDoge.setSwapAndLiquifyEnabled(bool)._enabled (#655) is not in mixedCase
Parameter GaoKaoDoge.rescueToken(address,uint256).TokenAddress (#874) is not in mixedCase
Parameter GaoKaoDoge.rescueToken(address,uint256)._amount (#874) is not in mixedCase
Variable GaoKaoDoge._balances (#409) is not in mixedCase
Variable GaoKaoDoge._buyLiquidityFee (#419) is not in mixedCase
Variable GaoKaoDoge._buyMarketingFee (#420) is not in mixedCase
Variable GaoKaoDoge._sellLiquidityFee (#423) is not in mixedCase
Variable GaoKaoDoge._sellMarketingFee (#424) is not in mixedCase
Variable GaoKaoDoge._liquidityShare (#426) is not in mixedCase
Variable GaoKaoDoge._marketingShare (#427) is not in mixedCase
Variable GaoKaoDoge._totalTaxIfBuying (#429) is not in mixedCase
Variable GaoKaoDoge._totalTaxIfSelling (#430) is not in mixedCase
Variable GaoKaoDoge._totalDistributionShares (#431) is not in mixedCase
Variable GaoKaoDoge._maxTxAmount (#435) is not in mixedCase
Variable GaoKaoDoge._walletMax (#436) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#12)" inContext (#5-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in GaoKaoDoge._transfer(address,address,uint256) (#719-775):
External calls:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#670)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#746)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance).add(amount.div(100000)) (#748)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#852)
- _balances[address(this)] = _balances[address(this)].add(finalAmount) (#760)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#770)
- addBot(recipient) (#762)
- _isBlacklisted[recipient] = true (#711)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#853)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- Transfer(sender,recipient,finalAmount) (#772)
Reentrancy in GaoKaoDoge.swapAndLiquify(uint256) (#784-802):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#798)
- recipient.transfer(amount) (#670)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#798)
- recipient.transfer(amount) (#670)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
- _allowances[owner][spender] = amount (#558)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#801)
Reentrancy in GaoKaoDoge.transferFrom(address,address,uint256) (#700-704):
External calls:
- _transfer(sender,recipient,amount) (#701)
- recipient.transfer(amount) (#670)
External calls sending eth:
- _transfer(sender,recipient,amount) (#701)
- recipient.transfer(amount) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWalletAddress,block.timestamp) (#829-836)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#702)
- _allowances[owner][spender] = amount (#558)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#559)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#702)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#261) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#262)
Prevent variables from having similar names.

Additional information: link

GaoKaoDoge._transfer(address,address,uint256) (#719-775) uses literals with too many digits:
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance).add(amount.div(100000)) (#748)
GaoKaoDoge.slitherConstructorVariables() (#389-881) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#407)
GaoKaoDoge.slitherConstructorVariables() (#389-881) uses literals with too many digits:
- _totalSupply = 10000000000 * 10 ** _decimals (#434)
GaoKaoDoge.slitherConstructorVariables() (#389-881) uses literals with too many digits:
- _maxTxAmount = 100000000 * 10 ** _decimals (#435)
GaoKaoDoge.slitherConstructorVariables() (#389-881) uses literals with too many digits:
- _walletMax = 100000000 * 10 ** _decimals (#436)
GaoKaoDoge.slitherConstructorVariables() (#389-881) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 5 ** _decimals (#437)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GaoKaoDoge._decimals (#396) should be constant
GaoKaoDoge._name (#394) should be constant
GaoKaoDoge._symbol (#395) should be constant
GaoKaoDoge.deadAddress (#407) should be constant
GaoKaoDoge.liquidityWalletAddress (#405) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#172-175)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#177-181)
getTime() should be declared external:
- Ownable.getTime() (#183-185)
name() should be declared external:
- GaoKaoDoge.name() (#511-513)
symbol() should be declared external:
- GaoKaoDoge.symbol() (#515-517)
decimals() should be declared external:
- GaoKaoDoge.decimals() (#519-521)
totalSupply() should be declared external:
- GaoKaoDoge.totalSupply() (#523-525)
allowance(address,address) should be declared external:
- GaoKaoDoge.allowance(address,address) (#531-533)
increaseAllowance(address,uint256) should be declared external:
- GaoKaoDoge.increaseAllowance(address,uint256) (#535-538)
decreaseAllowance(address,uint256) should be declared external:
- GaoKaoDoge.decreaseAllowance(address,uint256) (#540-543)
minimumTokensBeforeSwapAmount() should be declared external:
- GaoKaoDoge.minimumTokensBeforeSwapAmount() (#545-547)
approve(address,uint256) should be declared external:
- GaoKaoDoge.approve(address,uint256) (#549-552)
Launch(uint256) should be declared external:
- GaoKaoDoge.Launch(uint256) (#563-567)
setKillNum(uint256) should be declared external:
- GaoKaoDoge.setKillNum(uint256) (#570-572)
setMarketPairStatus(address,bool) should be declared external:
- GaoKaoDoge.setMarketPairStatus(address,bool) (#575-577)
setIsExcludedFromFee(address,bool) should be declared external:
- GaoKaoDoge.setIsExcludedFromFee(address,bool) (#585-587)
setSwapAndLiquifyEnabled(bool) should be declared external:
- GaoKaoDoge.setSwapAndLiquifyEnabled(bool) (#655-658)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- GaoKaoDoge.setSwapAndLiquifyByLimitOnly(bool) (#660-662)
getCirculatingSupply() should be declared external:
- GaoKaoDoge.getCirculatingSupply() (#664-666)
changeRouterVersion(address) should be declared external:
- GaoKaoDoge.changeRouterVersion(address) (#673-690)
transfer(address,uint256) should be declared external:
- GaoKaoDoge.transfer(address,uint256) (#695-698)
transferFrom(address,address,uint256) should be declared external:
- GaoKaoDoge.transferFrom(address,address,uint256) (#700-704)
isBlackList(address) should be declared external:
- GaoKaoDoge.isBlackList(address) (#706-708)
writeBlackList(address,bool) should be declared external:
- GaoKaoDoge.writeBlackList(address,bool) (#715-717)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.

Contract has 8% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for GKD