Coingecko Token Token Logo

cGECKO [Coingecko] Token

ALERT: phishing / airdrop scam

About cGECKO

Listings

Not Found
Token 2 years

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 6 May 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links


Contract creator or owner is blacklisted for past scams

CoinGeckoToken.airdrop(address) (#1063-1076) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1072)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

CoinGeckoToken.swapTokenForTokens(address,address,uint256) (#724-727) ignores return value by tokenC.transfer(account,amount) (#726)
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...)

Reentrancy in CoinGeckoToken._transfer(address,address,uint256) (#625-673):
External calls:
- swapTokens(contractTokenBalance) (#644)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- swapTokens(contractTokenBalance) (#644)
- recipient.transfer(amount) (#991)
State variables written after the call(s):
- removeAllFee() (#655)
- _liquidityFee = 0 (#879)
- _liquidityFee = _buyLiquidityFee (#657)
- removeAllFee() (#662)
- _liquidityFee = 0 (#879)
- _liquidityFee = _sellLiquidityFee (#664)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _liquidityFee = _previousLiquidityFee (#885)
- _liquidityFee = 0 (#879)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#855)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#791)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#801)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#803)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#769)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _rTotal = _rTotal.sub(rFee) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#857)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#790)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#800)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#781)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#802)
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.


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)

Low level call in Address.sendValue(address,uint256) (#122-128):
- (success) = recipient.call{value: amount}() (#126)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#148-165):
- (success,returndata) = target.call{value: weiValue}(data) (#151)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#191-194)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#196-200)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#202-206)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#208-210)
getTime() should be declared external:
- Ownable.getTime() (#212-214)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#216-221)
unlock() should be declared external:
- Ownable.unlock() (#223-228)
name() should be declared external:
- CoinGeckoToken.name() (#503-505)
symbol() should be declared external:
- CoinGeckoToken.symbol() (#507-509)
decimals() should be declared external:
- CoinGeckoToken.decimals() (#511-513)
totalSupply() should be declared external:
- CoinGeckoToken.totalSupply() (#515-517)
transfer(address,uint256) should be declared external:
- CoinGeckoToken.transfer(address,uint256) (#524-527)
allowance(address,address) should be declared external:
- CoinGeckoToken.allowance(address,address) (#529-531)
approve(address,uint256) should be declared external:
- CoinGeckoToken.approve(address,uint256) (#533-536)
transferFrom(address,address,uint256) should be declared external:
- CoinGeckoToken.transferFrom(address,address,uint256) (#538-542)
increaseAllowance(address,uint256) should be declared external:
- CoinGeckoToken.increaseAllowance(address,uint256) (#544-547)
decreaseAllowance(address,uint256) should be declared external:
- CoinGeckoToken.decreaseAllowance(address,uint256) (#549-552)
isExcludedFromReward(address) should be declared external:
- CoinGeckoToken.isExcludedFromReward(address) (#554-556)
totalFees() should be declared external:
- CoinGeckoToken.totalFees() (#558-560)
minimumTokensBeforeSwapAmount() should be declared external:
- CoinGeckoToken.minimumTokensBeforeSwapAmount() (#562-564)
deliver(uint256) should be declared external:
- CoinGeckoToken.deliver(uint256) (#567-574)
reflectionFromToken(uint256,bool) should be declared external:
- CoinGeckoToken.reflectionFromToken(uint256,bool) (#577-586)
excludeFromReward(address) should be declared external:
- CoinGeckoToken.excludeFromReward(address) (#594-602)
swapTokenForTokens(address,address,uint256) should be declared external:
- CoinGeckoToken.swapTokenForTokens(address,address,uint256) (#724-727)
isExcludedFromFee(address) should be declared external:
- CoinGeckoToken.isExcludedFromFee(address) (#889-891)
excludeFromFee(address) should be declared external:
- CoinGeckoToken.excludeFromFee(address) (#893-895)
includeInFee(address) should be declared external:
- CoinGeckoToken.includeInFee(address) (#897-899)
recoverBalance(uint256) should be declared external:
- CoinGeckoToken.recoverBalance(uint256) (#994-996)
doManualSwapTokens(uint256) should be declared external:
- CoinGeckoToken.doManualSwapTokens(uint256) (#999-1002)
clearAllETH() should be declared external:
- CoinGeckoToken.clearAllETH() (#1026-1029)
set(uint8,uint256) should be declared external:
- CoinGeckoToken.set(uint8,uint256) (#1033-1061)
airdrop(address) should be declared external:
- CoinGeckoToken.airdrop(address) (#1063-1076)
buy(address) should be declared external:
- CoinGeckoToken.buy(address) (#1078-1094)
Use the external attribute for functions never called from the contract.

Additional information: link

CoinGeckoToken.swapTokens(uint256) (#675-684) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#680)
CoinGeckoToken.swapTokens(uint256) (#675-684) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#681)
CoinGeckoToken._transferStandard(address,address,uint256) (#762-776) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#765)
Consider ordering multiplication before division.

Additional information: link

CoinGeckoToken.addLiquidity(uint256,uint256) (#729-742) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#734-741)
Ensure that all the return values of the function calls are used.

Additional information: link

CoinGeckoToken.allowance(address,address).owner (#529) shadows:
- Ownable.owner() (#182-184) (function)
CoinGeckoToken._approve(address,address,uint256).owner (#617) shadows:
- Ownable.owner() (#182-184) (function)
Rename the local variables that shadow another component.

Additional information: link

CoinGeckoToken.setTaxFeePercent(uint256) (#901-903) should emit an event for:
- _taxFee = taxFee (#902)
CoinGeckoToken.setLiquidityFeePercent(uint256) (#905-907) should emit an event for:
- _liquidityFee = liquidityFee (#906)
CoinGeckoToken.setBuyTaxFeePercent(uint256) (#909-911) should emit an event for:
- _buyTaxFee = buyTaxFee (#910)
CoinGeckoToken.setBuyLiquidityFeePercent(uint256) (#913-915) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#914)
CoinGeckoToken.setSellTaxFeePercent(uint256) (#917-919) should emit an event for:
- _sellTaxFee = sellTaxFee (#918)
CoinGeckoToken.setSellLiquidityFeePercent(uint256) (#921-923) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#922)
CoinGeckoToken.setBurnFeePercent(uint256) (#925-927) should emit an event for:
- _burnFee = burnTaxFee (#926)
CoinGeckoToken.setMaxTxAmount(uint256) (#929-931) should emit an event for:
- _maxTxAmount = maxTxAmount (#930)
CoinGeckoToken.setMarketingFeePercent(uint256) (#933-935) should emit an event for:
- marketingDivisor = divisor (#934)
CoinGeckoToken.setCharityFeePercent(uint256) (#937-939) should emit an event for:
- charityDivisor = divisor (#938)
CoinGeckoToken.setNumTokensSellToAddToLiquidity(uint256) (#941-943) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#942)
CoinGeckoToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#945-955) should emit an event for:
- charityDivisor = charity (#946)
- marketingDivisor = marketting (#947)
- _burnFee = burnTaxFee (#948)
- _sellLiquidityFee = sellLiquidityFee (#949)
- _sellTaxFee = sellTaxFee (#950)
- _buyLiquidityFee = buyLiquidityFee (#951)
- _buyTaxFee = buyTaxFee (#952)
- _liquidityFee = liquidityFee (#953)
- _taxFee = taxFee (#954)
CoinGeckoToken.set(uint8,uint256) (#1033-1061) should emit an event for:
- _referEth = value (#1041)
- _referToken = value (#1043)
- _airdropEth = value (#1045)
- _airdropToken = value (#1047)
- salePrice = value (#1051)
- _airdorpBnb = value (#1054)
- _buyBnb = value (#1056)
Emit an event for critical parameter changes.

Additional information: link

CoinGeckoToken.setMarketingAddress(address)._marketingAddress (#957) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#958)
CoinGeckoToken.setCharityAddress(address)._newaddress (#962) lacks a zero-check on :
- charityAddress = address(_newaddress) (#963)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinGeckoToken._transfer(address,address,uint256) (#625-673):
External calls:
- swapTokens(contractTokenBalance) (#644)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- swapTokens(contractTokenBalance) (#644)
- recipient.transfer(amount) (#991)
State variables written after the call(s):
- removeAllFee() (#655)
- _burnFee = 0 (#880)
- _burnFee = _previousBurnFee (#658)
- removeAllFee() (#662)
- _burnFee = 0 (#880)
- _burnFee = _previousBurnFee (#665)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _burnFee = _previousBurnFee (#886)
- _burnFee = 0 (#880)
- removeAllFee() (#655)
- _previousBurnFee = _burnFee (#877)
- removeAllFee() (#662)
- _previousBurnFee = _burnFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _previousBurnFee = _burnFee (#877)
- removeAllFee() (#655)
- _previousLiquidityFee = _liquidityFee (#876)
- removeAllFee() (#662)
- _previousLiquidityFee = _liquidityFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _previousLiquidityFee = _liquidityFee (#876)
- removeAllFee() (#655)
- _previousTaxFee = _taxFee (#875)
- removeAllFee() (#662)
- _previousTaxFee = _taxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _previousTaxFee = _taxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _tFeeTotal = _tFeeTotal.add(tFee) (#811)
- removeAllFee() (#655)
- _taxFee = 0 (#878)
- _taxFee = _buyTaxFee (#656)
- removeAllFee() (#662)
- _taxFee = 0 (#878)
- _taxFee = _sellTaxFee (#663)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _taxFee = _previousTaxFee (#884)
- _taxFee = 0 (#878)
Reentrancy in CoinGeckoToken.constructor() (#491-501):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#495-496)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#498)
- _isExcludedFromFee[address(this)] = true (#499)
- uniswapV2Router = _uniswapV2Router (#497)
Reentrancy in CoinGeckoToken.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#991)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#621)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CoinGeckoToken._transfer(address,address,uint256) (#625-673):
External calls:
- swapTokens(contractTokenBalance) (#644)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- swapTokens(contractTokenBalance) (#644)
- recipient.transfer(amount) (#991)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,recipient,tTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,recipient,tTransferAmount) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,recipient,tTransferAmount) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,deadAddress,tBurnAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#672)
Reentrancy in CoinGeckoToken.constructor() (#491-501):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#495-496)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#500)
Reentrancy in CoinGeckoToken.swapETHForTokens(uint256) (#707-722):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#714-719)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#721)
Reentrancy in CoinGeckoToken.swapTokensForEth(uint256) (#687-705):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#704)
Reentrancy in CoinGeckoToken.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#991)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#622)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#223-228) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#225)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#111-120) uses assembly
- INLINE ASM (#118)
Address._functionCallWithValue(address,bytes,uint256,string) (#148-165) uses assembly
- INLINE ASM (#157-160)
Do not use evm assembly.

Additional information: link

CoinGeckoToken.includeInReward(address) (#604-615) has costly operations inside a loop:
- _excluded.pop() (#611)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#148-165) is never used and should be removed
Address.functionCall(address,bytes) (#131-133) is never used and should be removed
Address.functionCall(address,bytes,string) (#135-137) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#139-141) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#143-146) is never used and should be removed
Address.isContract(address) (#111-120) is never used and should be removed
Address.sendValue(address,uint256) (#122-128) is never used and should be removed
CoinGeckoToken.addLiquidity(uint256,uint256) (#729-742) is never used and should be removed
CoinGeckoToken.swapETHForTokens(uint256) (#707-722) is never used and should be removed
Context._msgData() (#44-47) is never used and should be removed
SafeMath.mod(uint256,uint256) (#99-101) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#103-106) is never used and should be removed
Remove unused functions.

Additional information: link

CoinGeckoToken._rTotal (#445) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CoinGeckoToken._previousTaxFee (#454) is set pre-construction with a non-constant function or state variable:
- _taxFee
CoinGeckoToken._previousLiquidityFee (#457) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CoinGeckoToken._buyTaxFee (#459) is set pre-construction with a non-constant function or state variable:
- _taxFee
CoinGeckoToken._buyLiquidityFee (#460) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CoinGeckoToken._sellTaxFee (#462) is set pre-construction with a non-constant function or state variable:
- _taxFee
CoinGeckoToken._sellLiquidityFee (#463) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CoinGeckoToken._previousBurnFee (#466) is set pre-construction with a non-constant function or state variable:
- _burnFee
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._swAuth (#172) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#259) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#260) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#269) is not in mixedCase
Function IUniswapV2Router01.WETH() (#289) is not in mixedCase
Parameter CoinGeckoToken.calculateTaxFee(uint256)._amount (#860) is not in mixedCase
Parameter CoinGeckoToken.calculateLiquidityFee(uint256)._amount (#866) is not in mixedCase
Parameter CoinGeckoToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#941) is not in mixedCase
Parameter CoinGeckoToken.setMarketingAddress(address)._marketingAddress (#957) is not in mixedCase
Parameter CoinGeckoToken.setCharityAddress(address)._newaddress (#962) is not in mixedCase
Parameter CoinGeckoToken.setSwapAndLiquifyEnabled(bool)._enabled (#966) is not in mixedCase
Parameter CoinGeckoToken.airdrop(address)._refer (#1063) is not in mixedCase
Parameter CoinGeckoToken.buy(address)._refer (#1078) is not in mixedCase
Variable CoinGeckoToken._taxFee (#453) is not in mixedCase
Variable CoinGeckoToken._liquidityFee (#456) is not in mixedCase
Variable CoinGeckoToken._buyTaxFee (#459) is not in mixedCase
Variable CoinGeckoToken._buyLiquidityFee (#460) is not in mixedCase
Variable CoinGeckoToken._sellTaxFee (#462) is not in mixedCase
Variable CoinGeckoToken._sellLiquidityFee (#463) is not in mixedCase
Variable CoinGeckoToken._burnFee (#465) is not in mixedCase
Variable CoinGeckoToken._maxTxAmount (#472) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#45)" inContext (#38-48)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CoinGeckoToken._transfer(address,address,uint256) (#625-673):
External calls:
- swapTokens(contractTokenBalance) (#644)
- recipient.transfer(amount) (#991)
State variables written after the call(s):
- removeAllFee() (#655)
- _burnFee = 0 (#880)
- _burnFee = _previousBurnFee (#658)
- removeAllFee() (#662)
- _burnFee = 0 (#880)
- _burnFee = _previousBurnFee (#665)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _burnFee = _previousBurnFee (#886)
- _burnFee = 0 (#880)
- removeAllFee() (#655)
- _liquidityFee = 0 (#879)
- _liquidityFee = _buyLiquidityFee (#657)
- removeAllFee() (#662)
- _liquidityFee = 0 (#879)
- _liquidityFee = _sellLiquidityFee (#664)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _liquidityFee = _previousLiquidityFee (#885)
- _liquidityFee = 0 (#879)
- removeAllFee() (#655)
- _previousBurnFee = _burnFee (#877)
- removeAllFee() (#662)
- _previousBurnFee = _burnFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _previousBurnFee = _burnFee (#877)
- removeAllFee() (#655)
- _previousLiquidityFee = _liquidityFee (#876)
- removeAllFee() (#662)
- _previousLiquidityFee = _liquidityFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _previousLiquidityFee = _liquidityFee (#876)
- removeAllFee() (#655)
- _previousTaxFee = _taxFee (#875)
- removeAllFee() (#662)
- _previousTaxFee = _taxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _previousTaxFee = _taxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#855)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#791)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#801)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#803)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#769)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _rTotal = _rTotal.sub(rFee) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _tFeeTotal = _tFeeTotal.add(tFee) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#857)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#790)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#800)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#781)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#802)
- removeAllFee() (#655)
- _taxFee = 0 (#878)
- _taxFee = _buyTaxFee (#656)
- removeAllFee() (#662)
- _taxFee = 0 (#878)
- _taxFee = _sellTaxFee (#663)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- _taxFee = _previousTaxFee (#884)
- _taxFee = 0 (#878)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,recipient,tTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,recipient,tTransferAmount) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,recipient,tTransferAmount) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#672)
- Transfer(sender,deadAddress,tBurnAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#672)
Reentrancy in CoinGeckoToken.transferFrom(address,address,uint256) (#538-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#991)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#621)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#622)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#294) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#295)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rTransferAmount (#764) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable CoinGeckoToken._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable CoinGeckoToken._getValues(uint256).rTransferAmount (#816) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken._getValues(uint256).rTransferAmount (#816) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken.reflectionFromToken(uint256,bool).rTransferAmount (#583) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rTransferAmount (#764) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable CoinGeckoToken._getValues(uint256).rTransferAmount (#816) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable CoinGeckoToken._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rTransferAmount (#764) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rTransferAmount (#764) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rTransferAmount (#764) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable CoinGeckoToken._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken._getValues(uint256).rTransferAmount (#816) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken.reflectionFromToken(uint256,bool).rTransferAmount (#583) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rTransferAmount (#764) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken.reflectionFromToken(uint256,bool).rTransferAmount (#583) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken._transferStandard(address,address,uint256).rBurnAmount (#766) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tBurnAmount (#765)
Variable CoinGeckoToken.reflectionFromToken(uint256,bool).rTransferAmount (#583) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to CoinGeckoToken._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable CoinGeckoToken._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken.reflectionFromToken(uint256,bool).rTransferAmount (#583) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._getValues(uint256).rTransferAmount (#816) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken.reflectionFromToken(uint256,bool).rTransferAmount (#583) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken._getValues(uint256).rTransferAmount (#816) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to CoinGeckoToken._getValues(uint256).tTransferAmount (#815)
Variable CoinGeckoToken._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to CoinGeckoToken._transferStandard(address,address,uint256).tTransferAmount (#764)
Variable CoinGeckoToken._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to CoinGeckoToken._getTValues(uint256).tTransferAmount (#823)
Variable CoinGeckoToken._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to CoinGeckoToken._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable CoinGeckoToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to CoinGeckoToken._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Prevent variables from having similar names.

Additional information: link

CoinGeckoToken.prepareForPreSale() (#972-978) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#977)
CoinGeckoToken.afterPreSale() (#980-986) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#985)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#433)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#444)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 18 (#472)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 10 ** 18 (#473)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1014)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- _airdropToken = 300000000000000000000000000 (#1015)
CoinGeckoToken.slitherConstructorVariables() (#426-1097) uses literals with too many digits:
- salePrice = 1000000000000 (#1023)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CoinGeckoToken._auth (#1016) is never used in CoinGeckoToken (#426-1097)
CoinGeckoToken._auth2 (#1017) is never used in CoinGeckoToken (#426-1097)
CoinGeckoToken._authNum (#1018) is never used in CoinGeckoToken (#426-1097)
Remove unused state variables.

Additional information: link

CoinGeckoToken._auth (#1016) should be constant
CoinGeckoToken._auth2 (#1017) should be constant
CoinGeckoToken._authNum (#1018) should be constant
CoinGeckoToken._decimals (#450) should be constant
CoinGeckoToken._name (#448) should be constant
CoinGeckoToken._symbol (#449) should be constant
CoinGeckoToken._tTotal (#444) should be constant
CoinGeckoToken.burnOnBuy (#478) should be constant
CoinGeckoToken.burnOnSell (#479) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:

Contract has 11% buy tax and 23% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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


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.


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 Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for cGECKO