Australian Safe Shepherd is a community meme token forked from the infamous safemoon. The token is completely community driven and was fair launched. Every trade continues toward automatically generating liquidity locked inside of PancakeSwap's LP. Holders earn passive rewards through static reflection as they watch their balance of "ASS" indefinitely grow.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in AUSSIE._transfer(address,address,uint256) (#1023-1067):
External calls:
- swapAndLiquify(contractTokenBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#979)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1157)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1149)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1168)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#895)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1159)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1169)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#897)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _rTotal = _rTotal.sub(rFee) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#981)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1167)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#894)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1158)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#896)
Apply the check-effects-interactions pattern.
Additional information: link
Redundant expression "this (#272)" inContext (#266-275)
Remove redundant statements if they congest code but offer no value.
Additional information: link
AUSSIE.addLiquidity(uint256,uint256) (#1110-1123) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Ensure that all the return values of the function calls are used.
Additional information: link
AUSSIE._approve(address,address,uint256).owner (#1015) shadows:
- Ownable.owner() (#447-449) (function)
AUSSIE.allowance(address,address).owner (#811) shadows:
- Ownable.owner() (#447-449) (function)
Rename the local variables that shadow another component.
Additional information: link
AUSSIE.setMaxTxPercent(uint256) (#919-923) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#920-922)
AUSSIE.setLiquidityFeePercent(uint256) (#915-917) should emit an event for:
- _liquidityFee = liquidityFee (#916)
AUSSIE.setTaxFeePercent(uint256) (#911-913) should emit an event for:
- _taxFee = taxFee (#912)
Emit an event for critical parameter changes.
Additional information: link
Address.isContract(address) (#299-308) uses assembly
- INLINE ASM (#306)
Address._functionCallWithValue(address,bytes,uint256,string) (#392-413) uses assembly
- INLINE ASM (#405-408)
Do not use evm assembly.
Additional information: link
Parameter AUSSIE.calculateTaxFee(uint256)._amount (#984) is not in mixedCase
Parameter AUSSIE.setSwapAndLiquifyEnabled(bool)._enabled (#925) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#539) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#556) is not in mixedCase
Variable AUSSIE._liquidityFee (#741) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#538) is not in mixedCase
Variable AUSSIE._taxFee (#738) is not in mixedCase
Variable AUSSIE._maxTxAmount (#750) is not in mixedCase
Function IUniswapV2Router01.WETH() (#578) is not in mixedCase
Parameter AUSSIE.calculateLiquidityFee(uint256)._amount (#990) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Ownable.unlock() (#494-499) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#496)
Avoid relying on block.timestamp.
Additional information: link
AUSSIE.slitherConstructorVariables() (#716-1179) uses literals with too many digits:
- _maxTxAmount = 20000000000000 * 10 ** 1 * 10 ** 9 (#750)
AUSSIE.slitherConstructorVariables() (#716-1179) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 3000000000000 * 10 ** 1 * 10 ** 9 (#751)
AUSSIE.slitherConstructorVariables() (#716-1179) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 1 * 10 ** 9 (#730)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
AUSSIE._symbol (#735) should be constant
AUSSIE.numTokensSellToAddToLiquidity (#751) should be constant
AUSSIE._decimals (#736) should be constant
AUSSIE._tTotal (#730) should be constant
AUSSIE._name (#734) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Reentrancy in AUSSIE.swapAndLiquify(uint256) (#1069-1090):
External calls:
- swapTokensForEth(half) (#1081)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1087)
- _allowances[owner][spender] = amount (#1019)
Reentrancy in AUSSIE.transferFrom(address,address,uint256) (#820-824):
External calls:
- _transfer(sender,recipient,amount) (#821)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- _transfer(sender,recipient,amount) (#821)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#822)
- _allowances[owner][spender] = amount (#1019)
Reentrancy in AUSSIE._transfer(address,address,uint256) (#1023-1067):
External calls:
- swapAndLiquify(contractTokenBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _liquidityFee = _previousLiquidityFee (#1008)
- _liquidityFee = 0 (#1003)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _previousLiquidityFee = _liquidityFee (#1000)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _previousTaxFee = _taxFee (#999)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _tFeeTotal = _tFeeTotal.add(tFee) (#935)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- _taxFee = _previousTaxFee (#1007)
- _taxFee = 0 (#1002)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AUSSIE._transfer(address,address,uint256) (#1023-1067):
External calls:
- swapAndLiquify(contractTokenBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1152)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- Transfer(sender,recipient,tTransferAmount) (#1172)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- Transfer(sender,recipient,tTransferAmount) (#1162)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
- Transfer(sender,recipient,tTransferAmount) (#900)
- _tokenTransfer(from,to,amount,takeFee) (#1066)
Reentrancy in AUSSIE.swapAndLiquify(uint256) (#1069-1090):
External calls:
- swapTokensForEth(half) (#1081)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1020)
- addLiquidity(otherHalf,newBalance) (#1087)
- SwapAndLiquify(half,newBalance,otherHalf) (#1089)
Reentrancy in AUSSIE.transferFrom(address,address,uint256) (#820-824):
External calls:
- _transfer(sender,recipient,amount) (#821)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- _transfer(sender,recipient,amount) (#821)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1020)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#822)
Apply the check-effects-interactions pattern.
Additional information: link
Address.sendValue(address,uint256) (#326-332) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#377-379) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#260-263) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#387-390) is never used and should be removed
Context._msgData() (#271-274) is never used and should be removed
SafeMath.mod(uint256,uint256) (#244-246) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#392-413) is never used and should be removed
Address.isContract(address) (#299-308) is never used and should be removed
Address.functionCall(address,bytes,string) (#362-364) is never used and should be removed
Address.functionCall(address,bytes) (#352-354) is never used and should be removed
Remove unused functions.
Additional information: link
AUSSIE._rTotal (#731) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AUSSIE._previousLiquidityFee (#742) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
AUSSIE._previousTaxFee (#739) 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) (#326-332):
- (success) = recipient.call{value: amount}() (#330)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#392-413):
- (success,returndata) = target.call{value: weiValue}(data) (#396)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable AUSSIE._transferStandard(address,address,uint256).rTransferAmount (#1147) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferBothExcluded(address,address,uint256).rTransferAmount (#893) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Variable AUSSIE._transferBothExcluded(address,address,uint256).rTransferAmount (#893) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE._getValues(uint256).rTransferAmount (#940) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE._transferStandard(address,address,uint256).rTransferAmount (#1147) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE._transferStandard(address,address,uint256).rTransferAmount (#1147) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE._getValues(uint256).rTransferAmount (#940) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE._getValues(uint256).rTransferAmount (#940) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferStandard(address,address,uint256).rTransferAmount (#1147) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE._getValues(uint256).rTransferAmount (#940) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE._transferBothExcluded(address,address,uint256).rTransferAmount (#893) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Variable AUSSIE._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE._transferBothExcluded(address,address,uint256).rTransferAmount (#893) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE._transferBothExcluded(address,address,uint256).rTransferAmount (#893) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to AUSSIE._transferStandard(address,address,uint256).tTransferAmount (#1147)
Variable AUSSIE._getValues(uint256).rTransferAmount (#940) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#583) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#584)
Variable AUSSIE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Variable AUSSIE._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Variable AUSSIE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferStandard(address,address,uint256).rTransferAmount (#1147) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Variable AUSSIE._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to AUSSIE._transferBothExcluded(address,address,uint256).tTransferAmount (#893)
Variable AUSSIE._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE._transferStandard(address,address,uint256).rTransferAmount (#1147) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#955) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE._transferFromExcluded(address,address,uint256).rTransferAmount (#1166) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferBothExcluded(address,address,uint256).rTransferAmount (#893) is too similar to AUSSIE._transferToExcluded(address,address,uint256).tTransferAmount (#1156)
Variable AUSSIE._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE._getValues(uint256).rTransferAmount (#940) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to AUSSIE._transferFromExcluded(address,address,uint256).tTransferAmount (#1166)
Variable AUSSIE._transferToExcluded(address,address,uint256).rTransferAmount (#1156) is too similar to AUSSIE._getValues(uint256).tTransferAmount (#939)
Variable AUSSIE.reflectionFromToken(uint256,bool).rTransferAmount (#859) is too similar to AUSSIE._getTValues(uint256).tTransferAmount (#947)
Prevent variables from having similar names.
Additional information: link
approve(address,uint256) should be declared external:
- AUSSIE.approve(address,uint256) (#815-818)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#466-469)
isExcludedFromReward(address) should be declared external:
- AUSSIE.isExcludedFromReward(address) (#836-838)
increaseAllowance(address,uint256) should be declared external:
- AUSSIE.increaseAllowance(address,uint256) (#826-829)
totalFees() should be declared external:
- AUSSIE.totalFees() (#840-842)
decimals() should be declared external:
- AUSSIE.decimals() (#793-795)
decreaseAllowance(address,uint256) should be declared external:
- AUSSIE.decreaseAllowance(address,uint256) (#831-834)
name() should be declared external:
- AUSSIE.name() (#785-787)
allowance(address,address) should be declared external:
- AUSSIE.allowance(address,address) (#811-813)
includeInFee(address) should be declared external:
- AUSSIE.includeInFee(address) (#907-909)
excludeFromReward(address) should be declared external:
- AUSSIE.excludeFromReward(address) (#870-878)
symbol() should be declared external:
- AUSSIE.symbol() (#789-791)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#475-479)
totalSupply() should be declared external:
- AUSSIE.totalSupply() (#797-799)
transferFrom(address,address,uint256) should be declared external:
- AUSSIE.transferFrom(address,address,uint256) (#820-824)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#481-483)
transfer(address,uint256) should be declared external:
- AUSSIE.transfer(address,uint256) (#806-809)
excludeFromFee(address) should be declared external:
- AUSSIE.excludeFromFee(address) (#903-905)
unlock() should be declared external:
- Ownable.unlock() (#494-499)
deliver(uint256) should be declared external:
- AUSSIE.deliver(uint256) (#844-851)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AUSSIE.setSwapAndLiquifyEnabled(bool) (#925-928)
isExcludedFromFee(address) should be declared external:
- AUSSIE.isExcludedFromFee(address) (#1011-1013)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#486-491)
reflectionFromToken(uint256,bool) should be declared external:
- AUSSIE.reflectionFromToken(uint256,bool) (#853-862)
Use the external attribute for functions never called from the contract.
Additional information: link
AUSSIE.includeInReward(address) (#880-891) has costly operations inside a loop:
- _excluded.pop() (#887)
Use a local variable to hold the loop computation result.
Additional information: link
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 and contract ownership is renounced.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find code repository for the project
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token has no active CoinGecko listing / rank
Twitter account link seems to be invalid
Unable to find Youtube account