DONASWAP Token Logo

DONA [DONASWAP] Token

About DONA

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 9 months
white paper

The DONASWAP token is part of the fire-themed ecosystem and generates frictionless yield by applying a 10% fee for each transaction. 5% of each transaction is automagically distributed to holders, and another 5% is automagically provided to the liquidity pool.

Laser Scorebeta Last Audit: 9 January 2024

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

DONASWAP.withdrawToken(address,uint256) (#1153-1156) ignores return value by tokenContract.transfer(msg.sender,_amount) (#1155)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

DONASWAP.addLiquidity(uint256,uint256) (#1081-1094) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DONASWAP._transfer(address,address,uint256) (#994-1038):
External calls:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#950)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1117)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1126)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1118)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1128)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1138)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _rTotal = _rTotal.sub(rFee) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#952)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1136)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1127)
- _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.


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.

DONASWAP.includeInReward(address) (#844-857) has costly operations inside a loop:
- _excluded.pop() (#853)
Use a local variable to hold the loop computation result.

Additional information: link

DONASWAP.setMaxTxPercent(uint256) (#886-890) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#887-889)
DONASWAP.setNumTokensSellToAddToLiquidity(uint256) (#892-894) should emit an event for:
- numTokensSellToAddToLiquidity = _minimumTokensBeforeSwap (#893)
DONASWAP.setTaxFeePercent(uint256) (#878-880) should emit an event for:
- _taxFee = taxFee (#879)
DONASWAP.setLiquidityFeePercent(uint256) (#882-884) should emit an event for:
- _liquidityFee = liquidityFee (#883)
Emit an event for critical parameter changes.

Additional information: link

solc-0.8.11 is not recommended for deployment
Pragma version^0.8.11 (#14) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
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

excludeFromReward(address) should be declared external:
- DONASWAP.excludeFromReward(address) (#833-842)
name() should be declared external:
- DONASWAP.name() (#744-746)
deliver(uint256) should be declared external:
- DONASWAP.deliver(uint256) (#807-814)
setRouterAddress(address) should be declared external:
- DONASWAP.setRouterAddress(address) (#738-742)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#442-445)
decimals() should be declared external:
- DONASWAP.decimals() (#752-754)
symbol() should be declared external:
- DONASWAP.symbol() (#748-750)
includeInFee(address) should be declared external:
- DONASWAP.includeInFee(address) (#874-876)
minimumTokensBeforeSwapAmount() should be declared external:
- DONASWAP.minimumTokensBeforeSwapAmount() (#803-805)
totalSupply() should be declared external:
- DONASWAP.totalSupply() (#756-758)
getBNBQuantityInContract() should be declared external:
- DONASWAP.getBNBQuantityInContract() (#1144-1146)
isExcludedFromReward(address) should be declared external:
- DONASWAP.isExcludedFromReward(address) (#795-797)
transferFrom(address,address,uint256) should be declared external:
- DONASWAP.transferFrom(address,address,uint256) (#779-783)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#451-455)
totalFees() should be declared external:
- DONASWAP.totalFees() (#799-801)
decreaseAllowance(address,uint256) should be declared external:
- DONASWAP.decreaseAllowance(address,uint256) (#790-793)
allowance(address,address) should be declared external:
- DONASWAP.allowance(address,address) (#770-772)
isExcludedFromFee(address) should be declared external:
- DONASWAP.isExcludedFromFee(address) (#982-984)
increaseAllowance(address,uint256) should be declared external:
- DONASWAP.increaseAllowance(address,uint256) (#785-788)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DONASWAP.setSwapAndLiquifyEnabled(bool) (#896-899)
approve(address,uint256) should be declared external:
- DONASWAP.approve(address,uint256) (#774-777)
excludeFromFee(address) should be declared external:
- DONASWAP.excludeFromFee(address) (#870-872)
reflectionFromToken(uint256,bool) should be declared external:
- DONASWAP.reflectionFromToken(uint256,bool) (#816-825)
transfer(address,uint256) should be declared external:
- DONASWAP.transfer(address,uint256) (#765-768)
Use the external attribute for functions never called from the contract.

Additional information: link

DONASWAP.slitherConstructorVariables() (#668-1158) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 6 * 10 ** 9 (#703)
DONASWAP.slitherConstructorConstantVariables() (#668-1158) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 9 (#682)
DONASWAP.slitherConstructorVariables() (#668-1158) uses literals with too many digits:
- _maxTxAmount = 500000000 * 10 ** 6 * 10 ** 9 (#702)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#406) is never used in DONASWAP (#668-1158)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#406) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

DONASWAP.addLiquidity(uint256,uint256) (#1081-1094) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
Ensure that all the return values of the function calls are used.

Additional information: link

DONASWAP.allowance(address,address).owner (#770) shadows:
- Ownable.owner() (#423-425) (function)
DONASWAP._approve(address,address,uint256).owner (#986) shadows:
- Ownable.owner() (#423-425) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in DONASWAP._transfer(address,address,uint256) (#994-1038):
External calls:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _liquidityFee = _previousLiquidityFee (#979)
- _liquidityFee = 0 (#974)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _previousLiquidityFee = _liquidityFee (#971)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _previousTaxFee = _taxFee (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _tFeeTotal = _tFeeTotal.add(tFee) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _taxFee = _previousTaxFee (#978)
- _taxFee = 0 (#973)
Reentrancy in DONASWAP.swapAndLiquify(uint256) (#1040-1061):
External calls:
- swapTokensForEth(half) (#1052)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
- addLiquidity(otherHalf,newBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1058)
- _allowances[owner][spender] = amount (#990)
Reentrancy in DONASWAP.setRouterAddress(address) (#738-742):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#740)
State variables written after the call(s):
- uniswapV2Router = _newRouter (#741)
Reentrancy in DONASWAP.transferFrom(address,address,uint256) (#779-783):
External calls:
- _transfer(sender,recipient,amount) (#780)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- _transfer(sender,recipient,amount) (#780)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#781)
- _allowances[owner][spender] = amount (#990)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DONASWAP._transfer(address,address,uint256) (#994-1038):
External calls:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1121)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#1131)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
Reentrancy in DONASWAP.transferFrom(address,address,uint256) (#779-783):
External calls:
- _transfer(sender,recipient,amount) (#780)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- _transfer(sender,recipient,amount) (#780)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#991)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#781)
Reentrancy in DONASWAP.swapAndLiquify(uint256) (#1040-1061):
External calls:
- swapTokensForEth(half) (#1052)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
- addLiquidity(otherHalf,newBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1086-1093)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#991)
- addLiquidity(otherHalf,newBalance) (#1058)
- SwapAndLiquify(half,newBalance,otherHalf) (#1060)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#368-389) uses assembly
- INLINE ASM (#381-384)
Address.isContract(address) (#275-284) uses assembly
- INLINE ASM (#282)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (#302-308) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#353-355) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#237-240) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#363-366) is never used and should be removed
Context._msgData() (#248-251) is never used and should be removed
SafeMath.mod(uint256,uint256) (#221-223) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#368-389) is never used and should be removed
Address.isContract(address) (#275-284) is never used and should be removed
Address.functionCall(address,bytes,string) (#338-340) is never used and should be removed
Address.functionCall(address,bytes) (#328-330) is never used and should be removed
Remove unused functions.

Additional information: link

DONASWAP._previousLiquidityFee (#694) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
DONASWAP._previousTaxFee (#691) is set pre-construction with a non-constant function or state variable:
- _taxFee
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) (#302-308):
- (success) = recipient.call{value: amount}() (#306)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#368-389):
- (success,returndata) = target.call{value: weiValue}(data) (#372)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter DONASWAP.calculateTaxFee(uint256)._amount (#955) is not in mixedCase
Parameter DONASWAP.calculateLiquidityFee(uint256)._amount (#961) is not in mixedCase
Constant DONASWAP._name (#686) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DONASWAP._liquidityFee (#693) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#494) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#511) is not in mixedCase
Variable DONASWAP._taxFee (#690) is not in mixedCase
Parameter DONASWAP.setSwapAndLiquifyEnabled(bool)._enabled (#896) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#493) is not in mixedCase
Constant DONASWAP._symbol (#687) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter DONASWAP.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#892) is not in mixedCase
Constant DONASWAP._tTotal (#682) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter DONASWAP.withdrawToken(address,uint256)._tokenContract (#1153) is not in mixedCase
Parameter DONASWAP.withdrawToken(address,uint256)._amount (#1153) is not in mixedCase
Function IUniswapV2Router01.WETH() (#533) is not in mixedCase
Variable DONASWAP._maxTxAmount (#702) is not in mixedCase
Constant DONASWAP._decimals (#688) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#249)" inContext (#243-252)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DONASWAP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable DONASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable DONASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable DONASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable DONASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable DONASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable DONASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._getValues(uint256).rTransferAmount (#911) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._getValues(uint256).rTransferAmount (#911) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable DONASWAP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._getValues(uint256).rTransferAmount (#911) is too similar to DONASWAP._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable DONASWAP._getValues(uint256).rTransferAmount (#911) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#538) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#539)
Variable DONASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._getValues(uint256).rTransferAmount (#911) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to DONASWAP._getTValues(uint256).tTransferAmount (#918)
Variable DONASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable DONASWAP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable DONASWAP._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to DONASWAP._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable DONASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to DONASWAP._getValues(uint256).tTransferAmount (#910)
Variable DONASWAP._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable DONASWAP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to DONASWAP._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable DONASWAP._getValues(uint256).rTransferAmount (#911) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable DONASWAP.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to DONASWAP._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Prevent variables from having similar names.

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 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.


Twitter account link seems to be invalid


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death

Price for DONA