AquaGoat Token Logo

AQUAGOAT Token

About AQUAGOAT

Listings

Token 3 years
CoinGecko 2 years
CoinMarketCap 3 years

AquaGoat is a decentralized frictionless yield-generation utility eco-token. The token operates on an automated liquidity-locking and self-staking direct distribution protocol, providing safe, secure and hassle-free transactions and yield-generation for all holders.

AquaGoat is the native utility token of the AquaGoat.Finance ecosystem and will be used for: Network donation pooling and staking E-commerce integration for use in material purchases NFT marketplace transactions APO-yield farming and staking AquaGoat Crypto-Asset exchange

Recognizing the harmful impacts of cryptocurrency mining on the environment, AquaGoat focusses on ecological conversation efforts, helping to offset, mitigate, and potentially reverse the damage done by humans and conventional mining processes of the past, all while generating income for network participants.

Tokenomics AquaGoat launched with a maximum total supply of 100 Quadrillion on genesis, with 40% of the supply sent to a burn wallet as a deflationary force on the token. Every transaction with AquaGoat incurs a 4% fee - 50% is locked in liquidity, 30% is directly distributed to all holders, and the remaining 20% is burned. With the total amount burned growing over time, the amount of available supply and yield generated decreases as the burn rate increases, forcing currency appreciation and asset-value protection.

Background AquaGoat was stealth-launched by an Australian developer on April 7, 2021. Since its inception, an international development team was formed out of investors from the community. Continuing with the community-driven aspect, the development team aims for community involvement and maintains full transparency for the project, holding polls and discussions with the community for key decisions with the project, culminating with a community-led decision to pursue ocean rehabilitation efforts with The Ocean Clean Up.

The development team comes from a diverse background of established positions in different sectors and respectable companies, providing their expertise and experience for the mutual benefit of the project and holders.

Within 4 days, AquaGoat has attained a strong cult-following, growing to a network of over 1600 holders, with over 1000 members in the community Telegram, and countless others on connected social media pages.

AquaGoat's long term goal is to establish itself as an industry leader in the emerging Decentralized Finance sector, focusing on ecological conservation efforts to reduce the man-induced effects of global climate change, while providing economic empowerment for all through an appreciating decentralized yield-generating cryptocurrency.

Laser Scorebeta Last Audit: 20 June 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links

