Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
KaiFloki.addLiquidity(uint256,uint256) (#766-779) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in KaiFloki._transfer(address,address,uint256) (#666-708):
External calls:
- swapAndLiquify(contractTokenBalance) (#692)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#692)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#695)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#703)
- finalAmount = takeFee(sender,recipient,amount) (#697-698)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#793)
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.
KaiFloki.addLiquidity(uint256,uint256) (#766-779) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
Ensure that all the return values of the function calls are used.
Additional information: link
KaiFloki.allowance(address,address).owner (#510) shadows:
- Ownable.owner() (#148-150) (function)
KaiFloki._approve(address,address,uint256).owner (#533) shadows:
- Ownable.owner() (#148-150) (function)
Rename the local variables that shadow another component.
Additional information: link
KaiFloki.setBuyTaxes(uint256,uint256,uint256) (#560-566) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#565)
KaiFloki.setSelTaxes(uint256,uint256,uint256) (#568-574) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#573)
KaiFloki.setDistributionSettings(uint256,uint256,uint256) (#576-582) should emit an event for:
- _liquidityShare = newLiquidityShare (#577)
- _teamShare = newTeamShare (#579)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#581)
KaiFloki.setMaxTxAmount(uint256) (#584-586) should emit an event for:
- _maxTxAmount = maxTxAmount (#585)
KaiFloki.setWalletLimit(uint256) (#596-598) should emit an event for:
- _walletMax = newLimit (#597)
KaiFloki.setNumTokensBeforeSwap(uint256) (#600-602) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#601)
Emit an event for critical parameter changes.
Additional information: link
KaiFloki.setMarketingWalletAddress(address).newAddress (#604) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#605)
KaiFloki.setTeamWalletAddress(address).newAddress (#608) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#609)
Check that the address is not zero.
Additional information: link
Reentrancy in KaiFloki.changeRouterVersion(address) (#629-646):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#637-638)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#645)
- isWalletLimitExempt[address(uniswapPair)] = true (#644)
- uniswapPair = newPairAddress (#641)
- uniswapV2Router = _uniswapV2Router (#642)
Reentrancy in KaiFloki.constructor() (#459-488):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#463-464)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#467)
- _balances[_msgSender()] = _totalSupply (#485)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#474)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#472)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#473)
- isExcludedFromFee[owner()] = true (#469)
- isExcludedFromFee[address(this)] = true (#470)
- isMarketPair[address(uniswapPair)] = true (#483)
- isTxLimitExempt[owner()] = true (#480)
- isTxLimitExempt[address(this)] = true (#481)
- isWalletLimitExempt[owner()] = true (#476)
- isWalletLimitExempt[address(uniswapPair)] = true (#477)
- isWalletLimitExempt[address(this)] = true (#478)
- premarket_user[owner()] = true (#486)
- uniswapV2Router = _uniswapV2Router (#466)
Reentrancy in KaiFloki.swapAndLiquify(uint256) (#717-744):
External calls:
- swapTokensForEth(tokensForSwap) (#722)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#737)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#740)
- recipient.transfer(amount) (#626)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- _allowances[owner][spender] = amount (#537)
Reentrancy in KaiFloki.transferFrom(address,address,uint256) (#660-664):
External calls:
- _transfer(sender,recipient,amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
External calls sending eth:
- _transfer(sender,recipient,amount) (#661)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#662)
- _allowances[owner][spender] = amount (#537)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in KaiFloki._transfer(address,address,uint256) (#666-708):
External calls:
- swapAndLiquify(contractTokenBalance) (#692)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#692)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#794)
- finalAmount = takeFee(sender,recipient,amount) (#697-698)
- Transfer(sender,recipient,finalAmount) (#705)
Reentrancy in KaiFloki.constructor() (#459-488):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#463-464)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#487)
Reentrancy in KaiFloki.swapAndLiquify(uint256) (#717-744):
External calls:
- swapTokensForEth(tokensForSwap) (#722)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
Event emitted after the call(s):
- eventSwapAndLiquify(amountReceived) (#724)
- liquidityGetBnb(amountBNBLiquidity) (#734)
- marketingGetBnb(amountBNBMarketing) (#733)
- teamGetBnb(amountBNBTeam) (#732)
Reentrancy in KaiFloki.swapAndLiquify(uint256) (#717-744):
External calls:
- swapTokensForEth(tokensForSwap) (#722)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#737)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#740)
- recipient.transfer(amount) (#626)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
Reentrancy in KaiFloki.swapTokensForEth(uint256) (#746-764):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#763)
Reentrancy in KaiFloki.transferFrom(address,address,uint256) (#660-664):
External calls:
- _transfer(sender,recipient,amount) (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#755-761)
External calls sending eth:
- _transfer(sender,recipient,amount) (#661)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#662)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#83-88) uses assembly
- INLINE ASM (#86)
Address._functionCallWithValue(address,bytes,uint256,string) (#115-132) uses assembly
- INLINE ASM (#124-127)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#115-132) is never used and should be removed
Address.functionCall(address,bytes) (#98-100) is never used and should be removed
Address.functionCall(address,bytes,string) (#102-104) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#110-113) is never used and should be removed
Address.isContract(address) (#83-88) is never used and should be removed
Address.sendValue(address,uint256) (#90-96) is never used and should be removed
Context._msgData() (#11-14) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.
Additional information: link
KaiFloki._totalSupply (#414) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
KaiFloki._maxTxAmount (#415) is set pre-construction with a non-constant function or state variable:
- 3000000 * 10 ** _decimals
KaiFloki._walletMax (#416) is set pre-construction with a non-constant function or state variable:
- 3000000 * 10 ** _decimals
KaiFloki.minimumTokensBeforeSwap (#417) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
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) (#90-96):
- (success) = recipient.call{value: amount}() (#94)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#115-132):
- (success,returndata) = target.call{value: weiValue}(data) (#118)
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() (#205) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#206) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#222) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Event KaiFlokiinSwapAndLiquifyStatus(bool) (#444) is not in CapWords
Event KaiFlokistepLiquify(bool,bool,bool,bool) (#445) is not in CapWords
Event KaiFlokistepFee(bool) (#446) is not in CapWords
Event KaiFlokiteamGetBnb(uint256) (#448) is not in CapWords
Event KaiFlokimarketingGetBnb(uint256) (#449) is not in CapWords
Event KaiFlokiliquidityGetBnb(uint256) (#450) is not in CapWords
Event KaiFlokieventSwapAndLiquify(uint256) (#451) is not in CapWords
Function KaiFloki.activate_market(bool) (#553-555) is not in mixedCase
Function KaiFloki.edit_premarket_user(address,bool) (#556-558) is not in mixedCase
Parameter KaiFloki.edit_premarket_user(address,bool)._address (#556) is not in mixedCase
Parameter KaiFloki.setSwapAndLiquifyEnabled(bool)._enabled (#612) is not in mixedCase
Function KaiFloki.edit_blacklistAddress(address,bool) (#648-650) is not in mixedCase
Variable KaiFloki.market_active (#382) is not in mixedCase
Variable KaiFloki._isBlacklisted (#383) is not in mixedCase
Variable KaiFloki.premarket_user (#384) is not in mixedCase
Variable KaiFloki._balances (#390) is not in mixedCase
Variable KaiFloki._buyLiquidityFee (#398) is not in mixedCase
Variable KaiFloki._buyMarketingFee (#399) is not in mixedCase
Variable KaiFloki._buyTeamFee (#400) is not in mixedCase
Variable KaiFloki._sellLiquidityFee (#402) is not in mixedCase
Variable KaiFloki._sellMarketingFee (#403) is not in mixedCase
Variable KaiFloki._sellTeamFee (#404) is not in mixedCase
Variable KaiFloki._liquidityShare (#406) is not in mixedCase
Variable KaiFloki._marketingShare (#407) is not in mixedCase
Variable KaiFloki._teamShare (#408) is not in mixedCase
Variable KaiFloki._totalTaxIfBuying (#410) is not in mixedCase
Variable KaiFloki._totalTaxIfSelling (#411) is not in mixedCase
Variable KaiFloki._totalDistributionShares (#412) is not in mixedCase
Variable KaiFloki._maxTxAmount (#415) is not in mixedCase
Variable KaiFloki._walletMax (#416) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#12)" inContext (#5-15)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in KaiFloki._transfer(address,address,uint256) (#666-708):
External calls:
- swapAndLiquify(contractTokenBalance) (#692)
- recipient.transfer(amount) (#626)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#692)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#695)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#703)
- finalAmount = takeFee(sender,recipient,amount) (#697-698)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#793)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#794)
- finalAmount = takeFee(sender,recipient,amount) (#697-698)
- Transfer(sender,recipient,finalAmount) (#705)
Reentrancy in KaiFloki.swapAndLiquify(uint256) (#717-744):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#737)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#740)
- recipient.transfer(amount) (#626)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#737)
- recipient.transfer(amount) (#626)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#740)
- recipient.transfer(amount) (#626)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
- _allowances[owner][spender] = amount (#537)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#743)
Reentrancy in KaiFloki.transferFrom(address,address,uint256) (#660-664):
External calls:
- _transfer(sender,recipient,amount) (#661)
- recipient.transfer(amount) (#626)
External calls sending eth:
- _transfer(sender,recipient,amount) (#661)
- recipient.transfer(amount) (#626)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#771-778)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#662)
- _allowances[owner][spender] = amount (#537)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#662)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#246) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#247)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#157-160) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#158)
Ownable.waiveOwnership() (#157-160) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#159)
KaiFloki.slitherConstructorVariables() (#374-801) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#388)
KaiFloki.slitherConstructorVariables() (#374-801) uses literals with too many digits:
- _totalSupply = 100000000 * 10 ** _decimals (#414)
KaiFloki.slitherConstructorVariables() (#374-801) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** _decimals (#415)
KaiFloki.slitherConstructorVariables() (#374-801) uses literals with too many digits:
- _walletMax = 3000000 * 10 ** _decimals (#416)
KaiFloki.slitherConstructorVariables() (#374-801) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000 * 10 ** _decimals (#417)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable.asdasd (#137) is never used in KaiFloki (#374-801)
Ownable._lockTime (#138) is never used in KaiFloki (#374-801)
Remove unused state variables.
Additional information: link
KaiFloki._decimals (#381) should be constant
KaiFloki._name (#379) should be constant
KaiFloki._symbol (#380) should be constant
Ownable._lockTime (#138) should be constant
Ownable.asdasd (#137) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#157-160)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#162-166)
getTime() should be declared external:
- Ownable.getTime() (#168-170)
name() should be declared external:
- KaiFloki.name() (#490-492)
symbol() should be declared external:
- KaiFloki.symbol() (#494-496)
decimals() should be declared external:
- KaiFloki.decimals() (#498-500)
totalSupply() should be declared external:
- KaiFloki.totalSupply() (#502-504)
allowance(address,address) should be declared external:
- KaiFloki.allowance(address,address) (#510-512)
increaseAllowance(address,uint256) should be declared external:
- KaiFloki.increaseAllowance(address,uint256) (#514-517)
decreaseAllowance(address,uint256) should be declared external:
- KaiFloki.decreaseAllowance(address,uint256) (#519-522)
minimumTokensBeforeSwapAmount() should be declared external:
- KaiFloki.minimumTokensBeforeSwapAmount() (#524-526)
approve(address,uint256) should be declared external:
- KaiFloki.approve(address,uint256) (#528-531)
setMarketPairStatus(address,bool) should be declared external:
- KaiFloki.setMarketPairStatus(address,bool) (#541-543)
setIsExcludedFromFee(address,bool) should be declared external:
- KaiFloki.setIsExcludedFromFee(address,bool) (#549-551)
setSwapAndLiquifyEnabled(bool) should be declared external:
- KaiFloki.setSwapAndLiquifyEnabled(bool) (#612-615)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- KaiFloki.setSwapAndLiquifyByLimitOnly(bool) (#617-619)
getCirculatingSupply() should be declared external:
- KaiFloki.getCirculatingSupply() (#621-623)
changeRouterVersion(address) should be declared external:
- KaiFloki.changeRouterVersion(address) (#629-646)
transfer(address,uint256) should be declared external:
- KaiFloki.transfer(address,uint256) (#655-658)
transferFrom(address,address,uint256) should be declared external:
- KaiFloki.transferFrom(address,address,uint256) (#660-664)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Average 30d PancakeSwap volume is low.
Number of Binance Smart Chain (BSC) token holders 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 find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to crawl data from the website
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has relatively low CoinMarketCap rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account