A decentralized Ethereum Aqua SWAP token that will turn into a dynamic ecosystem.
ETQ is an alternative blockchain where each transaction will create a burning
effect, reducing the amount of the total supply, making the token priceless.
Participate in the giveaway and get 500 ETQ tokens for free.
Token is flagged by TokenSniffer due to presence of exploit in contract code
Contract ownership is not renounced (belongs to a wallet)
EthereumAquaSwap.startAirdrop(uint256,uint256,uint256,uint256) (#207-213) should emit an event for:
- aSBlock = _aSBlock (#208)
- aEBlock = _aEBlock (#209)
- aAmt = _aAmt (#210)
- aCap = _aCap (#211)
EthereumAquaSwap.startSale(uint256,uint256,uint256,uint256,uint256) (#214-221) should emit an event for:
- sSBlock = _sSBlock (#215)
- sEBlock = _sEBlock (#216)
- sChunk = _sChunk (#217)
- sPrice = _sPrice (#218)
- sCap = _sCap (#219)
Emit an event for critical parameter changes.
Additional information: link
Owned.transferOwnership(address)._newOwner (#65) lacks a zero-check on :
- newOwner = _newOwner (#66)
EthereumAquaSwap.clearETH()._owner (#224) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#225)
Check that the address is not zero.
Additional information: link
EthereumAquaSwap.getAirdrop(address) (#162-178) compares to a boolean constant:
-require(bool,string)(_hasClaimed[msg.sender] != true,You have already claimed!) (#165)
Remove the equality to the boolean constant.
Additional information: link
SafeMath.div(uint256,uint256) (#28-31) is never used and should be removed
SafeMath.mul(uint256,uint256) (#24-27) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.5.10 (#13) allows old versions
solc-0.5.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
Parameter Owned.transferOwnership(address)._newOwner (#65) is not in mixedCase
Variable TokenBEP20._totalSupply (#82) is not in mixedCase
Variable TokenBEP20._hasClaimed (#84) is not in mixedCase
Parameter EthereumAquaSwap.getAirdrop(address)._refer (#162) is not in mixedCase
Parameter EthereumAquaSwap.tokenSale(address)._refer (#180) is not in mixedCase
Parameter EthereumAquaSwap.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#207) is not in mixedCase
Parameter EthereumAquaSwap.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#207) is not in mixedCase
Parameter EthereumAquaSwap.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#207) is not in mixedCase
Parameter EthereumAquaSwap.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#207) is not in mixedCase
Parameter EthereumAquaSwap.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#214) is not in mixedCase
Parameter EthereumAquaSwap.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#214) is not in mixedCase
Parameter EthereumAquaSwap.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#214) is not in mixedCase
Parameter EthereumAquaSwap.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#214) is not in mixedCase
Parameter EthereumAquaSwap.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#214) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
TokenBEP20.constructor() (#89-98) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** uint256(decimals) (#93)
TokenBEP20.constructor() (#89-98) uses literals with too many digits:
- balances[owner] = 650000000 * 10 ** uint256(decimals) (#94)
TokenBEP20.constructor() (#89-98) uses literals with too many digits:
- balances[address(this)] = 350000000 * 10 ** uint256(decimals) (#95)
TokenBEP20.constructor() (#89-98) uses literals with too many digits:
- Transfer(address(0),owner,650000000 * 10 ** uint256(decimals)) (#96)
TokenBEP20.constructor() (#89-98) uses literals with too many digits:
- Transfer(address(0),address(this),350000000 * 10 ** uint256(decimals)) (#97)
EthereumAquaSwap.constructor() (#154-159) uses literals with too many digits:
- startAirdrop(block.number,99999999,500 * 10 ** uint256(decimals),50000000) (#157)
EthereumAquaSwap.constructor() (#154-159) uses literals with too many digits:
- startSale(block.number,99999999,0,500000 * 10 ** uint256(decimals),300000000) (#158)
EthereumAquaSwap.getAirdrop(address) (#162-178) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#167)
EthereumAquaSwap.tokenSale(address) (#180-197) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#187)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
totalSupply() should be declared external:
- BEP20Interface.totalSupply() (#35)
- TokenBEP20.totalSupply() (#100-102)
allowance(address,address) should be declared external:
- BEP20Interface.allowance(address,address) (#37)
- TokenBEP20.allowance(address,address) (#124-126)
transfer(address,uint256) should be declared external:
- BEP20Interface.transfer(address,uint256) (#38)
- TokenBEP20.transfer(address,uint256) (#106-111)
approve(address,uint256) should be declared external:
- BEP20Interface.approve(address,uint256) (#39)
- TokenBEP20.approve(address,uint256) (#112-116)
transferFrom(address,address,uint256) should be declared external:
- BEP20Interface.transferFrom(address,address,uint256) (#40)
- TokenBEP20.transferFrom(address,address,uint256) (#117-123)
receiveApproval(address,uint256,address,bytes) should be declared external:
- ApproveAndCallFallBack.receiveApproval(address,uint256,address,bytes) (#47)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (#65-67)
acceptOwnership() should be declared external:
- Owned.acceptOwnership() (#68-73)
approveAndCall(address,uint256,bytes) should be declared external:
- TokenBEP20.approveAndCall(address,uint256,bytes) (#127-132)
getAirdrop(address) should be declared external:
- EthereumAquaSwap.getAirdrop(address) (#162-178)
tokenSale(address) should be declared external:
- EthereumAquaSwap.tokenSale(address) (#180-197)
viewAirdrop() should be declared external:
- EthereumAquaSwap.viewAirdrop() (#200-202)
viewSale() should be declared external:
- EthereumAquaSwap.viewSale() (#203-205)
clearETH() should be declared external:
- EthereumAquaSwap.clearETH() (#223-226)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Unable to find Discord account
Twitter account has few posts