AetherV2 Token Logo

ATH [AetherV2] Token

About ATH

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Aether is building a bridge between science and cryptocurrency.

Exploration has been the basis of human development from the beginning. Only by exploring and surpassing limits the human race can reach its true potential.

Aether will travel to the limits of science and technology, directing his project and efforts to transform the impossible into reality.

Our project is based on research, technology development, and the achieving of humankind primary dream.

In partenership with Arca Space, we helped with the testing and development of Arca Space ecological propulsion system (Ecorocket). The rocket will be launched in the second half of September. Moreover, on this occasion, Arca Space will launch Aether cryptocurrency in space. 

EcoRocket is a three-stage orbital vehicle, with its first two stages fully reusable. The first two stages are using an environmentally friendly water- based propellant that will put the third stage at an altitude of 50km and a speed of 5,400km/h. The third stage, fuelled by RP-1 and High Test Peroxide, will then propel a payload of up to 10 kilograms into orbit.

Laser Scorebeta Last Audit: 2 March 2022

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

AetherV2.swapAndLiquify(uint256) (#1076-1095) sends eth to arbitrary user
Dangerous calls:
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
AetherV2.addLiquidity(uint256,uint256) (#1147-1160) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1152-1159)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AetherV2._transfer(address,address,uint256) (#1030-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1138-1144)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1061)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#992)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1194)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1185)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1205)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#908)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1186)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1196)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1206)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rTotal = _rTotal.sub(rFee) (#947)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#994)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1204)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#907)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1195)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#909)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

Redundant expression "this (#291)" inContext (#285-294)
Remove redundant statements if they congest code but offer no value.

Additional information: link

AetherV2._decimals (#734) should be constant
AetherV2._name (#732) should be constant
AetherV2._router (#744) should be constant
AetherV2._symbol (#733) should be constant
AetherV2._tTotal (#728) should be constant
AetherV2.numTokensSellToAddToLiquidity (#756) should be constant
Ownable._previousOwner (#449) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

AetherV2.swapAndLiquify(uint256) (#1076-1095) performs a multiplication on the result of a division:
-threePercentBnb = ninePercentBnb.div(9).mul(3) (#1088)
Consider ordering multiplication before division.

Additional information: link

AetherV2.addLiquidity(uint256,uint256) (#1147-1160) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1152-1159)
Ensure that all the return values of the function calls are used.

Additional information: link

AetherV2.allowance(address,address).owner (#823) shadows:
- Ownable.owner() (#465-467) (function)
AetherV2._approve(address,address,uint256).owner (#1022) shadows:
- Ownable.owner() (#465-467) (function)
Rename the local variables that shadow another component.

Additional information: link

AetherV2.setTaxFeePercent(uint256) (#924-926) should emit an event for:
- _taxFee = taxFee (#925)
AetherV2.setLiquidityFeePercent(uint256) (#928-930) should emit an event for:
- _liquidityFee = liquidityFee (#929)
AetherV2.setMaxTxPercent(uint256) (#932-936) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#933-935)
Emit an event for critical parameter changes.

Additional information: link

AetherV2.withdrawResidualBNB(address).newAddress (#1097) lacks a zero-check on :
- address(newAddress).transfer(address(this).balance) (#1098)
AetherV2.setDevWallet(address).newAddress (#1101) lacks a zero-check on :
- _devWallet = address(newAddress) (#1102)
AetherV2.setMarketingWallet(address).newAddress (#1105) lacks a zero-check on :
- _marketingWallet = address(newAddress) (#1106)
AetherV2.setArcaWallet(address).newAddress (#1109) lacks a zero-check on :
- _arcaWallet = address(newAddress) (#1110)
AetherV2.setBuybackWallet(address).newAddress (#1113) lacks a zero-check on :
- _buybackWallet = address(newAddress) (#1114)
Check that the address is not zero.

Additional information: link

Reentrancy in AetherV2._transfer(address,address,uint256) (#1030-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1138-1144)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1061)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _liquidityFee = _previousLiquidityFee (#1015)
- _liquidityFee = 0 (#1010)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _previousLiquidityFee = _liquidityFee (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _previousTaxFee = _taxFee (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tFeeTotal = _tFeeTotal.add(tFee) (#948)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _taxFee = _previousTaxFee (#1014)
- _taxFee = 0 (#1009)
Reentrancy in AetherV2.constructor() (#772-789):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#777-778)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#784)
- _isExcludedFromFee[_router] = true (#785)
- _isExcludedFromFee[address(this)] = true (#786)
- uniswapV2Router = _uniswapV2Router (#781)
Reentrancy in AetherV2.setRouterAddress(address) (#791-795):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#793)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#794)
Reentrancy in AetherV2.transferFrom(address,address,uint256) (#832-836):
External calls:
- _transfer(sender,recipient,amount) (#833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1138-1144)
External calls sending eth:
- _transfer(sender,recipient,amount) (#833)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#834)
- _allowances[owner][spender] = amount (#1026)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AetherV2._transfer(address,address,uint256) (#1030-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1138-1144)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1061)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1189)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#1199)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#1209)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#913)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
Reentrancy in AetherV2.constructor() (#772-789):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#777-778)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#788)
Reentrancy in AetherV2.transferFrom(address,address,uint256) (#832-836):
External calls:
- _transfer(sender,recipient,amount) (#833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1138-1144)
External calls sending eth:
- _transfer(sender,recipient,amount) (#833)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1027)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#834)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#318-327) uses assembly
- INLINE ASM (#325)
Address._functionCallWithValue(address,bytes,uint256,string) (#411-432) uses assembly
- INLINE ASM (#424-427)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#411-432) is never used and should be removed
Address.functionCall(address,bytes) (#371-373) is never used and should be removed
Address.functionCall(address,bytes,string) (#381-383) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#396-398) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#406-409) is never used and should be removed
Address.isContract(address) (#318-327) is never used and should be removed
Address.sendValue(address,uint256) (#345-351) is never used and should be removed
AetherV2.addLiquidity(uint256,uint256) (#1147-1160) is never used and should be removed
Context._msgData() (#290-293) is never used and should be removed
SafeMath.mod(uint256,uint256) (#263-265) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#279-282) is never used and should be removed
Remove unused functions.

Additional information: link

AetherV2._rTotal (#729) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AetherV2._previousTaxFee (#737) is set pre-construction with a non-constant function or state variable:
- _taxFee
AetherV2._previousLiquidityFee (#747) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
AetherV2._maxTxAmount (#755) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(100).div(10 ** 2)
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) (#345-351):
- (success) = recipient.call{value: amount}() (#349)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#411-432):
- (success,returndata) = target.call{value: weiValue}(data) (#415)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#536) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#537) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#554) is not in mixedCase
Function IUniswapV2Router01.WETH() (#576) is not in mixedCase
Parameter AetherV2.setSwapAndLiquifyEnabled(bool)._enabled (#938) is not in mixedCase
Variable AetherV2._taxFee (#736) is not in mixedCase
Variable AetherV2._arcaWallet (#739) is not in mixedCase
Variable AetherV2._buybackWallet (#740) is not in mixedCase
Variable AetherV2._marketingWallet (#741) is not in mixedCase
Variable AetherV2._devWallet (#742) is not in mixedCase
Variable AetherV2._liquidityFee (#746) is not in mixedCase
Variable AetherV2._maxTxAmount (#755) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in AetherV2._transfer(address,address,uint256) (#1030-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1061)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _liquidityFee = _previousLiquidityFee (#1015)
- _liquidityFee = 0 (#1010)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _previousLiquidityFee = _liquidityFee (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _previousTaxFee = _taxFee (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#992)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1194)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1185)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1205)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#908)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1186)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1196)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1206)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rTotal = _rTotal.sub(rFee) (#947)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tFeeTotal = _tFeeTotal.add(tFee) (#948)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#994)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1204)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#907)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1195)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _taxFee = _previousTaxFee (#1014)
- _taxFee = 0 (#1009)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1189)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#1199)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#1209)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#913)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
Reentrancy in AetherV2.transferFrom(address,address,uint256) (#832-836):
External calls:
- _transfer(sender,recipient,amount) (#833)
- _arcaWallet.transfer(threePercentBnb) (#1089)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
- _devWallet.transfer(onePercent) (#1094)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#834)
- _allowances[owner][spender] = amount (#1026)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1027)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#834)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#581) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#582)
Variable AetherV2._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._getValues(uint256).rTransferAmount (#953) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#968) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2._transferBothExcluded(address,address,uint256).rTransferAmount (#906) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2._transferStandard(address,address,uint256).rTransferAmount (#1184) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2._transferStandard(address,address,uint256).rTransferAmount (#1184) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2._transferStandard(address,address,uint256).rTransferAmount (#1184) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._transferStandard(address,address,uint256).rTransferAmount (#1184) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._transferBothExcluded(address,address,uint256).rTransferAmount (#906) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Variable AetherV2._getValues(uint256).rTransferAmount (#953) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2._getValues(uint256).rTransferAmount (#953) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._transferBothExcluded(address,address,uint256).rTransferAmount (#906) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#968) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2._transferBothExcluded(address,address,uint256).rTransferAmount (#906) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2._transferBothExcluded(address,address,uint256).rTransferAmount (#906) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#968) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._transferBothExcluded(address,address,uint256).rTransferAmount (#906) is too similar to AetherV2._transferToExcluded(address,address,uint256).tTransferAmount (#1193)
Variable AetherV2._transferStandard(address,address,uint256).rTransferAmount (#1184) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to AetherV2._transferFromExcluded(address,address,uint256).tTransferAmount (#1203)
Variable AetherV2.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Variable AetherV2._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to AetherV2._getTValues(uint256).tTransferAmount (#960)
Variable AetherV2._getValues(uint256).rTransferAmount (#953) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#968) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2._getValues(uint256).rTransferAmount (#953) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#968) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Variable AetherV2._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to AetherV2._transferStandard(address,address,uint256).tTransferAmount (#1184)
Variable AetherV2._getValues(uint256).rTransferAmount (#953) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Variable AetherV2._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#968) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Variable AetherV2._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to AetherV2._getValues(uint256).tTransferAmount (#952)
Variable AetherV2._transferStandard(address,address,uint256).rTransferAmount (#1184) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Variable AetherV2._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to AetherV2._transferBothExcluded(address,address,uint256).tTransferAmount (#906)
Prevent variables from having similar names.

Additional information: link

AetherV2.slitherConstructorVariables() (#714-1212) uses literals with too many digits:
- _arcaWallet = 0x000000000000000000000000000000000000dEaD (#739)
AetherV2.slitherConstructorVariables() (#714-1212) uses literals with too many digits:
- _buybackWallet = 0x000000000000000000000000000000000000dEaD (#740)
AetherV2.slitherConstructorVariables() (#714-1212) uses literals with too many digits:
- _marketingWallet = 0x000000000000000000000000000000000000dEaD (#741)
AetherV2.slitherConstructorVariables() (#714-1212) uses literals with too many digits:
- _devWallet = 0x000000000000000000000000000000000000dEaD (#742)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#449) is never used in AetherV2 (#714-1212)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#484-487)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#493-497)
setRouterAddress(address) should be declared external:
- AetherV2.setRouterAddress(address) (#791-795)
name() should be declared external:
- AetherV2.name() (#797-799)
symbol() should be declared external:
- AetherV2.symbol() (#801-803)
decimals() should be declared external:
- AetherV2.decimals() (#805-807)
totalSupply() should be declared external:
- AetherV2.totalSupply() (#809-811)
allowance(address,address) should be declared external:
- AetherV2.allowance(address,address) (#823-825)
approve(address,uint256) should be declared external:
- AetherV2.approve(address,uint256) (#827-830)
transferFrom(address,address,uint256) should be declared external:
- AetherV2.transferFrom(address,address,uint256) (#832-836)
increaseAllowance(address,uint256) should be declared external:
- AetherV2.increaseAllowance(address,uint256) (#838-841)
decreaseAllowance(address,uint256) should be declared external:
- AetherV2.decreaseAllowance(address,uint256) (#843-846)
isExcludedFromReward(address) should be declared external:
- AetherV2.isExcludedFromReward(address) (#848-850)
totalFees() should be declared external:
- AetherV2.totalFees() (#852-854)
deliver(uint256) should be declared external:
- AetherV2.deliver(uint256) (#856-863)
reflectionFromToken(uint256,bool) should be declared external:
- AetherV2.reflectionFromToken(uint256,bool) (#865-874)
excludeFromReward(address) should be declared external:
- AetherV2.excludeFromReward(address) (#882-890)
excludeFromFee(address) should be declared external:
- AetherV2.excludeFromFee(address) (#916-918)
includeInFee(address) should be declared external:
- AetherV2.includeInFee(address) (#920-922)
isExcludedFromFee(address) should be declared external:
- AetherV2.isExcludedFromFee(address) (#1018-1020)
setDevWallet(address) should be declared external:
- AetherV2.setDevWallet(address) (#1101-1103)
setMarketingWallet(address) should be declared external:
- AetherV2.setMarketingWallet(address) (#1105-1107)
setArcaWallet(address) should be declared external:
- AetherV2.setArcaWallet(address) (#1109-1111)
setBuybackWallet(address) should be declared external:
- AetherV2.setBuybackWallet(address) (#1113-1115)
Use the external attribute for functions never called from the contract.

Additional information: link

AetherV2.swapTokensForEth(uint256) (#1129-1145) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1133)
AetherV2.swapTokensForEth(uint256) (#1129-1145) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1138-1144)
AetherV2.swapAndLiquify(uint256) (#1076-1095) has external calls inside a loop: _arcaWallet.transfer(threePercentBnb) (#1089)
AetherV2.swapAndLiquify(uint256) (#1076-1095) has external calls inside a loop: _buybackWallet.transfer(twoPointFivePercentBnb) (#1091)
AetherV2.swapAndLiquify(uint256) (#1076-1095) has external calls inside a loop: _marketingWallet.transfer(twoPointFivePercentBnb) (#1092)
AetherV2.swapAndLiquify(uint256) (#1076-1095) has external calls inside a loop: _devWallet.transfer(onePercent) (#1094)
Favor pull over push strategy for external calls.

Additional information: link

AetherV2.includeInReward(address) (#892-903) has costly operations inside a loop:
- _excluded.pop() (#899)
AetherV2.lockTheSwap() (#766-770) has costly operations inside a loop:
- inSwapAndLiquify = true (#767)
AetherV2.lockTheSwap() (#766-770) has costly operations inside a loop:
- inSwapAndLiquify = false (#769)
AetherV2.removeAllFee() (#1003-1011) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#1006)
AetherV2.removeAllFee() (#1003-1011) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#1007)
AetherV2.removeAllFee() (#1003-1011) has costly operations inside a loop:
- _taxFee = 0 (#1009)
AetherV2.removeAllFee() (#1003-1011) has costly operations inside a loop:
- _liquidityFee = 0 (#1010)
AetherV2._reflectFee(uint256,uint256) (#946-949) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#947)
AetherV2._reflectFee(uint256,uint256) (#946-949) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#948)
AetherV2.restoreAllFee() (#1013-1016) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#1014)
AetherV2.restoreAllFee() (#1013-1016) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#1015)
Use a local variable to hold the loop computation result.

Additional information: link

Holders:

Contract has 14% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Token has only one trading pair


Last post in Twitter was more than 30 days ago


Unable to find Youtube account

No disclosed threats


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for ATH

News for ATH