AquaGoat.addLiquidity(uint256,uint256) (#985-999) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AquaGoat._transfer(address,address,uint256) (#882-921):
External calls:
- swapAndLiquify(contractTokenBalance) (#908)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#908)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#821)
- _rOwned[charity()] = _rOwned[charity()].add(rCharityFee) (#831)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1026)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1027)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1062)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1050)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1039)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1051)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1064)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _rTotal = _rTotal.sub(rFee) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _tOwned[charity()] = _tOwned[charity()].add(rCharityFee) (#834)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#823)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1061)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1049)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1038)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1063)
Apply the check-effects-interactions pattern.

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.


Contract ownership is not renounced (belongs to a wallet)

AquaGoat.includeInReward(address) (#695-706) has costly operations inside a loop:
- _excluded.pop() (#702)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in AquaGoat.withdrawLeftoverBNBToCharity(address,uint256) (#951-960):
External calls:
- recipient.transfer(amount) (#957)
Event emitted after the call(s):
- WithdrawLeftOverBNB(recipient,amount) (#959)
Apply the check-effects-interactions pattern.

Additional information: link

AquaGoat.addLiquidity(uint256,uint256) (#985-999) ignores return value by pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
Ensure that all the return values of the function calls are used.

Additional information: link

AquaGoat.allowance(address,address).owner (#604) shadows:
- Ownable.owner() (#430-432) (function)
AquaGoat._approve(address,address,uint256).owner (#874) shadows:
- Ownable.owner() (#430-432) (function)
Rename the local variables that shadow another component.

Additional information: link

AquaGoat.withdrawLeftoverBNBToCharity(address,uint256).recipient (#951) lacks a zero-check on :
- recipient.transfer(amount) (#957)
Check that the address is not zero.

Additional information: link

Reentrancy in AquaGoat._transfer(address,address,uint256) (#882-921):
External calls:
- swapAndLiquify(contractTokenBalance) (#908)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#908)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _charityFee = _previousCharityFee (#861)
- _charityFee = 0 (#854)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _liquidityFee = _previousLiquidityFee (#860)
- _liquidityFee = 0 (#853)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _previousCharityFee = _charityFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _previousLiquidityFee = _liquidityFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _previousReflectionTaxFee = _reflectionTaxFee (#848)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _reflectionTaxFee = _previousReflectionTaxFee (#859)
- _reflectionTaxFee = 0 (#852)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- _tFeeTotal = _tFeeTotal.add(tFee) (#772)
Reentrancy in AquaGoat.constructor() (#560-571):
External calls:
- setRouterAddress(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#564)
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#758)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#567)
- _isExcludedFromFee[address(this)] = true (#568)
Reentrancy in AquaGoat.setRouterAddress(address) (#755-764):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#758)
State variables written after the call(s):
- pancakeswapV2Router = _pancakeswapV2Router (#761)
Reentrancy in AquaGoat.swapAndLiquify(uint256) (#923-944):
External calls:
- swapTokensForBNB(half) (#935)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
- addLiquidity(otherHalf,newBalance) (#941)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#941)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#941)
- _allowances[owner][spender] = amount (#878)
Reentrancy in AquaGoat.transferFrom(address,address,uint256) (#615-619):
External calls:
- _transfer(sender,recipient,amount) (#616)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
External calls sending eth:
- _transfer(sender,recipient,amount) (#616)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#617)
- _allowances[owner][spender] = amount (#878)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AquaGoat._transfer(address,address,uint256) (#882-921):
External calls:
- swapAndLiquify(contractTokenBalance) (#908)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#908)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1031)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- Transfer(sender,recipient,tTransferAmount) (#1055)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- Transfer(sender,recipient,tTransferAmount) (#1043)
- _tokenTransfer(from,to,amount,takeFee) (#920)
- Transfer(sender,recipient,tTransferAmount) (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#920)
Reentrancy in AquaGoat.constructor() (#560-571):
External calls:
- setRouterAddress(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#564)
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#758)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#570)
Reentrancy in AquaGoat.setRouterAddress(address) (#755-764):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#758)
Event emitted after the call(s):
- PancakeSwapRouterUpdate(newRouter) (#763)
Reentrancy in AquaGoat.swapAndLiquify(uint256) (#923-944):
External calls:
- swapTokensForBNB(half) (#935)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
- addLiquidity(otherHalf,newBalance) (#941)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#941)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#879)
- addLiquidity(otherHalf,newBalance) (#941)
- SwapAndLiquify(half,newBalance,otherHalf) (#943)
Reentrancy in AquaGoat.transferFrom(address,address,uint256) (#615-619):
External calls:
- _transfer(sender,recipient,amount) (#616)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#976-982)
External calls sending eth:
- _transfer(sender,recipient,amount) (#616)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#990-997)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#879)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#617)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#492-498) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked) (#495)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#271-280) uses assembly
- INLINE ASM (#278)
Address._functionCallWithValue(address,bytes,uint256,string) (#364-385) uses assembly
- INLINE ASM (#377-380)
Do not use evm assembly.

Additional information: link

Ownable.unlock() (#492-498) compares to a boolean constant:
-require(bool,string)(_renouncedOwnership == false,Contract cannot be unlocked as the ownership has been renounced) (#493)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#364-385) is never used and should be removed
Address.functionCall(address,bytes) (#324-326) is never used and should be removed
Address.functionCall(address,bytes,string) (#334-336) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#349-351) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#359-362) is never used and should be removed
Address.isContract(address) (#271-280) is never used and should be removed
Address.sendValue(address,uint256) (#298-304) is never used and should be removed
Context._msgData() (#243-246) is never used and should be removed
SafeMath.mod(uint256,uint256) (#216-218) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#232-235) is never used and should be removed
Remove unused functions.

Additional information: link

AquaGoat._previousReflectionTaxFee (#526) is set pre-construction with a non-constant function or state variable:
- _reflectionTaxFee
AquaGoat._previousLiquidityFee (#529) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
AquaGoat._previousCharityFee (#532) is set pre-construction with a non-constant function or state variable:
- _charityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#298-304):
- (success) = recipient.call{value: amount}() (#302)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#364-385):
- (success,returndata) = target.call{value: weiValue}(data) (#368)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter AquaGoat.blackList(address)._user (#643) is not in mixedCase
Parameter AquaGoat.removeFromBlacklist(address)._user (#650) is not in mixedCase
Parameter AquaGoat.setSwapAndLiquifyEnabled(bool)._enabled (#749) is not in mixedCase
Parameter AquaGoat.calculateFee(uint256,uint256)._fee (#840) is not in mixedCase
Parameter AquaGoat.calculateFee(uint256,uint256)._amount (#840) is not in mixedCase
Constant AquaGoat._tTotal (#517) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AquaGoat._name (#521) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AquaGoat._symbol (#522) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AquaGoat._decimals (#523) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AquaGoat._reflectionTaxFee (#525) is not in mixedCase
Variable AquaGoat._liquidityFee (#528) is not in mixedCase
Variable AquaGoat._charityFee (#531) is not in mixedCase
Variable AquaGoat._maxTxAmount (#540) is not in mixedCase
Function IPancakeswapV2Pair.DOMAIN_SEPARATOR() (#1117) is not in mixedCase
Function IPancakeswapV2Pair.PERMIT_TYPEHASH() (#1118) is not in mixedCase
Function IPancakeswapV2Pair.MINIMUM_LIQUIDITY() (#1135) is not in mixedCase
Function IPancakeswapV2Router01.WETH() (#1157) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#244)" inContext (#238-247)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._getTValues(uint256).tCharityFee (#785)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tCharityFee (#1060)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).tCharityFee (#790)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._takeCharityFee(uint256).tCharityFee (#827)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._takeCharityFee(uint256).rCharityFee (#829)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).tCharityFee (#790)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._takeCharityFee(uint256).tCharityFee (#827)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._transferStandard(address,address,uint256).tCharityFee (#1025)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._getValues(uint256).tCharityFee (#777)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tCharityFee (#1060)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tCharityFee (#1060)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._getTValues(uint256).tCharityFee (#785)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).tCharityFee (#790)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tCharityFee (#1048)
Variable AquaGoat._getValues(uint256).rTransferAmount (#778) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._transferFromExcluded(address,address,uint256).rTransferAmount (#1048) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._transferFromExcluded(address,address,uint256).rTransferAmount (#1048) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._transferFromExcluded(address,address,uint256).rTransferAmount (#1048) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat._transferBothExcluded(address,address,uint256).rTransferAmount (#1060) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._getValues(uint256).rTransferAmount (#778) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._getValues(uint256).rTransferAmount (#778) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._transferBothExcluded(address,address,uint256).rTransferAmount (#1060) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat._getValues(uint256).rTransferAmount (#778) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat._transferStandard(address,address,uint256).rTransferAmount (#1025) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._transferStandard(address,address,uint256).rTransferAmount (#1025) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._transferFromExcluded(address,address,uint256).rTransferAmount (#1048) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._takeFee(uint256,uint256,uint256,uint256).tCharityFee (#1072)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._getValues(uint256).tCharityFee (#777)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._transferStandard(address,address,uint256).tCharityFee (#1025)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tCharityFee (#1036)
Variable AquaGoat._charityFee (#531) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tCharityFee (#1048)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._getTValues(uint256).tCharityFee (#785)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tCharityFee (#1036)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tCharityFee (#1036)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tCharityFee (#1048)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._takeFee(uint256,uint256,uint256,uint256).tCharityFee (#1072)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._getValues(uint256).tCharityFee (#777)
Variable AquaGoat._takeCharityFee(uint256).rCharityFee (#829) is too similar to AquaGoat._takeFee(uint256,uint256,uint256,uint256).tCharityFee (#1072)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._transferStandard(address,address,uint256).tCharityFee (#1025)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rCharityFee (#794) is too similar to AquaGoat._takeCharityFee(uint256).tCharityFee (#827)
Variable AquaGoat.reflectionFromToken(uint256,bool).rTransferAmount (#672) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._getValues(uint256).rTransferAmount (#778) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._transferFromExcluded(address,address,uint256).rTransferAmount (#1048) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable AquaGoat._transferBothExcluded(address,address,uint256).rTransferAmount (#1060) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable AquaGoat.reflectionFromToken(uint256,bool).rTransferAmount (#672) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat._getValues(uint256).rTransferAmount (#778) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat.reflectionFromToken(uint256,bool).rTransferAmount (#672) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat.reflectionFromToken(uint256,bool).rTransferAmount (#672) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to AquaGoat._transferBothExcluded(address,address,uint256).tTransferAmount (#1060)
Variable AquaGoat.reflectionFromToken(uint256,bool).rTransferAmount (#672) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable AquaGoat._transferToExcluded(address,address,uint256).rTransferAmount (#1036) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable AquaGoat._transferStandard(address,address,uint256).rTransferAmount (#1025) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable AquaGoat.reflectionFromToken(uint256,bool).rTransferAmount (#672) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to AquaGoat._getTValues(uint256).tTransferAmount (#786)
Variable AquaGoat._transferBothExcluded(address,address,uint256).rTransferAmount (#1060) is too similar to AquaGoat._transferFromExcluded(address,address,uint256).tTransferAmount (#1048)
Variable AquaGoat._transferStandard(address,address,uint256).rTransferAmount (#1025) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat._transferFromExcluded(address,address,uint256).rTransferAmount (#1048) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat._transferStandard(address,address,uint256).rTransferAmount (#1025) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._transferBothExcluded(address,address,uint256).rTransferAmount (#1060) is too similar to AquaGoat._getValues(uint256).tTransferAmount (#777)
Variable AquaGoat._transferBothExcluded(address,address,uint256).rTransferAmount (#1060) is too similar to AquaGoat._transferToExcluded(address,address,uint256).tTransferAmount (#1036)
Variable AquaGoat._transferStandard(address,address,uint256).rTransferAmount (#1025) is too similar to AquaGoat._transferStandard(address,address,uint256).tTransferAmount (#1025)
Variable IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1162) is too similar to IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1163)
Prevent variables from having similar names.

Additional information: link

AquaGoat.slitherConstructorVariables() (#501-1077) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#540)
AquaGoat.slitherConstructorVariables() (#501-1077) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 5000000 * 10 ** 6 * 10 ** 9 (#541)
AquaGoat.slitherConstructorConstantVariables() (#501-1077) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#517)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousCharityWalletAddress (#407) is never used in AquaGoat (#501-1077)
Remove unused state variables.

Additional information: link

Ownable._previousCharityWalletAddress (#407) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#453-457)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#463-467)
setCharityWalletAddress(address) should be declared external:
- Ownable.setCharityWalletAddress(address) (#473-477)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#479-481)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#484-489)
unlock() should be declared external:
- Ownable.unlock() (#492-498)
name() should be declared external:
- AquaGoat.name() (#574-576)
symbol() should be declared external:
- AquaGoat.symbol() (#579-581)
decimals() should be declared external:
- AquaGoat.decimals() (#583-585)
totalSupply() should be declared external:
- AquaGoat.totalSupply() (#588-590)
transfer(address,uint256) should be declared external:
- AquaGoat.transfer(address,uint256) (#598-601)
allowance(address,address) should be declared external:
- AquaGoat.allowance(address,address) (#604-606)
approve(address,uint256) should be declared external:
- AquaGoat.approve(address,uint256) (#609-612)
transferFrom(address,address,uint256) should be declared external:
- AquaGoat.transferFrom(address,address,uint256) (#615-619)
increaseAllowance(address,uint256) should be declared external:
- AquaGoat.increaseAllowance(address,uint256) (#622-625)
decreaseAllowance(address,uint256) should be declared external:
- AquaGoat.decreaseAllowance(address,uint256) (#628-631)
isExcludedFromReward(address) should be declared external:
- AquaGoat.isExcludedFromReward(address) (#634-636)
totalFees() should be declared external:
- AquaGoat.totalFees() (#639-641)
blackList(address) should be declared external:
- AquaGoat.blackList(address) (#643-648)
removeFromBlacklist(address) should be declared external:
- AquaGoat.removeFromBlacklist(address) (#650-654)
deliver(uint256) should be declared external:
- AquaGoat.deliver(uint256) (#657-664)
reflectionFromToken(uint256,bool) should be declared external:
- AquaGoat.reflectionFromToken(uint256,bool) (#666-675)
excludeFromReward(address) should be declared external:
- AquaGoat.excludeFromReward(address) (#685-692)
excludeFromFee(address) should be declared external:
- AquaGoat.excludeFromFee(address) (#709-711)
includeInFee(address) should be declared external:
- AquaGoat.includeInFee(address) (#714-716)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AquaGoat.setSwapAndLiquifyEnabled(bool) (#749-752)
isExcludedFromFee(address) should be declared external:
- AquaGoat.isExcludedFromFee(address) (#867-869)
getLeftOverContractBNBBalance() should be declared external:
- AquaGoat.getLeftOverContractBNBBalance() (#963-965)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

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

No disclosed threats


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

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Token has relatively low CoinGecko rank

Price for AQUAGOAT

News for AQUAGOAT