AAptitude Token Logo

AAPT [AAptitude] Token

About AAPT

Listings

Token 4 years
CoinGecko 3 years
CoinMarketCap 4 years
[CoinGecko] alert: BankRoll (BANKR) has rebranded to AAptitude (AAPT), and has migrated from their old contract to a new one. For more information, please view this announcement on Telegram.
white paper

AAptitude is a Hyper-Deflationary Reflection token. AAPT will be revolutionising the way Cryptocurrency is used in e-commerce, with a sophisticated Escrow system being built into an online marketplace. In addition, partnered with a Steam Powered first person shooter for additional Buy Back and Burns, inclusive of community engagement and HYPE!

Laser Scorebeta Last Audit: 23 June 2022

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

TokenRecover.recoverERC20(address,uint256) (#1428-1430) ignores return value by IERC20(tokenAddress).transfer(owner(),tokenAmount) (#1429)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in ERC20._transfer(address,address,uint256) (#605-645):
External calls:
- swapTokens(contractTokenBalance) (#623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
External calls sending eth:
- swapTokens(contractTokenBalance) (#623)
- recipient.transfer(amount) (#947)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _liquidityFee = _previousLiquidityFee (#857)
- _liquidityFee = 0 (#852)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#828)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#744)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#745)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#755)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _rTotal = _rTotal.sub(rFee) (#783)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#830)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#763)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#773)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#754)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#775)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- inSwapAndLiquify = true (#451)
- inSwapAndLiquify = false (#453)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


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


Contract ownership is not renounced (belongs to a wallet)

solc-0.8.11 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

ERC20.addLiquidity(uint256,uint256) (#709-722) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#714-721)
Ensure that all the return values of the function calls are used.

Additional information: link

Redundant expression "this (#17)" inContext (#11-20)
Remove redundant statements if they congest code but offer no value.

Additional information: link

ERC20.setTaxFeePercent(uint256) (#896-898) should emit an event for:
- _taxFee = taxFee (#897)
ERC20.setLiquidityFeePercent(uint256) (#900-902) should emit an event for:
- _liquidityFee = liquidityFee (#901)
Emit an event for critical parameter changes.

Additional information: link

ERC20._transfer(address,address,uint256) (#605-645) performs a multiplication on the result of a division:
-buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
ERC20.swapTokens(uint256) (#647-664) performs a multiplication on the result of a division:
-devPlusMarketing = transferredBalance.div(_liquidityFee).mul(devAndMarketingDivisor) (#653)
Consider ordering multiplication before division.

Additional information: link

ERC20.allowance(address,address).owner (#502) shadows:
- Ownable.owner() (#156-158) (function)
ERC20._approve(address,address,uint256).owner (#597) shadows:
- Ownable.owner() (#156-158) (function)
ERC1363.constructor(string,string).name (#1304) shadows:
- ERC20.name() (#476-478) (function)
ERC1363.constructor(string,string).symbol (#1304) shadows:
- ERC20.symbol() (#480-482) (function)
Rename the local variables that shadow another component.

Additional information: link

ERC20._rTotal (#397) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ERC20._previousTaxFee (#406) is set pre-construction with a non-constant function or state variable:
- _taxFee
ERC20._previousLiquidityFee (#409) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

ERC20._decimals (#402) should be constant
ERC20._tTotal (#396) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in ERC20._transfer(address,address,uint256) (#605-645):
External calls:
- swapTokens(contractTokenBalance) (#623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
External calls sending eth:
- swapTokens(contractTokenBalance) (#623)
- recipient.transfer(amount) (#947)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _previousLiquidityFee = _liquidityFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _previousTaxFee = _taxFee (#848)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _tFeeTotal = _tFeeTotal.add(tFee) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _taxFee = _previousTaxFee (#856)
- _taxFee = 0 (#851)
Reentrancy in ERC20.constructor(string,string) (#456-474):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#463-464)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#468)
- _isExcludedFromFee[address(this)] = true (#469)
- _isExcludedFromFee[marketingAddress] = true (#470)
- _isExcludedFromFee[devAddress] = true (#471)
- uniswapV2Router = _uniswapV2Router (#466)
Reentrancy in ERC1363.constructor(string,string) (#1304-1308):
External calls:
- ERC20(name,symbol) (#1304)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#463-464)
State variables written after the call(s):
- _registerInterface(_INTERFACE_ID_ERC1363_TRANSFER) (#1306)
- _supportedInterfaces[interfaceId] = true (#1264)
- _registerInterface(_INTERFACE_ID_ERC1363_APPROVE) (#1307)
- _supportedInterfaces[interfaceId] = true (#1264)
Reentrancy in ERC20.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#947)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
- _allowances[owner][spender] = amount (#601)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ERC20._transfer(address,address,uint256) (#605-645):
External calls:
- swapTokens(contractTokenBalance) (#623)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
External calls sending eth:
- swapTokens(contractTokenBalance) (#623)
- recipient.transfer(amount) (#947)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#706)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#644)
Reentrancy in ERC20.constructor(string,string) (#456-474):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#463-464)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#473)
Reentrancy in ERC20.swapETHForTokens(uint256) (#692-707):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#706)
Reentrancy in ERC20.swapTokens(uint256) (#647-664):
External calls:
- swapTokensForEth(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
External calls sending eth:
- transferToAddressETH(marketingAddress,half) (#658)
- recipient.transfer(amount) (#947)
- transferToAddressETH(devAddress,otherHalf) (#661)
- recipient.transfer(amount) (#947)
Event emitted after the call(s):
- SwapToDevAndMarketing(transferredBalance,half.add(otherHalf)) (#663)
Reentrancy in ERC20.swapTokensForEth(uint256) (#672-690):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#689)
Reentrancy in ERC20.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#681-687)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#947)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#602)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#125-142) is never used and should be removed
Address.functionCall(address,bytes) (#108-110) is never used and should be removed
Address.functionCall(address,bytes,string) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#120-123) is never used and should be removed
Address.sendValue(address,uint256) (#100-106) is never used and should be removed
Context._msgData() (#16-19) is never used and should be removed
ERC165Checker._callERC165SupportsInterface(address,bytes4) (#1207-1216) is never used and should be removed
ERC165Checker._supportsERC165Interface(address,bytes4) (#1191-1197) is never used and should be removed
ERC165Checker.supportsAllInterfaces(address,bytes4[]) (#1163-1178) is never used and should be removed
ERC165Checker.supportsERC165(address) (#1135-1140) is never used and should be removed
ERC165Checker.supportsInterface(address,bytes4) (#1148-1152) is never used and should be removed
ERC20.addLiquidity(uint256,uint256) (#709-722) is never used and should be removed
SafeMath.mod(uint256,uint256) (#77-79) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#81-84) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#100-106):
- (success) = recipient.call{value: amount}() (#104)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#125-142):
- (success,returndata) = target.call{value: weiValue}(data) (#128)
Low level call in ERC165Checker._callERC165SupportsInterface(address,bytes4) (#1207-1216):
- (success,result) = account.staticcall{gas: 30000}(encodedParams) (#1213)
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() (#208) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#209) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#225) is not in mixedCase
Function IUniswapV2Router01.WETH() (#244) is not in mixedCase
Parameter ERC20.calculateTaxFee(uint256)._amount (#833) is not in mixedCase
Parameter ERC20.calculateLiquidityFee(uint256)._amount (#839) is not in mixedCase
Parameter ERC20.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#912) is not in mixedCase
Parameter ERC20.setMarketingAddress(address)._marketingAddress (#920) is not in mixedCase
Parameter ERC20.setDevAddress(address)._devAddress (#924) is not in mixedCase
Parameter ERC20.setMinimumBeforeBuyBack(uint256)._minimumBeforeBuyBack (#928) is not in mixedCase
Parameter ERC20.setPercentToBuyBack(uint256)._percentToBuyBack (#932) is not in mixedCase
Parameter ERC20.setSwapAndLiquifyEnabled(bool)._enabled (#936) is not in mixedCase
Parameter ERC20.setBuyBackEnabled(bool)._enabled (#941) is not in mixedCase
Variable ERC20._taxFee (#405) is not in mixedCase
Variable ERC20._liquidityFee (#408) is not in mixedCase
Variable ERC20._maxTxAmount (#413) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in ERC20._transfer(address,address,uint256) (#605-645):
External calls:
- swapTokens(contractTokenBalance) (#623)
- recipient.transfer(amount) (#947)
External calls sending eth:
- swapTokens(contractTokenBalance) (#623)
- recipient.transfer(amount) (#947)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _liquidityFee = _previousLiquidityFee (#857)
- _liquidityFee = 0 (#852)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _previousLiquidityFee = _liquidityFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _previousTaxFee = _taxFee (#848)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#828)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#744)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#745)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#755)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _rTotal = _rTotal.sub(rFee) (#783)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _tFeeTotal = _tFeeTotal.add(tFee) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#830)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#763)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#773)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#754)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- _taxFee = _previousTaxFee (#856)
- _taxFee = 0 (#851)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- inSwapAndLiquify = true (#451)
- inSwapAndLiquify = false (#453)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#706)
- buyBackTokens(balance.div(100).mul(percentToBuyBack)) (#631)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#644)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#644)
Reentrancy in ERC20.swapTokens(uint256) (#647-664):
External calls:
- transferToAddressETH(marketingAddress,half) (#658)
- recipient.transfer(amount) (#947)
- transferToAddressETH(devAddress,otherHalf) (#661)
- recipient.transfer(amount) (#947)
Event emitted after the call(s):
- SwapToDevAndMarketing(transferredBalance,half.add(otherHalf)) (#663)
Reentrancy in ERC20.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#947)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#947)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#699-704)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
- _allowances[owner][spender] = amount (#601)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#602)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
Apply the check-effects-interactions pattern.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#165-168)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#170-174)
name() should be declared external:
- ERC20.name() (#476-478)
symbol() should be declared external:
- ERC20.symbol() (#480-482)
decimals() should be declared external:
- ERC20.decimals() (#484-486)
totalSupply() should be declared external:
- ERC20.totalSupply() (#488-490)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#502-504)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#517-520)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#522-525)
isExcludedFromReward(address) should be declared external:
- ERC20.isExcludedFromReward(address) (#527-529)
totalFees() should be declared external:
- ERC20.totalFees() (#531-533)
minimumTokensBeforeSwapAmount() should be declared external:
- ERC20.minimumTokensBeforeSwapAmount() (#535-537)
buyBackUpperLimitAmount() should be declared external:
- ERC20.buyBackUpperLimitAmount() (#539-541)
minimumBeforeBuyBackAmount() should be declared external:
- ERC20.minimumBeforeBuyBackAmount() (#543-545)
deliver(uint256) should be declared external:
- ERC20.deliver(uint256) (#547-554)
reflectionFromToken(uint256,bool) should be declared external:
- ERC20.reflectionFromToken(uint256,bool) (#557-566)
excludeFromReward(address) should be declared external:
- ERC20.excludeFromReward(address) (#574-582)
isExcludedFromFee(address) should be declared external:
- ERC20.isExcludedFromFee(address) (#860-862)
excludeFromFee(address) should be declared external:
- ERC20.excludeFromFee(address) (#864-866)
includeInFee(address) should be declared external:
- ERC20.includeInFee(address) (#868-870)
isOriginExcludedFromFee(address) should be declared external:
- ERC20.isOriginExcludedFromFee(address) (#872-874)
excludeOriginFromFee(address) should be declared external:
- ERC20.excludeOriginFromFee(address) (#876-878)
includeOriginInFee(address) should be declared external:
- ERC20.includeOriginInFee(address) (#880-882)
isDestinationExcludedFromFee(address) should be declared external:
- ERC20.isDestinationExcludedFromFee(address) (#884-886)
excludeDestinationFromFee(address) should be declared external:
- ERC20.excludeDestinationFromFee(address) (#888-890)
includeDestinationInFee(address) should be declared external:
- ERC20.includeDestinationInFee(address) (#892-894)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ERC20.setSwapAndLiquifyEnabled(bool) (#936-939)
setBuyBackEnabled(bool) should be declared external:
- ERC20.setBuyBackEnabled(bool) (#941-944)
supportsInterface(bytes4) should be declared external:
- ERC165.supportsInterface(bytes4) (#1247-1249)
transferAndCall(address,uint256) should be declared external:
- ERC1363.transferAndCall(address,uint256) (#1316-1318)
transferFromAndCall(address,address,uint256) should be declared external:
- ERC1363.transferFromAndCall(address,address,uint256) (#1340-1342)
approveAndCall(address,uint256) should be declared external:
- ERC1363.approveAndCall(address,uint256) (#1364-1366)
recoverERC20(address,uint256) should be declared external:
- TokenRecover.recoverERC20(address,uint256) (#1428-1430)
Use the external attribute for functions never called from the contract.

Additional information: link

ERC20.setMarketingAddress(address)._marketingAddress (#920) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#921)
ERC20.setDevAddress(address)._devAddress (#924) lacks a zero-check on :
- devAddress = address(_devAddress) (#925)
Check that the address is not zero.

Additional information: link

Address.isContract(address) (#89-98) uses assembly
- INLINE ASM (#96)
Address._functionCallWithValue(address,bytes,uint256,string) (#125-142) uses assembly
- INLINE ASM (#134-137)
Do not use evm assembly.

Additional information: link

ERC20.includeInReward(address) (#584-595) has costly operations inside a loop:
- _excluded.pop() (#591)
Use a local variable to hold the loop computation result.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#249) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#250)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#772) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#804) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Variable ERC20._getValues(uint256).rTransferAmount (#789) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20._getValues(uint256).rTransferAmount (#789) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20._getValues(uint256).rTransferAmount (#789) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#752) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#772) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#804) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#804) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#804) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#772) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#752) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._getValues(uint256).rTransferAmount (#789) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#772) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#804) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Variable ERC20._getValues(uint256).rTransferAmount (#789) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#752) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#752) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#752) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#804) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._getValues(uint256).rTransferAmount (#789) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#772) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20._transferBothExcluded(address,address,uint256).rTransferAmount (#772) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#743) is too similar to ERC20._getValues(uint256).tTransferAmount (#788)
Variable ERC20._transferToExcluded(address,address,uint256).rTransferAmount (#752) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#743) is too similar to ERC20._getTValues(uint256).tTransferAmount (#796)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#743) is too similar to ERC20._transferFromExcluded(address,address,uint256).tTransferAmount (#762)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#743) is too similar to ERC20._transferToExcluded(address,address,uint256).tTransferAmount (#752)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#743) is too similar to ERC20._transferBothExcluded(address,address,uint256).tTransferAmount (#772)
Variable ERC20._transferStandard(address,address,uint256).rTransferAmount (#743) is too similar to ERC20._transferStandard(address,address,uint256).tTransferAmount (#743)
Prevent variables from having similar names.

Additional information: link

AAptitude.slitherConstructorVariables() (#1433-1439) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#383)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:

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


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token is deployed only at one blockchain

No disclosed threats


Unable to find KYC or doxxing proof


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


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

Price for AAPT

News for AAPT