GREEN BABYDOGE Token Logo

GBDOGE [GREEN BABYDOGE] Token

ALERT: unclassified scam

About GBDOGE

Listings

Token 4 years

WELCOME TO GBDOGE,GBDOGE is a fully decentralized, zero-emission and fairly distributed community-driven token disrupting the meme economy aiming at protecting the environment

Social

Laser Scorebeta Last Audit: 25 April 2022

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

Anti-Scam

Links

Reentrancy in GREENBABYDOGE._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- removeAllFee() (#618)
- _liquidityFee = 0 (#841)
- _liquidityFee = _buyLiquidityFee (#620)
- removeAllFee() (#625)
- _liquidityFee = 0 (#841)
- _liquidityFee = _sellLiquidityFee (#627)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _liquidityFee = _previousLiquidityFee (#847)
- _liquidityFee = 0 (#841)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#817)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#742)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#732)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rTotal = _rTotal.sub(rFee) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#819)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#752)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
Apply the check-effects-interactions pattern.

Additional information: link

GREENBABYDOGE.swapTokenForTokens(address,address,uint256) (#687-690) ignores return value by tokenC.transfer(account,amount) (#689)
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 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)

GREENBABYDOGE.swapTokens(uint256) (#638-647) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#643)
GREENBABYDOGE.swapTokens(uint256) (#638-647) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#644)
GREENBABYDOGE._transferStandard(address,address,uint256) (#724-738) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#727)
Consider ordering multiplication before division.

Additional information: link

GREENBABYDOGE.addLiquidity(uint256,uint256) (#692-705) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#697-704)
Ensure that all the return values of the function calls are used.

Additional information: link

GREENBABYDOGE.allowance(address,address).owner (#492) shadows:
- Ownable.owner() (#150-152) (function)
GREENBABYDOGE._approve(address,address,uint256).owner (#580) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.

Additional information: link

GREENBABYDOGE.setTaxFeePercent(uint256) (#863-865) should emit an event for:
- _taxFee = taxFee (#864)
GREENBABYDOGE.setLiquidityFeePercent(uint256) (#867-869) should emit an event for:
- _liquidityFee = liquidityFee (#868)
GREENBABYDOGE.setBuyTaxFeePercent(uint256) (#871-873) should emit an event for:
- _buyTaxFee = buyTaxFee (#872)
GREENBABYDOGE.setBuyLiquidityFeePercent(uint256) (#875-877) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#876)
GREENBABYDOGE.setSellTaxFeePercent(uint256) (#879-881) should emit an event for:
- _sellTaxFee = sellTaxFee (#880)
GREENBABYDOGE.setSellLiquidityFeePercent(uint256) (#883-885) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#884)
GREENBABYDOGE.setBurnFeePercent(uint256) (#887-889) should emit an event for:
- _burnFee = burnTaxFee (#888)
GREENBABYDOGE.setMaxTxAmount(uint256) (#891-893) should emit an event for:
- _maxTxAmount = maxTxAmount (#892)
GREENBABYDOGE.setMarketingFeePercent(uint256) (#895-897) should emit an event for:
- marketingDivisor = divisor (#896)
GREENBABYDOGE.setCharityFeePercent(uint256) (#899-901) should emit an event for:
- charityDivisor = divisor (#900)
GREENBABYDOGE.setNumTokensSellToAddToLiquidity(uint256) (#903-905) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#904)
GREENBABYDOGE.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#907-917) should emit an event for:
- charityDivisor = charity (#908)
- marketingDivisor = marketting (#909)
- _burnFee = burnTaxFee (#910)
- _sellLiquidityFee = sellLiquidityFee (#911)
- _sellTaxFee = sellTaxFee (#912)
- _buyLiquidityFee = buyLiquidityFee (#913)
- _buyTaxFee = buyTaxFee (#914)
- _liquidityFee = liquidityFee (#915)
- _taxFee = taxFee (#916)
GREENBABYDOGE.set(uint8,uint256) (#994-1022) should emit an event for:
- _referEth = value (#1002)
- _referToken = value (#1004)
- salePrice = value (#1012)
- _buyBnb = value (#1017)
Emit an event for critical parameter changes.

Additional information: link

GREENBABYDOGE.setMarketingAddress(address)._marketingAddress (#919) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#920)
GREENBABYDOGE.setCharityAddress(address)._newaddress (#923) lacks a zero-check on :
- charityAddress = address(_newaddress) (#924)
GREENBABYDOGE.transferToAddressETH(address,uint256).recipient (#951) lacks a zero-check on :
- recipient.transfer(amount) (#952)
Check that the address is not zero.

Additional information: link

Reentrancy in GREENBABYDOGE._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- removeAllFee() (#618)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#621)
- removeAllFee() (#625)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#628)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _burnFee = _previousBurnFee (#848)
- _burnFee = 0 (#842)
- removeAllFee() (#618)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#625)
- _previousBurnFee = _burnFee (#839)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#618)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#625)
- _previousLiquidityFee = _liquidityFee (#838)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#618)
- _previousTaxFee = _taxFee (#837)
- removeAllFee() (#625)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tFeeTotal = _tFeeTotal.add(tFee) (#773)
- removeAllFee() (#618)
- _taxFee = 0 (#840)
- _taxFee = _buyTaxFee (#619)
- removeAllFee() (#625)
- _taxFee = 0 (#840)
- _taxFee = _sellTaxFee (#626)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _taxFee = _previousTaxFee (#846)
- _taxFee = 0 (#840)
Reentrancy in GREENBABYDOGE.constructor() (#454-464):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#458-459)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#461)
- _isExcludedFromFee[address(this)] = true (#462)
- uniswapV2Router = _uniswapV2Router (#460)
Reentrancy in GREENBABYDOGE.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#584)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GREENBABYDOGE._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,deadAddress,tBurnAmount) (#737)
- _tokenTransfer(from,to,amount,takeFee) (#635)
Reentrancy in GREENBABYDOGE.constructor() (#454-464):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#458-459)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#463)
Reentrancy in GREENBABYDOGE.swapETHForTokens(uint256) (#670-685):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#677-682)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#684)
Reentrancy in GREENBABYDOGE.swapTokensForEth(uint256) (#650-668):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#667)
Reentrancy in GREENBABYDOGE.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#659-665)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- recipient.transfer(amount) (#952)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#585)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#80-89) uses assembly
- INLINE ASM (#87)
Address._functionCallWithValue(address,bytes,uint256,string) (#116-133) uses assembly
- INLINE ASM (#125-128)
Do not use evm assembly.

Additional information: link

GREENBABYDOGE.includeInReward(address) (#567-578) has costly operations inside a loop:
- _excluded.pop() (#574)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#116-133) is never used and should be removed
Address.functionCall(address,bytes) (#99-101) is never used and should be removed
Address.functionCall(address,bytes,string) (#103-105) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#107-109) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#111-114) is never used and should be removed
Address.isContract(address) (#80-89) is never used and should be removed
Address.sendValue(address,uint256) (#91-97) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
GREENBABYDOGE.addLiquidity(uint256,uint256) (#692-705) is never used and should be removed
GREENBABYDOGE.swapETHForTokens(uint256) (#670-685) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#72-75) is never used and should be removed
Remove unused functions.

Additional information: link

GREENBABYDOGE._rTotal (#409) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
GREENBABYDOGE._previousTaxFee (#417) is set pre-construction with a non-constant function or state variable:
- _taxFee
GREENBABYDOGE._previousLiquidityFee (#420) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
GREENBABYDOGE._buyTaxFee (#422) is set pre-construction with a non-constant function or state variable:
- _taxFee
GREENBABYDOGE._buyLiquidityFee (#423) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
GREENBABYDOGE._sellTaxFee (#425) is set pre-construction with a non-constant function or state variable:
- _taxFee
GREENBABYDOGE._sellLiquidityFee (#426) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
GREENBABYDOGE._previousBurnFee (#429) 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

Pragma version^0.8.10 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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) (#91-97):
- (success) = recipient.call{value: amount}() (#95)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#116-133):
- (success,returndata) = target.call{value: weiValue}(data) (#119)
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._swAuth (#140) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#225) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#226) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#235) is not in mixedCase
Function IUniswapV2Router01.WETH() (#254) is not in mixedCase
Parameter GREENBABYDOGE.calculateTaxFee(uint256)._amount (#822) is not in mixedCase
Parameter GREENBABYDOGE.calculateLiquidityFee(uint256)._amount (#828) is not in mixedCase
Parameter GREENBABYDOGE.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#903) is not in mixedCase
Parameter GREENBABYDOGE.setMarketingAddress(address)._marketingAddress (#919) is not in mixedCase
Parameter GREENBABYDOGE.setCharityAddress(address)._newaddress (#923) is not in mixedCase
Parameter GREENBABYDOGE.setSwapAndLiquifyEnabled(bool)._enabled (#927) is not in mixedCase
Parameter GREENBABYDOGE.airdrop(address)._refer (#1024) is not in mixedCase
Parameter GREENBABYDOGE.buy(address)._refer (#1040) is not in mixedCase
Variable GREENBABYDOGE._taxFee (#416) is not in mixedCase
Variable GREENBABYDOGE._liquidityFee (#419) is not in mixedCase
Variable GREENBABYDOGE._buyTaxFee (#422) is not in mixedCase
Variable GREENBABYDOGE._buyLiquidityFee (#423) is not in mixedCase
Variable GREENBABYDOGE._sellTaxFee (#425) is not in mixedCase
Variable GREENBABYDOGE._sellLiquidityFee (#426) is not in mixedCase
Variable GREENBABYDOGE._burnFee (#428) is not in mixedCase
Variable GREENBABYDOGE._maxTxAmount (#435) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#16)" inContext (#9-19)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in GREENBABYDOGE._transfer(address,address,uint256) (#588-636):
External calls:
- swapTokens(contractTokenBalance) (#607)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- removeAllFee() (#618)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#621)
- removeAllFee() (#625)
- _burnFee = 0 (#842)
- _burnFee = _previousBurnFee (#628)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _burnFee = _previousBurnFee (#848)
- _burnFee = 0 (#842)
- removeAllFee() (#618)
- _liquidityFee = 0 (#841)
- _liquidityFee = _buyLiquidityFee (#620)
- removeAllFee() (#625)
- _liquidityFee = 0 (#841)
- _liquidityFee = _sellLiquidityFee (#627)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _liquidityFee = _previousLiquidityFee (#847)
- _liquidityFee = 0 (#841)
- removeAllFee() (#618)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#625)
- _previousBurnFee = _burnFee (#839)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousBurnFee = _burnFee (#839)
- removeAllFee() (#618)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#625)
- _previousLiquidityFee = _liquidityFee (#838)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousLiquidityFee = _liquidityFee (#838)
- removeAllFee() (#618)
- _previousTaxFee = _taxFee (#837)
- removeAllFee() (#625)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _previousTaxFee = _taxFee (#837)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#817)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#742)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#732)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _rTotal = _rTotal.sub(rFee) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tFeeTotal = _tFeeTotal.add(tFee) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#819)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#752)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
- removeAllFee() (#618)
- _taxFee = 0 (#840)
- _taxFee = _buyTaxFee (#619)
- removeAllFee() (#625)
- _taxFee = 0 (#840)
- _taxFee = _sellTaxFee (#626)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- _taxFee = _previousTaxFee (#846)
- _taxFee = 0 (#840)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#635)
- Transfer(sender,deadAddress,tBurnAmount) (#737)
- _tokenTransfer(from,to,amount,takeFee) (#635)
Reentrancy in GREENBABYDOGE.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- recipient.transfer(amount) (#952)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#584)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#585)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#259) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#260)
Variable GREENBABYDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable GREENBABYDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._getValues(uint256).rTransferAmount (#778) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE._getValues(uint256).rTransferAmount (#778) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._getValues(uint256).rTransferAmount (#778) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable GREENBABYDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable GREENBABYDOGE._getValues(uint256).rTransferAmount (#778) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE._getValues(uint256).rTransferAmount (#778) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable GREENBABYDOGE._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to GREENBABYDOGE._getTValues(uint256).tTransferAmount (#785)
Variable GREENBABYDOGE._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable GREENBABYDOGE.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rBurnAmount (#728) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tBurnAmount (#727)
Variable GREENBABYDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (#761) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to GREENBABYDOGE._transferToExcluded(address,address,uint256).tTransferAmount (#741)
Variable GREENBABYDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Variable GREENBABYDOGE._transferToExcluded(address,address,uint256).rTransferAmount (#741) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to GREENBABYDOGE._transferStandard(address,address,uint256).tTransferAmount (#726)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (#751) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE.reflectionFromToken(uint256,bool).rTransferAmount (#546) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to GREENBABYDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (#761)
Variable GREENBABYDOGE._getValues(uint256).rTransferAmount (#778) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#793) is too similar to GREENBABYDOGE._getValues(uint256).tTransferAmount (#777)
Variable GREENBABYDOGE._transferStandard(address,address,uint256).rTransferAmount (#726) is too similar to GREENBABYDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (#751)
Prevent variables from having similar names.

Additional information: link

GREENBABYDOGE.prepareForPreSale() (#933-939) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#938)
GREENBABYDOGE.afterPreSale() (#941-947) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#946)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#397)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _tTotal = 50000000000 * 10 ** 18 (#408)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 18 (#435)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000 * 10 ** 18 (#436)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _airdropEth = 2500000000000000 (#975)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- _airdropToken = 3000000000000000000000 (#976)
GREENBABYDOGE.slitherConstructorVariables() (#390-1059) uses literals with too many digits:
- salePrice = 1000000 (#984)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GREENBABYDOGE._auth (#977) is never used in GREENBABYDOGE (#390-1059)
GREENBABYDOGE._auth2 (#978) is never used in GREENBABYDOGE (#390-1059)
GREENBABYDOGE._authNum (#979) is never used in GREENBABYDOGE (#390-1059)
Remove unused state variables.

Additional information: link

GREENBABYDOGE._auth (#977) should be constant
GREENBABYDOGE._auth2 (#978) should be constant
GREENBABYDOGE._authNum (#979) should be constant
GREENBABYDOGE._decimals (#414) should be constant
GREENBABYDOGE._name (#412) should be constant
GREENBABYDOGE._symbol (#413) should be constant
GREENBABYDOGE._tTotal (#408) should be constant
GREENBABYDOGE.burnOnBuy (#441) should be constant
GREENBABYDOGE.burnOnSell (#442) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#159-162)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#164-168)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#170-174)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#176-178)
getTime() should be declared external:
- Ownable.getTime() (#180-182)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#184-189)
unlock() should be declared external:
- Ownable.unlock() (#191-196)
name() should be declared external:
- GREENBABYDOGE.name() (#466-468)
symbol() should be declared external:
- GREENBABYDOGE.symbol() (#470-472)
decimals() should be declared external:
- GREENBABYDOGE.decimals() (#474-476)
totalSupply() should be declared external:
- GREENBABYDOGE.totalSupply() (#478-480)
transfer(address,uint256) should be declared external:
- GREENBABYDOGE.transfer(address,uint256) (#487-490)
allowance(address,address) should be declared external:
- GREENBABYDOGE.allowance(address,address) (#492-494)
approve(address,uint256) should be declared external:
- GREENBABYDOGE.approve(address,uint256) (#496-499)
transferFrom(address,address,uint256) should be declared external:
- GREENBABYDOGE.transferFrom(address,address,uint256) (#501-505)
increaseAllowance(address,uint256) should be declared external:
- GREENBABYDOGE.increaseAllowance(address,uint256) (#507-510)
decreaseAllowance(address,uint256) should be declared external:
- GREENBABYDOGE.decreaseAllowance(address,uint256) (#512-515)
isExcludedFromReward(address) should be declared external:
- GREENBABYDOGE.isExcludedFromReward(address) (#517-519)
totalFees() should be declared external:
- GREENBABYDOGE.totalFees() (#521-523)
minimumTokensBeforeSwapAmount() should be declared external:
- GREENBABYDOGE.minimumTokensBeforeSwapAmount() (#525-527)
deliver(uint256) should be declared external:
- GREENBABYDOGE.deliver(uint256) (#530-537)
reflectionFromToken(uint256,bool) should be declared external:
- GREENBABYDOGE.reflectionFromToken(uint256,bool) (#540-549)
excludeFromReward(address) should be declared external:
- GREENBABYDOGE.excludeFromReward(address) (#557-565)
swapTokenForTokens(address,address,uint256) should be declared external:
- GREENBABYDOGE.swapTokenForTokens(address,address,uint256) (#687-690)
isExcludedFromFee(address) should be declared external:
- GREENBABYDOGE.isExcludedFromFee(address) (#851-853)
excludeFromFee(address) should be declared external:
- GREENBABYDOGE.excludeFromFee(address) (#855-857)
includeInFee(address) should be declared external:
- GREENBABYDOGE.includeInFee(address) (#859-861)
recoverBalance(uint256) should be declared external:
- GREENBABYDOGE.recoverBalance(uint256) (#955-957)
doManualSwapTokens(uint256) should be declared external:
- GREENBABYDOGE.doManualSwapTokens(uint256) (#960-963)
clearAllETH() should be declared external:
- GREENBABYDOGE.clearAllETH() (#987-990)
set(uint8,uint256) should be declared external:
- GREENBABYDOGE.set(uint8,uint256) (#994-1022)
airdrop(address) should be declared external:
- GREENBABYDOGE.airdrop(address) (#1024-1038)
buy(address) should be declared external:
- GREENBABYDOGE.buy(address) (#1040-1056)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


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


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Alexa traffic rank is very low

Additional information: link


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


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 GBDOGE

News for GBDOGE