Arata is a Decentralized Community-Driven NFT-based online video game, Anime Centent Incubator, Video Streaming Platform, and NFTs Marketplace for Gamers, Anime Fans, Anime Creators and Artists to battle to Create, Buy, Sell, and Watch Anime Video Contents while Earning ARATA COINS.
Arata.addLiquidity(uint256,uint256) (#1019-1032) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Arata._isExcluded (#699) is never initialized. It is used in:
- Arata.balanceOf(address) (#778-781)
- Arata.deliver(uint256) (#820-827)
- Arata._takeLiquidity(uint256) (#901-907)
- Arata._tokenTransfer(address,address,uint256) (#1035-1071)
Arata._excluded (#700) is never initialized. It is used in:
- Arata._getCurrentSupply() (#889-899)
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
Reentrancy in Arata._transfer(address,address,uint256) (#948-976):
External calls:
- swapAndLiquify(contractTokenBalance) (#971)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#971)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#975)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#904)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1083)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1075)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#850)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1076)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1093)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1085)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1094)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#852)
- _tokenTransfer(from,to,amount) (#975)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#906)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1092)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#849)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1084)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#851)
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.
Ownable.unlock() (#468-473) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#470)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#273-282) uses assembly
- INLINE ASM (#280)
Address._functionCallWithValue(address,bytes,uint256,string) (#366-387) uses assembly
- INLINE ASM (#379-382)
Do not use evm assembly.
Additional information: link
Redundant expression "this (#246)" inContext (#240-249)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Arata.addLiquidity(uint256,uint256) (#1019-1032) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
Ensure that all the return values of the function calls are used.
Additional information: link
Arata.allowance(address,address).owner (#789) shadows:
- Ownable.owner() (#421-423) (function)
Arata._approve(address,address,uint256).owner (#940) shadows:
- Ownable.owner() (#421-423) (function)
Rename the local variables that shadow another component.
Additional information: link
Arata.setLiquidityFeePercent(uint256) (#1132-1134) should emit an event for:
- _liquidityFee = liquidityFee (#1133)
Arata.setGameMiningReserveFeePercent(uint256) (#1136-1138) should emit an event for:
- _gameMiningReserveFee = gameMiningReserveFee (#1137)
Emit an event for critical parameter changes.
Additional information: link
Arata.setgameMiningReserveWallet(address).newWallet (#1127) lacks a zero-check on :
- gameMiningReserveWallet = newWallet (#1128)
Check that the address is not zero.
Additional information: link
Reentrancy in Arata._transfer(address,address,uint256) (#948-976):
External calls:
- swapAndLiquify(contractTokenBalance) (#971)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#971)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#975)
- _gameMiningReserveFee = _previousgameMiningReserveFee (#933)
- _gameMiningReserveFee = 0 (#925)
- _tokenTransfer(from,to,amount) (#975)
- _liquidityFee = _previousLiquidityFee (#931)
- _liquidityFee = 0 (#924)
- _liquidityFee = 0 (#1058)
- _liquidityFee = _previousLiquidityFee (#1066)
- _tokenTransfer(from,to,amount) (#975)
- _previousLiquidityFee = _liquidityFee (#919)
- _tokenTransfer(from,to,amount) (#975)
- _previousgameMiningReserveFee = _gameMiningReserveFee (#921)
Reentrancy in Arata.constructor() (#744-760):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#749-750)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#756)
- _isExcludedFromFee[address(this)] = true (#757)
- uniswapV2Router = _uniswapV2Router (#753)
Reentrancy in Arata.setRouterAddress(address) (#1143-1148):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1146)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1147)
Reentrancy in Arata.swapAndLiquify(uint256) (#978-999):
External calls:
- swapTokensForEth(half) (#990)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
- addLiquidity(otherHalf,newBalance) (#996)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#996)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#996)
- _allowances[owner][spender] = amount (#944)
Reentrancy in Arata.transferFrom(address,address,uint256) (#798-802):
External calls:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
External calls sending eth:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#800)
- _allowances[owner][spender] = amount (#944)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Arata._transfer(address,address,uint256) (#948-976):
External calls:
- swapAndLiquify(contractTokenBalance) (#971)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#971)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1078)
- _tokenTransfer(from,to,amount) (#975)
- Transfer(sender,recipient,tTransferAmount) (#1087)
- _tokenTransfer(from,to,amount) (#975)
- Transfer(sender,recipient,tTransferAmount) (#1096)
- _tokenTransfer(from,to,amount) (#975)
- Transfer(sender,recipient,tTransferAmount) (#854)
- _tokenTransfer(from,to,amount) (#975)
Reentrancy in Arata.constructor() (#744-760):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#749-750)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#759)
Reentrancy in Arata.swapAndLiquify(uint256) (#978-999):
External calls:
- swapTokensForEth(half) (#990)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
- addLiquidity(otherHalf,newBalance) (#996)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#996)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#945)
- addLiquidity(otherHalf,newBalance) (#996)
- SwapAndLiquify(half,newBalance,otherHalf) (#998)
Reentrancy in Arata.transferFrom(address,address,uint256) (#798-802):
External calls:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1010-1016)
External calls sending eth:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1024-1031)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#945)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#800)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#366-387) is never used and should be removed
Address.functionCall(address,bytes) (#326-328) is never used and should be removed
Address.functionCall(address,bytes,string) (#336-338) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#351-353) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#361-364) is never used and should be removed
Address.isContract(address) (#273-282) is never used and should be removed
Address.sendValue(address,uint256) (#300-306) is never used and should be removed
Context._msgData() (#245-248) is never used and should be removed
SafeMath.mod(uint256,uint256) (#218-220) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#234-237) is never used and should be removed
Remove unused functions.
Additional information: link
Arata._rTotal (#704) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Arata._previousLiquidityFee (#714) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Arata._previousgameMiningReserveFee (#720) is set pre-construction with a non-constant function or state variable:
- _gameMiningReserveFee
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) (#300-306):
- (success) = recipient.call{value: amount}() (#304)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#366-387):
- (success,returndata) = target.call{value: weiValue}(data) (#370)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#512) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#513) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#529) is not in mixedCase
Function IUniswapV2Router01.WETH() (#550) is not in mixedCase
Parameter Arata.calculateLiquidityFee(uint256)._amount (#909) is not in mixedCase
Function Arata.EnableAllFees() (#1107-1115) is not in mixedCase
Parameter Arata.setSwapAndLiquifyEnabled(bool)._enabled (#1150) is not in mixedCase
Variable Arata._liquidityFee (#713) is not in mixedCase
Variable Arata._gameMiningReserveFee (#718) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#555) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#556)
Variable Arata._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._getRValues(uint256,uint256,uint256).rTransferAmount (#880) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._getValues(uint256).rTransferAmount (#866) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._getValues(uint256).rTransferAmount (#866) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._transferBothExcluded(address,address,uint256).rTransferAmount (#848) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._getValues(uint256).rTransferAmount (#866) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Variable Arata._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._transferBothExcluded(address,address,uint256).rTransferAmount (#848) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Variable Arata._getValues(uint256).rTransferAmount (#866) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._transferBothExcluded(address,address,uint256).rTransferAmount (#848) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._getRValues(uint256,uint256,uint256).rTransferAmount (#880) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata.feesFromToken(uint256,bool).rTransferAmount (#835) is too similar to Arata._getValues(uint256).tTransferAmount (#865)
Variable Arata._getValues(uint256).rTransferAmount (#866) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata._getRValues(uint256,uint256,uint256).rTransferAmount (#880) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._getRValues(uint256,uint256,uint256).rTransferAmount (#880) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Variable Arata._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata._getRValues(uint256,uint256,uint256).rTransferAmount (#880) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._getValues(uint256).rTransferAmount (#866) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata._transferFromExcluded(address,address,uint256).rTransferAmount (#1091) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata._getRValues(uint256,uint256,uint256).rTransferAmount (#880) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata.feesFromToken(uint256,bool).rTransferAmount (#835) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata.feesFromToken(uint256,bool).rTransferAmount (#835) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Variable Arata._transferBothExcluded(address,address,uint256).rTransferAmount (#848) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata._transferBothExcluded(address,address,uint256).rTransferAmount (#848) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Variable Arata._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to Arata._transferBothExcluded(address,address,uint256).tTransferAmount (#848)
Variable Arata._transferBothExcluded(address,address,uint256).rTransferAmount (#848) is too similar to Arata._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Arata.feesFromToken(uint256,bool).rTransferAmount (#835) is too similar to Arata._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable Arata._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Variable Arata.feesFromToken(uint256,bool).rTransferAmount (#835) is too similar to Arata._transferFromExcluded(address,address,uint256).tTransferAmount (#1091)
Variable Arata.feesFromToken(uint256,bool).rTransferAmount (#835) is too similar to Arata._getTValues(uint256).tTransferAmount (#873)
Prevent variables from having similar names.
Additional information: link
Arata.slitherConstructorVariables() (#688-1156) uses literals with too many digits:
- _tTotal = 5000000 * 10 ** 18 (#703)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Arata._decimals (#709) should be constant
Arata._name (#707) should be constant
Arata._symbol (#708) should be constant
Arata._tTotal (#703) should be constant
Arata.numTokensSellToAddToLiquidity (#728) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#440-443)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#449-453)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#455-457)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#460-465)
unlock() should be declared external:
- Ownable.unlock() (#468-473)
name() should be declared external:
- Arata.name() (#762-764)
symbol() should be declared external:
- Arata.symbol() (#766-768)
decimals() should be declared external:
- Arata.decimals() (#770-772)
totalSupply() should be declared external:
- Arata.totalSupply() (#774-776)
transfer(address,uint256) should be declared external:
- Arata.transfer(address,uint256) (#784-787)
allowance(address,address) should be declared external:
- Arata.allowance(address,address) (#789-791)
approve(address,uint256) should be declared external:
- Arata.approve(address,uint256) (#793-796)
transferFrom(address,address,uint256) should be declared external:
- Arata.transferFrom(address,address,uint256) (#798-802)
increaseAllowance(address,uint256) should be declared external:
- Arata.increaseAllowance(address,uint256) (#804-807)
decreaseAllowance(address,uint256) should be declared external:
- Arata.decreaseAllowance(address,uint256) (#809-812)
totalFees() should be declared external:
- Arata.totalFees() (#816-818)
deliver(uint256) should be declared external:
- Arata.deliver(uint256) (#820-827)
feesFromToken(uint256,bool) should be declared external:
- Arata.feesFromToken(uint256,bool) (#829-838)
isExcludedFromFee(address) should be declared external:
- Arata.isExcludedFromFee(address) (#936-938)
excludeFromFee(address) should be declared external:
- Arata.excludeFromFee(address) (#1099-1101)
includeInFee(address) should be declared external:
- Arata.includeInFee(address) (#1103-1105)
setRouterAddress(address) should be declared external:
- Arata.setRouterAddress(address) (#1143-1148)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Arata.setSwapAndLiquifyEnabled(bool) (#1150-1153)
Use the external attribute for functions never called from the contract.
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.
Average 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Unable to crawl data from the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Youtube account