Aureus Token Token Logo

AUREUSRH [Aureus] Token

About AUREUSRH

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

The newest play to earn MMORPG. Enjoy an open world rpg while earning aureus token.

Social

Laser Scorebeta Last Audit: 14 October 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

AureusToken.swapAndLiquify(uint256) (#1033-1075) sends eth to arbitrary user
Dangerous calls:
- _houseWallet.transfer(houseBNBToDonate) (#1074)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AureusToken._transfer(address,address,uint256) (#993-1029):
External calls:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#932)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1133)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1142)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1134)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _rTotal = _rTotal.sub(rFee) (#887)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#934)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1152)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1143)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)


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.

Address.sendValue(address,uint256) (#296-302) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#347-349) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#230-233) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#357-360) is never used and should be removed
Context._msgData() (#241-244) is never used and should be removed
SafeMath.mod(uint256,uint256) (#214-216) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#362-383) is never used and should be removed
Address.isContract(address) (#269-278) is never used and should be removed
Address.functionCall(address,bytes,string) (#332-334) is never used and should be removed
Address.functionCall(address,bytes) (#322-324) is never used and should be removed
Remove unused functions.

Additional information: link

AureusToken._previousTaxFee (#706) is set pre-construction with a non-constant function or state variable:
- _taxFee
AureusToken._previousLiquidityFee (#709) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
AureusToken._rTotal (#698) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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) (#296-302):
- (success) = recipient.call{value: amount}() (#300)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#362-383):
- (success,returndata) = target.call{value: weiValue}(data) (#366)
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.PERMIT_TYPEHASH() (#507) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#524) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#506) is not in mixedCase
Parameter AureusToken.setSwapAndLiquifyEnabled(bool)._enabled (#878) is not in mixedCase
Parameter AureusToken.calculateTaxFee(uint256)._amount (#937) is not in mixedCase
Variable AureusToken._taxFee (#705) is not in mixedCase
Function IUniswapV2Router01.WETH() (#545) is not in mixedCase
Parameter AureusToken.calculateLiquidityFee(uint256)._amount (#943) is not in mixedCase
Variable AureusToken._liquidityFee (#708) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in AureusToken._transfer(address,address,uint256) (#993-1029):
External calls:
- swapAndLiquify(contractTokenBalance) (#1016)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _liquidityFee = _previousLiquidityFee (#978)
- _liquidityFee = 0 (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _previousLiquidityFee = _liquidityFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _previousTaxFee = _taxFee (#965)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#932)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1133)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1142)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1153)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1134)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1144)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1154)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _rTotal = _rTotal.sub(rFee) (#887)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _tFeeTotal = _tFeeTotal.add(tFee) (#888)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#934)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1152)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1143)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _taxFee = _previousTaxFee (#977)
- _taxFee = 0 (#968)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1137)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
Reentrancy in AureusToken.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#989)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#990)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Apply the check-effects-interactions pattern.

Additional information: link

Variable AureusToken.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable AureusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Variable AureusToken._transferToExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken._transferToExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable AureusToken._transferStandard(address,address,uint256).rTransferAmount (#1132) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken._transferStandard(address,address,uint256).rTransferAmount (#1132) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken._transferStandard(address,address,uint256).rTransferAmount (#1132) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken._getValues(uint256).rTransferAmount (#893) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable AureusToken._getValues(uint256).rTransferAmount (#893) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Variable AureusToken._transferToExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#908) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Variable AureusToken._transferToExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Variable AureusToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#908) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken._transferStandard(address,address,uint256).rTransferAmount (#1132) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable AureusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable AureusToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#908) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._transferStandard(address,address,uint256).rTransferAmount (#1132) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Variable AureusToken._transferStandard(address,address,uint256).rTransferAmount (#1132) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._getValues(uint256).rTransferAmount (#893) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._transferToExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._getValues(uint256).rTransferAmount (#893) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken._getValues(uint256).rTransferAmount (#893) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#550) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#551)
Variable AureusToken._getValues(uint256).rTransferAmount (#893) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Variable AureusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#908) is too similar to AureusToken._getTValues(uint256).tTransferAmount (#900)
Variable AureusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#908) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._transferToExcluded(address,address,uint256).rTransferAmount (#1141) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to AureusToken._transferToExcluded(address,address,uint256).tTransferAmount (#1141)
Variable AureusToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#908) is too similar to AureusToken._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable AureusToken.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to AureusToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1151)
Variable AureusToken.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to AureusToken._getValues(uint256).tTransferAmount (#892)
Variable AureusToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1151) is too similar to AureusToken._transferStandard(address,address,uint256).tTransferAmount (#1132)
Prevent variables from having similar names.

Additional information: link

AureusToken._decimals (#703) should be constant
AureusToken._tTotal (#697) should be constant
AureusToken._name (#701) should be constant
AureusToken._symbol (#702) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

excludeFromReward(address) should be declared external:
- AureusToken.excludeFromReward(address) (#837-845)
isExcludedFromReward(address) should be declared external:
- AureusToken.isExcludedFromReward(address) (#803-805)
name() should be declared external:
- AureusToken.name() (#752-754)
includeInFee(address) should be declared external:
- AureusToken.includeInFee(address) (#874-876)
transferFrom(address,address,uint256) should be declared external:
- AureusToken.transferFrom(address,address,uint256) (#787-791)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#436-439)
approve(address,uint256) should be declared external:
- AureusToken.approve(address,uint256) (#782-785)
increaseAllowance(address,uint256) should be declared external:
- AureusToken.increaseAllowance(address,uint256) (#793-796)
deliver(uint256) should be declared external:
- AureusToken.deliver(uint256) (#811-818)
decreaseAllowance(address,uint256) should be declared external:
- AureusToken.decreaseAllowance(address,uint256) (#798-801)
totalFees() should be declared external:
- AureusToken.totalFees() (#807-809)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AureusToken.setSwapAndLiquifyEnabled(bool) (#878-881)
decimals() should be declared external:
- AureusToken.decimals() (#760-762)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#445-449)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#451-453)
transfer(address,uint256) should be declared external:
- AureusToken.transfer(address,uint256) (#773-776)
isExcludedFromFee(address) should be declared external:
- AureusToken.isExcludedFromFee(address) (#981-983)
reflectionFromToken(uint256,bool) should be declared external:
- AureusToken.reflectionFromToken(uint256,bool) (#820-829)
unlock() should be declared external:
- Ownable.unlock() (#464-469)
totalSupply() should be declared external:
- AureusToken.totalSupply() (#764-766)
excludeFromFee(address) should be declared external:
- AureusToken.excludeFromFee(address) (#870-872)
allowance(address,address) should be declared external:
- AureusToken.allowance(address,address) (#778-780)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#456-461)
symbol() should be declared external:
- AureusToken.symbol() (#756-758)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in AureusToken.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#989)
Reentrancy in AureusToken.swapAndLiquify(uint256) (#1033-1075):
External calls:
- swapTokensForEth(tokensToSwapToBNB) (#1057)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
External calls sending eth:
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
State variables written after the call(s):
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1066)
- _allowances[owner][spender] = amount (#989)
Reentrancy in AureusToken._transfer(address,address,uint256) (#993-1029):
External calls:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _liquidityFee = _previousLiquidityFee (#978)
- _liquidityFee = 0 (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _previousLiquidityFee = _liquidityFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _previousTaxFee = _taxFee (#965)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _tFeeTotal = _tFeeTotal.add(tFee) (#888)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _taxFee = _previousTaxFee (#977)
- _taxFee = 0 (#968)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AureusToken.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#990)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Reentrancy in AureusToken._transfer(address,address,uint256) (#993-1029):
External calls:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1016)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
- _houseWallet.transfer(houseBNBToDonate) (#1074)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1137)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#1157)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
Reentrancy in AureusToken.swapAndLiquify(uint256) (#1033-1075):
External calls:
- swapTokensForEth(tokensToSwapToBNB) (#1057)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1086-1092)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
External calls sending eth:
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#990)
- addLiquidity(tokenBalanceToLiquify,bnbToLiquify) (#1066)
- SwapAndLiquify(tokenBalanceToLiquifyAsBNB,bnbToLiquify,tokenBalanceToLiquify) (#1068)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#269-278) uses assembly
- INLINE ASM (#276)
Address._functionCallWithValue(address,bytes,uint256,string) (#362-383) uses assembly
- INLINE ASM (#375-378)
Do not use evm assembly.

Additional information: link

AureusToken.includeInReward(address) (#847-858) has costly operations inside a loop:
- _excluded.pop() (#854)
Use a local variable to hold the loop computation result.

Additional information: link

Redundant expression "this (#242)" inContext (#236-245)
Remove redundant statements if they congest code but offer no value.

Additional information: link

AureusToken.addLiquidity(uint256,uint256) (#1095-1108) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1100-1107)
Ensure that all the return values of the function calls are used.

Additional information: link

AureusToken.allowance(address,address).owner (#778) shadows:
- Ownable.owner() (#417-419) (function)
AureusToken._approve(address,address,uint256).owner (#985) shadows:
- Ownable.owner() (#417-419) (function)
Rename the local variables that shadow another component.

Additional information: link

AureusToken.updateNumTokensBeforeLiquify(uint256) (#953-956) should emit an event for:
- numTokensSellToAddToLiquidity = newAmount * 10 ** 9 (#955)
Emit an event for critical parameter changes.

Additional information: link

AureusToken.updateHouseWallet(address).newWallet (#949) lacks a zero-check on :
- _houseWallet = newWallet (#950)
Check that the address is not zero.

Additional information: link

Holders:


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


Average 30d PancakeSwap volume 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.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 12% buy tax and 11% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Last post in Twitter was more than 30 days ago


Telegram account has relatively few subscribers


Unable to find Discord account


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for AUREUSRH

News for AUREUSRH