From piggy banks to interplanetary vaults, tear through progressive security-related milestones and join the newest community-driven frictionless yield protocol on the Binance Smart Chain. Buy and hold UltraSafe to reap the rewards of its unique yield protocol, earning passive income and enjoying price appreciation as the community-driven token achieves dynamic milestones!
Reentrancy in UltraSafe._transfer(address,address,uint256) (#967-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#923)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1092)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1101)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1093)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1112)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#839)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1103)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1113)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#841)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _rTotal = _rTotal.sub(rFee) (#878)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#925)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1111)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#838)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1102)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#840)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
UltraSafe.addLiquidity(uint256,uint256) (#1054-1067) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Ensure that all the return values of the function calls are used.
Additional information: link
UltraSafe.includeInReward(address) (#824-835) has costly operations inside a loop:
- _excluded.pop() (#831)
Use a local variable to hold the loop computation result.
Additional information: link
UltraSafe.slitherConstructorVariables() (#660-1123) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#674)
UltraSafe.slitherConstructorVariables() (#660-1123) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#695)
UltraSafe.slitherConstructorVariables() (#660-1123) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#694)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#395) is never used in UltraSafe (#660-1123)
Remove unused state variables.
Additional information: link
UltraSafe.numTokensSellToAddToLiquidity (#695) should be constant
Ownable._previousOwner (#395) should be constant
UltraSafe._name (#678) should be constant
UltraSafe._decimals (#680) should be constant
UltraSafe._tTotal (#674) should be constant
UltraSafe._symbol (#679) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
UltraSafe._approve(address,address,uint256).owner (#959) shadows:
- Ownable.owner() (#411-413) (function)
UltraSafe.allowance(address,address).owner (#755) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.
Additional information: link
UltraSafe.setMaxTxPercent(uint256) (#863-867) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#864-866)
UltraSafe.setTaxFeePercent(uint256) (#855-857) should emit an event for:
- _taxFee = taxFee (#856)
UltraSafe.setLiquidityFeePercent(uint256) (#859-861) should emit an event for:
- _liquidityFee = liquidityFee (#860)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in UltraSafe.transferFrom(address,address,uint256) (#764-768):
External calls:
- _transfer(sender,recipient,amount) (#765)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- _transfer(sender,recipient,amount) (#765)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#766)
- _allowances[owner][spender] = amount (#963)
Reentrancy in UltraSafe._transfer(address,address,uint256) (#967-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _liquidityFee = _previousLiquidityFee (#952)
- _liquidityFee = 0 (#947)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _previousLiquidityFee = _liquidityFee (#944)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _previousTaxFee = _taxFee (#943)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _tFeeTotal = _tFeeTotal.add(tFee) (#879)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- _taxFee = _previousTaxFee (#951)
- _taxFee = 0 (#946)
Reentrancy in UltraSafe.swapAndLiquify(uint256) (#1013-1034):
External calls:
- swapTokensForEth(half) (#1025)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1031)
- _allowances[owner][spender] = amount (#963)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in UltraSafe.swapAndLiquify(uint256) (#1013-1034):
External calls:
- swapTokensForEth(half) (#1025)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#964)
- addLiquidity(otherHalf,newBalance) (#1031)
- SwapAndLiquify(half,newBalance,otherHalf) (#1033)
Reentrancy in UltraSafe._transfer(address,address,uint256) (#967-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1096)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1116)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1106)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#844)
- _tokenTransfer(from,to,amount,takeFee) (#1010)
Reentrancy in UltraSafe.transferFrom(address,address,uint256) (#764-768):
External calls:
- _transfer(sender,recipient,amount) (#765)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- _transfer(sender,recipient,amount) (#765)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#964)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#766)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Do not use evm assembly.
Additional information: link
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Remove unused functions.
Additional information: link
UltraSafe._rTotal (#675) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
UltraSafe._previousTaxFee (#683) is set pre-construction with a non-constant function or state variable:
- _taxFee
UltraSafe._previousLiquidityFee (#686) 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
Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable UltraSafe._taxFee (#682) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#483) is not in mixedCase
Variable UltraSafe._maxTxAmount (#694) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#500) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#482) is not in mixedCase
Variable UltraSafe._liquidityFee (#685) is not in mixedCase
Parameter UltraSafe.calculateTaxFee(uint256)._amount (#928) is not in mixedCase
Parameter UltraSafe.setSwapAndLiquifyEnabled(bool)._enabled (#869) is not in mixedCase
Function IUniswapV2Router01.WETH() (#522) is not in mixedCase
Parameter UltraSafe.calculateLiquidityFee(uint256)._amount (#934) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable UltraSafe._transferBothExcluded(address,address,uint256).rTransferAmount (#837) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Variable UltraSafe.reflectionFromToken(uint256,bool).rTransferAmount (#803) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Variable UltraSafe._getValues(uint256).rTransferAmount (#884) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe._getValues(uint256).rTransferAmount (#884) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable UltraSafe._transferToExcluded(address,address,uint256).rTransferAmount (#1100) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe.reflectionFromToken(uint256,bool).rTransferAmount (#803) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe.reflectionFromToken(uint256,bool).rTransferAmount (#803) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable UltraSafe._transferStandard(address,address,uint256).rTransferAmount (#1091) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable UltraSafe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe._transferBothExcluded(address,address,uint256).rTransferAmount (#837) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._transferBothExcluded(address,address,uint256).rTransferAmount (#837) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe._transferFromExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Variable UltraSafe._transferFromExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable UltraSafe._transferToExcluded(address,address,uint256).rTransferAmount (#1100) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe._transferStandard(address,address,uint256).rTransferAmount (#1091) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe._transferStandard(address,address,uint256).rTransferAmount (#1091) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._transferFromExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe.reflectionFromToken(uint256,bool).rTransferAmount (#803) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._transferFromExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Variable UltraSafe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe.reflectionFromToken(uint256,bool).rTransferAmount (#803) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable UltraSafe._transferBothExcluded(address,address,uint256).rTransferAmount (#837) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe.reflectionFromToken(uint256,bool).rTransferAmount (#803) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe._getValues(uint256).rTransferAmount (#884) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Variable UltraSafe._transferFromExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._getValues(uint256).rTransferAmount (#884) is too similar to UltraSafe._transferToExcluded(address,address,uint256).tTransferAmount (#1100)
Variable UltraSafe._transferToExcluded(address,address,uint256).rTransferAmount (#1100) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#527) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#528)
Variable UltraSafe._transferFromExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._transferToExcluded(address,address,uint256).rTransferAmount (#1100) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._getValues(uint256).rTransferAmount (#884) is too similar to UltraSafe._getValues(uint256).tTransferAmount (#883)
Variable UltraSafe._transferToExcluded(address,address,uint256).rTransferAmount (#1100) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Variable UltraSafe._getValues(uint256).rTransferAmount (#884) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe._transferToExcluded(address,address,uint256).rTransferAmount (#1100) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe._transferStandard(address,address,uint256).rTransferAmount (#1091) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe._transferBothExcluded(address,address,uint256).rTransferAmount (#837) is too similar to UltraSafe._transferFromExcluded(address,address,uint256).tTransferAmount (#1110)
Variable UltraSafe._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe._transferStandard(address,address,uint256).rTransferAmount (#1091) is too similar to UltraSafe._transferStandard(address,address,uint256).tTransferAmount (#1091)
Variable UltraSafe._transferBothExcluded(address,address,uint256).rTransferAmount (#837) is too similar to UltraSafe._transferBothExcluded(address,address,uint256).tTransferAmount (#837)
Variable UltraSafe._transferStandard(address,address,uint256).rTransferAmount (#1091) is too similar to UltraSafe._getTValues(uint256).tTransferAmount (#891)
Prevent variables from having similar names.
Additional information: link
decimals() should be declared external:
- UltraSafe.decimals() (#737-739)
reflectionFromToken(uint256,bool) should be declared external:
- UltraSafe.reflectionFromToken(uint256,bool) (#797-806)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
totalSupply() should be declared external:
- UltraSafe.totalSupply() (#741-743)
approve(address,uint256) should be declared external:
- UltraSafe.approve(address,uint256) (#759-762)
allowance(address,address) should be declared external:
- UltraSafe.allowance(address,address) (#755-757)
isExcludedFromFee(address) should be declared external:
- UltraSafe.isExcludedFromFee(address) (#955-957)
name() should be declared external:
- UltraSafe.name() (#729-731)
decreaseAllowance(address,uint256) should be declared external:
- UltraSafe.decreaseAllowance(address,uint256) (#775-778)
isExcludedFromReward(address) should be declared external:
- UltraSafe.isExcludedFromReward(address) (#780-782)
excludeFromFee(address) should be declared external:
- UltraSafe.excludeFromFee(address) (#847-849)
excludeFromReward(address) should be declared external:
- UltraSafe.excludeFromReward(address) (#814-822)
setSwapAndLiquifyEnabled(bool) should be declared external:
- UltraSafe.setSwapAndLiquifyEnabled(bool) (#869-872)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
transferFrom(address,address,uint256) should be declared external:
- UltraSafe.transferFrom(address,address,uint256) (#764-768)
transfer(address,uint256) should be declared external:
- UltraSafe.transfer(address,uint256) (#750-753)
increaseAllowance(address,uint256) should be declared external:
- UltraSafe.increaseAllowance(address,uint256) (#770-773)
symbol() should be declared external:
- UltraSafe.symbol() (#733-735)
deliver(uint256) should be declared external:
- UltraSafe.deliver(uint256) (#788-795)
totalFees() should be declared external:
- UltraSafe.totalFees() (#784-786)
includeInFee(address) should be declared external:
- UltraSafe.includeInFee(address) (#851-853)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Contract has 8% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find token contract audit
Token is not listed at Mobula.Finance
Additional information: link
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has a considerable age, but social accounts / website are missing or have few users
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid