AETHERIUS TOKEN Token Logo

AETH [AETHERIUS] Token

About AETH

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Aetherius Token it is the first token to let you be part of the mining process as a mining-backed cryptocurrency. Is a derivative digital asset whose value is supported by a crypto mining farm. Also, Aetherius is the only token with financial support from a mining farm. A percentage from the mining profit will be injected every month into Aetherius to support the continues growing of the price.

Social

Laser Scorebeta Last Audit: 28 January 2022

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

Reentrancy in AETH._transfer(address,address,uint256) (#1024-1058):
External calls:
- swapAndSendMarketing(marketingTokens) (#1049)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- swapAndSendMarketing(marketingTokens) (#1049)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1057)
- _liquidityFee = _previousLiquidityFee (#1008)
- _liquidityFee = 0 (#1002)
- _tokenTransfer(from,to,amount) (#1057)
- _marketingFee = _previousMarketingFee (#1009)
- _marketingFee = 0 (#1001)
- _tokenTransfer(from,to,amount) (#1057)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#977)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1183)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1191)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1202)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#918)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1165)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1166)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1193)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1203)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#920)
- _tokenTransfer(from,to,amount) (#1057)
- _rTotal = _rTotal.sub(rFee) (#932)
- _tokenTransfer(from,to,amount) (#1057)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#979)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#917)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1201)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1192)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#919)
- inSwapAndLiquify = false (#1053)
Apply the check-effects-interactions pattern.

Additional information: link


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

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

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#511) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#512) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#528) is not in mixedCase
Function IUniswapV2Router01.WETH() (#549) is not in mixedCase
Parameter AETH.calculateTaxFee(uint256)._amount (#982) is not in mixedCase
Parameter AETH.calculateLiquidityFee(uint256)._amount (#988) is not in mixedCase
Parameter AETH.setSwapAndLiquifyEnabled(bool)._enabled (#1245) is not in mixedCase
Variable AETH._taxFee (#707) is not in mixedCase
Variable AETH._maxTxAmount (#709-711) is not in mixedCase
Variable AETH._liquidityFee (#713) is not in mixedCase
Variable AETH._marketingFee (#721) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

AETH.includeInReward(address) (#902-913) has costly operations inside a loop:
- _excluded.pop() (#909)
Use a local variable to hold the loop computation result.

Additional information: link

AETH.takeMarketing(address,uint256,uint256,uint256) (#1175-1186) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1179)
Consider ordering multiplication before division.

Additional information: link

AETH.addLiquidity(uint256,uint256) (#1114-1127) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
Ensure that all the return values of the function calls are used.

Additional information: link

AETH.constructor(address)._owner (#746) shadows:
- Ownable._owner (#35) (state variable)
AETH.allowance(address,address).owner (#828) shadows:
- Ownable.owner() (#53-55) (function)
AETH._approve(address,address,uint256).owner (#1016) shadows:
- Ownable.owner() (#53-55) (function)
Rename the local variables that shadow another component.

Additional information: link

AETH.setTaxFeePercent(uint256) (#1219-1223) should emit an event for:
- _taxFee = taxFee (#1220)
AETH.setMarketingFee(uint256) (#1225-1229) should emit an event for:
- _marketingFee = marketingF (#1226)
AETH.setLiquidityFeePercent(uint256) (#1231-1235) should emit an event for:
- _liquidityFee = liquidityFee (#1232)
AETH.setNumTokensSellToAddToLiquidity(uint256) (#1239-1241) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** 9 (#1240)
Emit an event for critical parameter changes.

Additional information: link

AETH.setMarketingWallet(address).newWallet (#848) lacks a zero-check on :
- marketingWallet = newWallet (#849)
Check that the address is not zero.

Additional information: link

Reentrancy in AETH._transfer(address,address,uint256) (#1024-1058):
External calls:
- swapAndSendMarketing(marketingTokens) (#1049)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- swapAndSendMarketing(marketingTokens) (#1049)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- _allowances[owner][spender] = amount (#1020)
- _tokenTransfer(from,to,amount) (#1057)
- _previousLiquidityFee = _liquidityFee (#998)
- _tokenTransfer(from,to,amount) (#1057)
- _previousMarketingFee = _marketingFee (#999)
- _tokenTransfer(from,to,amount) (#1057)
- _previousTaxFee = _taxFee (#997)
- _tokenTransfer(from,to,amount) (#1057)
- _tFeeTotal = _tFeeTotal.add(tFee) (#933)
- _tokenTransfer(from,to,amount) (#1057)
- _taxFee = _previousTaxFee (#1007)
- _taxFee = 0 (#1000)
Reentrancy in AETH.constructor(address) (#746-762):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
State variables written after the call(s):
- _isExcludedFromAntiwhale[msg.sender] = true (#757)
- _isExcludedFromAntiwhale[address(0)] = true (#758)
- _isExcludedFromAntiwhale[address(this)] = true (#759)
- _isExcludedFromAntiwhale[deadAddress] = true (#760)
- _isExcludedFromFee[owner()] = true (#755)
- _isExcludedFromFee[address(this)] = true (#756)
- _setAutomatedMarketMakerPair(uniswapV2Pair,true) (#753)
- automatedMarketMakerPairs[pair] = value (#784)
- uniswapV2Router = _uniswapV2Router (#754)
Reentrancy in AETH.swapAndLiquify(uint256) (#1073-1094):
External calls:
- swapTokensForEth(half) (#1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1091)
- _allowances[owner][spender] = amount (#1020)
Reentrancy in AETH.transferFrom(address,address,uint256) (#837-841):
External calls:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#839)
- _allowances[owner][spender] = amount (#1020)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AETH._transfer(address,address,uint256) (#1024-1058):
External calls:
- swapAndSendMarketing(marketingTokens) (#1049)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- swapAndSendMarketing(marketingTokens) (#1049)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1021)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- SwapAndLiquify(half,newBalance,otherHalf) (#1093)
- swapAndLiquify(contractTokenBalance.mul(_liquidityFee).div(totalTaxForSwap)) (#1052)
- Transfer(sender,address(this),tMarketing) (#1184)
- _tokenTransfer(from,to,amount) (#1057)
- Transfer(sender,recipient,tTransferAmount) (#1169)
- _tokenTransfer(from,to,amount) (#1057)
- Transfer(sender,recipient,tTransferAmount) (#1206)
- _tokenTransfer(from,to,amount) (#1057)
- Transfer(sender,recipient,tTransferAmount) (#1196)
- _tokenTransfer(from,to,amount) (#1057)
- Transfer(sender,recipient,tTransferAmount) (#923)
- _tokenTransfer(from,to,amount) (#1057)
Reentrancy in AETH.constructor(address) (#746-762):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#761)
Reentrancy in AETH.swapAndLiquify(uint256) (#1073-1094):
External calls:
- swapTokensForEth(half) (#1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1021)
- addLiquidity(otherHalf,newBalance) (#1091)
- SwapAndLiquify(half,newBalance,otherHalf) (#1093)
Reentrancy in AETH.transferFrom(address,address,uint256) (#837-841):
External calls:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1119-1126)
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1021)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#839)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#358-367) uses assembly
- INLINE ASM (#365)
Address._functionCallWithValue(address,bytes,uint256,string) (#451-472) uses assembly
- INLINE ASM (#464-467)
Do not use evm assembly.

Additional information: link

AETH.antiWhale(address,address,uint256) (#764-774) compares to a boolean constant:
-_isExcludedFromAntiwhale[sender] == false && _isExcludedFromAntiwhale[recipient] == false (#767-768)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#451-472) is never used and should be removed
Address.functionCall(address,bytes) (#411-413) is never used and should be removed
Address.functionCall(address,bytes,string) (#421-423) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#436-438) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#446-449) is never used and should be removed
Address.isContract(address) (#358-367) is never used and should be removed
Address.sendValue(address,uint256) (#385-391) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (#315-317) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#331-334) is never used and should be removed
Remove unused functions.

Additional information: link

AETH._rTotal (#700) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AETH._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _taxFee
AETH._maxTxAmount (#709-711) is set pre-construction with a non-constant function or state variable:
- _tTotal * (50) / (10 ** 4)
AETH._previousLiquidityFee (#714) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
AETH._previousMarketingFee (#722) is set pre-construction with a non-constant function or state variable:
- _marketingFee
AETH.totalFeesTax (#724) is set pre-construction with a non-constant function or state variable:
- _taxFee.add(_liquidityFee).add(_marketingFee)
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) (#385-391):
- (success) = recipient.call{value: amount}() (#389)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#451-472):
- (success,returndata) = target.call{value: weiValue}(data) (#455)
Low level call in AETH.swapAndSendMarketing(uint256) (#1060-1069):
- (success) = address(marketingWallet).call{value: newBalance}() (#1065)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#554) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#555)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH._transferFromExcluded(address,address,uint256).rTransferAmount (#1200) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#953) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH._getTValues(uint256).tTransferAmount (#945)
Variable AETH._transferBothExcluded(address,address,uint256).rTransferAmount (#916) is too similar to AETH._transferStandard(address,address,uint256).tTransferAmount (#1163)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH._transferToExcluded(address,address,uint256).tTransferAmount (#1190)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH._transferToExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._getValues(uint256).rTransferAmount (#938) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Variable AETH.reflectionFromToken(uint256,bool).rTransferAmount (#882) is too similar to AETH.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1175)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH._transferFromExcluded(address,address,uint256).tTransferAmount (#1200)
Variable AETH._transferStandard(address,address,uint256).rTransferAmount (#1163) is too similar to AETH._getValues(uint256).tTransferAmount (#937)
Variable AETH.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1175) is too similar to AETH._transferBothExcluded(address,address,uint256).tTransferAmount (#916)
Prevent variables from having similar names.

Additional information: link

AETH.slitherConstructorVariables() (#686-1252) uses literals with too many digits:
- _tTotal = 100000000000 * (10 ** 9) (#699)
AETH.slitherConstructorVariables() (#686-1252) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#717)
AETH.slitherConstructorVariables() (#686-1252) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 9 (#733)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

AETH._decimals (#705) should be constant
AETH._name (#703) should be constant
AETH._symbol (#704) should be constant
AETH._tTotal (#699) should be constant
AETH.deadAddress (#717) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#72-75)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#87-89)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#92-97)
unlock() should be declared external:
- Ownable.unlock() (#100-105)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- AETH.setAutomatedMarketMakerPair(address,bool) (#777-781)
name() should be declared external:
- AETH.name() (#788-790)
symbol() should be declared external:
- AETH.symbol() (#792-794)
decimals() should be declared external:
- AETH.decimals() (#796-798)
totalSupply() should be declared external:
- AETH.totalSupply() (#800-802)
isExcludedFromAntiwhale(address) should be declared external:
- AETH.isExcludedFromAntiwhale(address) (#816-818)
setExcludeFromAntiwhale(address,bool) should be declared external:
- AETH.setExcludeFromAntiwhale(address,bool) (#819-821)
transfer(address,uint256) should be declared external:
- AETH.transfer(address,uint256) (#823-826)
allowance(address,address) should be declared external:
- AETH.allowance(address,address) (#828-830)
approve(address,uint256) should be declared external:
- AETH.approve(address,uint256) (#832-835)
transferFrom(address,address,uint256) should be declared external:
- AETH.transferFrom(address,address,uint256) (#837-841)
increaseAllowance(address,uint256) should be declared external:
- AETH.increaseAllowance(address,uint256) (#843-846)
decreaseAllowance(address,uint256) should be declared external:
- AETH.decreaseAllowance(address,uint256) (#852-855)
isExcludedFromReward(address) should be declared external:
- AETH.isExcludedFromReward(address) (#857-859)
totalFees() should be declared external:
- AETH.totalFees() (#863-865)
deliver(uint256) should be declared external:
- AETH.deliver(uint256) (#867-874)
reflectionFromToken(uint256,bool) should be declared external:
- AETH.reflectionFromToken(uint256,bool) (#876-885)
excludeFromReward(address) should be declared external:
- AETH.excludeFromReward(address) (#893-900)
isExcludedFromFee(address) should be declared external:
- AETH.isExcludedFromFee(address) (#1012-1014)
excludeFromFee(address) should be declared external:
- AETH.excludeFromFee(address) (#1209-1211)
includeInFee(address) should be declared external:
- AETH.includeInFee(address) (#1213-1215)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AETH.setSwapAndLiquifyEnabled(bool) (#1245-1248)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain

Contract has 9% buy tax and 8% sell tax.
Taxes are low and contract ownership is renounced.


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


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


Token has relatively low CoinGecko rank

Price for AETH

News for AETH