Adaswap Token Logo

ASW [Adaswap] Token

ALERT: honeypot scam

About ASW

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 25 November 2022

report
Token seems to be a scam (type: honeypot scam).

ADASWAP.addLiquidity(uint256,uint256) (#654-667) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

ADASWAP.withdrawToken(address,uint256) (#563-565) ignores return value by IBEP20(tokenAddress).transfer(owner(),amount) (#564)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in ADASWAP._transfer(address,address,uint256) (#568-610):
External calls:
- swapAndLiquify(contractTokenBalance) (#602)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#602)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _rOwned[to] = _rOwned[to].add(rAmount) (#815)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#722)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#750)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#736)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#752)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _rTotal = _rTotal.sub(rFee) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _tOwned[to] = _tOwned[to].add(tAmount) (#817)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#764)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#735)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#751)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#737)
Apply the check-effects-interactions pattern.

Additional information: link


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.


Combination 2: Unchecked transfer + 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.


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.


Contract ownership is not renounced (belongs to a wallet)

ADASWAP.reflectionFromToken(uint256,bool).tFee_scope_0 (#473) is a local variable never initialized
ADASWAP.reflectionFromToken(uint256,bool).tLiquidity_scope_1 (#473) is a local variable never initialized
ADASWAP.reflectionFromToken(uint256,bool).tMarketing_scope_2 (#473) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

ADASWAP.addLiquidity(uint256,uint256) (#654-667) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
Ensure that all the return values of the function calls are used.

Additional information: link

ADASWAP._approve(address,address,uint256).owner (#440) shadows:
- Ownable.owner() (#100-102) (function)
ADASWAP.allowance(address,address).owner (#433) shadows:
- Ownable.owner() (#100-102) (function)
Rename the local variables that shadow another component.

Additional information: link

ADASWAP.setCashbackPercent(uint256) (#534-536) should emit an event for:
- _sellPercentageOfLiquidityForCashback = cashbackPercent (#535)
ADASWAP.setMaxTxPercent(uint256) (#537-539) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#538)
ADASWAP.setTransferFee(uint256,uint256,uint256) (#519-523) should emit an event for:
- _taxFeeTransfer = taxFee (#520)
- _liquidityFeeTransfer = liquidityFee (#521)
- _marketingFeeTransfer = marketingFee (#522)
ADASWAP.setBuyFee(uint256,uint256,uint256) (#524-528) should emit an event for:
- _taxFeeBuy = taxFee (#525)
- _liquidityFeeBuy = liquidityFee (#526)
- _marketingFeeBuy = marketingFee (#527)
ADASWAP.setSellFee(uint256,uint256,uint256) (#529-533) should emit an event for:
- _taxFeeSell = taxFee (#530)
- _liquidityFeeSell = liquidityFee (#531)
- _marketingFeeSell = marketingFee (#532)
ADASWAP.setMinTokenBalance(uint256) (#540-542) should emit an event for:
- _minTokenBalance = minTokenBalance (#541)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor(address).initialOwner (#95) lacks a zero-check on :
- _owner = initialOwner (#96)
ADASWAP.setUniswapPair(address).p (#557) lacks a zero-check on :
- _uniswapV2Pair = p (#558)
ADASWAP.setMarketingWallet(address).marketingWallet (#513) lacks a zero-check on :
- _marketingWallet = marketingWallet (#514)
ADASWAP.constructor(address,address).marketingWallet (#401) lacks a zero-check on :
- _marketingWallet = marketingWallet (#402)
Check that the address is not zero.

Additional information: link

Variable 'ADASWAP.reflectionFromToken(uint256,bool).tMarketing (#466)' in ADASWAP.reflectionFromToken(uint256,bool) (#462-479) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#473)
Variable 'ADASWAP.reflectionFromToken(uint256,bool).tFee (#466)' in ADASWAP.reflectionFromToken(uint256,bool) (#462-479) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#473)
Variable 'ADASWAP.reflectionFromToken(uint256,bool).tLiquidity (#466)' in ADASWAP.reflectionFromToken(uint256,bool) (#462-479) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#473)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in ADASWAP._transfer(address,address,uint256) (#568-610):
External calls:
- swapAndLiquify(contractTokenBalance) (#602)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#602)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _liquidityFeeTransfer = 0 (#679)
- _liquidityFeeTransfer = _liquidityFeeBuy (#684)
- _liquidityFeeTransfer = _liquidityFeeSell (#689)
- _liquidityFeeTransfer = previousLiquidityFee (#713)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _marketingFeeTransfer = 0 (#680)
- _marketingFeeTransfer = _marketingFeeBuy (#685)
- _marketingFeeTransfer = _marketingFeeSell (#690)
- _marketingFeeTransfer = previousMarketingFee (#714)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _tFeeTotal = _tFeeTotal.add(tFee) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- _taxFeeTransfer = 0 (#678)
- _taxFeeTransfer = _taxFeeBuy (#683)
- _taxFeeTransfer = _taxFeeSell (#688)
- _taxFeeTransfer = previousTaxFee (#712)
Reentrancy in ADASWAP.transferFrom(address,address,uint256) (#447-451):
External calls:
- _transfer(sender,recipient,amount) (#448)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
External calls sending eth:
- _transfer(sender,recipient,amount) (#448)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#449)
- _allowances[owner][spender] = amount (#444)
Reentrancy in ADASWAP.swapAndLiquify(uint256) (#611-636):
External calls:
- swapTokensForBnb(half) (#625)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
- addLiquidity(otherHalf,bnbForLiquidity) (#633)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#633)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#633)
- _allowances[owner][spender] = amount (#444)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ADASWAP.transferFrom(address,address,uint256) (#447-451):
External calls:
- _transfer(sender,recipient,amount) (#448)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
External calls sending eth:
- _transfer(sender,recipient,amount) (#448)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#445)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#449)
Reentrancy in ADASWAP.swapAndLiquify(uint256) (#611-636):
External calls:
- swapTokensForBnb(half) (#625)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
- addLiquidity(otherHalf,bnbForLiquidity) (#633)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#633)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#445)
- addLiquidity(otherHalf,bnbForLiquidity) (#633)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#635)
Reentrancy in ADASWAP._transfer(address,address,uint256) (#568-610):
External calls:
- swapAndLiquify(contractTokenBalance) (#602)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#646-652)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#602)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#659-666)
Event emitted after the call(s):
- Transfer(from,to,tAmount) (#820)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- Transfer(sender,recipient,tTransferAmount) (#728)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#609)
- Transfer(sender,recipient,tTransferAmount) (#743)
- _tokenTransfer(from,to,amount,takeFee) (#609)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#131-136) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#133)
Avoid relying on block.timestamp.

Additional information: link

ADASWAP.includeInReward(address) (#495-507) has costly operations inside a loop:
- _excluded.pop() (#503)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Context._msgData() (#18-21) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
Remove unused functions.

Additional information: link

ADASWAP._minTokenBalance (#380) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2000
ADASWAP._maxTxAmount (#379) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2
ADASWAP._rTotal (#355) 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

Variable ADASWAP._marketingFeeBuy (#370) is not in mixedCase
Variable ADASWAP._liquidityFeeBuy (#369) is not in mixedCase
Variable ADASWAP._taxFeeTransfer (#363) is not in mixedCase
Variable ADASWAP._marketingFeeSell (#375) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#171) is not in mixedCase
Variable ADASWAP._uniswapV2Pair (#386) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#188) is not in mixedCase
Variable ADASWAP._swapAndLiquifyEnabled (#383) is not in mixedCase
Variable ADASWAP._sellPercentageOfLiquidityForCashback (#377) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#170) is not in mixedCase
Variable ADASWAP._marketingFeeTransfer (#365) is not in mixedCase
Variable ADASWAP._marketingWallet (#351) is not in mixedCase
Variable ADASWAP._uniswapV2Router (#385) is not in mixedCase
Variable ADASWAP._taxFeeBuy (#368) is not in mixedCase
Variable ADASWAP._taxFeeSell (#373) is not in mixedCase
Variable ADASWAP._maxTxAmount (#379) is not in mixedCase
Variable ADASWAP._liquidityFeeSell (#374) is not in mixedCase
Variable ADASWAP._minTokenBalance (#380) is not in mixedCase
Function IUniswapV2Router01.WETH() (#208) is not in mixedCase
Variable ADASWAP._liquidityFeeTransfer (#364) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable ADASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ADASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#731)
Variable ADASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#475) is too similar to ADASWAP._transferStandard(address,address,uint256).tTransferAmount (#718)
Variable ADASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ADASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ADASWAP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#791) is too similar to ADASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ADASWAP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#791) is too similar to ADASWAP._getTValues(uint256).tTransferAmount (#781)
Variable ADASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ADASWAP._transferStandard(address,address,uint256).tTransferAmount (#718)
Variable ADASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#748) is too similar to ADASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#760)
Variable ADASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#733) is too similar to ADASWAP._getTValues(uint256).tTransferAmount (#781)
Variable ADASWAP._transferStandard(address,address,uint256).rTransferAmount (#720) is too similar to ADASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#731)
Variable ADASWAP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#791) is too similar to ADASWAP._transferStandard(address,address,uint256).tTransferAmount (#718)
Variable ADASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#733) is too similar to ADASWAP._transferStandard(address,address,uint256).tTransferAmount (#718)
Variable ADASWAP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#791) is too similar to ADASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#731)
Variable ADASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#748) is too similar to ADASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ADASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ADASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#760)
Variable ADASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#475) is too similar to ADASWAP._getTValues(uint256).tTransferAmount (#781)
Variable ADASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#475) is too similar to ADASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#760)
Variable ADASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#733) is too similar to ADASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#731)
Variable ADASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#748) is too similar to ADASWAP._transferStandard(address,address,uint256).tTransferAmount (#718)
Variable ADASWAP._transferStandard(address,address,uint256).rTransferAmount (#720) is too similar to ADASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ADASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#762) is too similar to ADASWAP._getTValues(uint256).tTransferAmount (#781)
Variable ADASWAP._transferStandard(address,address,uint256).rTransferAmount (#720) is too similar to ADASWAP._transferStandard(address,address,uint256).tTransferAmount (#718)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#213) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#214)
Variable ADASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#475) is too similar to ADASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ADASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#733) is too similar to ADASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ADASWAP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#791) is too similar to ADASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#760)
Variable ADASWAP._transferStandard(address,address,uint256).rTransferAmount (#720) is too similar to ADASWAP._getTValues(uint256).tTransferAmount (#781)
Variable ADASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#748) is too similar to ADASWAP._getTValues(uint256).tTransferAmount (#781)
Variable ADASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#733) is too similar to ADASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#760)
Variable ADASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#748) is too similar to ADASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#731)
Variable ADASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#475) is too similar to ADASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#731)
Variable ADASWAP._transferStandard(address,address,uint256).rTransferAmount (#720) is too similar to ADASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#760)
Prevent variables from having similar names.

Additional information: link

ADASWAP.slitherConstructorVariables() (#341-824) uses literals with too many digits:
- _tTotal = 20000000000 * 10 ** 18 (#354)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ADASWAP._tTotal (#354) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setSwapAndLiquifyEnabled(bool) should be declared external:
- ADASWAP.setSwapAndLiquifyEnabled(bool) (#543-546)
totalFees() should be declared external:
- ADASWAP.totalFees() (#508-510)
increaseAllowance(address,uint256) should be declared external:
- ADASWAP.increaseAllowance(address,uint256) (#452-455)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#109-112)
transfer(address,uint256) should be declared external:
- ADASWAP.transfer(address,uint256) (#429-432)
decreaseAllowance(address,uint256) should be declared external:
- ADASWAP.decreaseAllowance(address,uint256) (#456-459)
allowance(address,address) should be declared external:
- ADASWAP.allowance(address,address) (#433-435)
excludeFromReward(address) should be declared external:
- ADASWAP.excludeFromReward(address) (#486-494)
isExcludedFromReward(address) should be declared external:
- ADASWAP.isExcludedFromReward(address) (#550-552)
reflectionFromToken(uint256,bool) should be declared external:
- ADASWAP.reflectionFromToken(uint256,bool) (#462-479)
totalSupply() should be declared external:
- ADASWAP.totalSupply() (#422-424)
approve(address,uint256) should be declared external:
- ADASWAP.approve(address,uint256) (#436-439)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#114-118)
isExcludedFromFee(address) should be declared external:
- ADASWAP.isExcludedFromFee(address) (#547-549)
transferFrom(address,address,uint256) should be declared external:
- ADASWAP.transferFrom(address,address,uint256) (#447-451)
unlock() should be declared external:
- Ownable.unlock() (#131-136)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#124-129)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#120-122)
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 PancakeSwap volume is less than $100. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


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.


Token has no transactions for more than 100 days. It seems dead / abandoned.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for ASW