LAIKA Token Logo

LAIKA Token

About LAIKA

Listings

Not Found
Token 20 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 6 August 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

Laika.swapAndLiquify(address) (#1127-1156) sends eth to arbitrary user
Dangerous calls:
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
Laika.addLiquidity(address,address,uint256,uint256) (#1175-1189) sends eth to arbitrary user
Dangerous calls:
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Laika._transfer(address,address,uint256) (#997-1027):
External calls:
- swapAndLiquify(to) (#1014)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
External calls sending eth:
- swapAndLiquify(to) (#1014)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _liquidityFee = _previousLiquidityFee (#964)
- _liquidityFee = 0 (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _rOwned[address(this)] += rLiquidity (#924)
- _rOwned[sender] -= rAmount (#1075)
- _rOwned[burnAddress] += rBurn (#929)
- _rOwned[recipient] += rTransferAmount (#1080)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _rTotal = _rTotal - rFee (#822)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _tOwned[address(this)] += tLiquidity (#926)
- _tOwned[sender] -= tAmount (#1077)
- _tOwned[recipient] += tTransferAmount (#1079)
- _tOwned[burnAddress] += tBurn (#931)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


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.


Contract ownership is not renounced (belongs to a wallet)

Laika._takeLiquidity(uint256) (#917-935) performs a multiplication on the result of a division:
-tBurn = (tLiquidity * totalFeesToBurn) / _liquidityFee (#920)
-rBurn = tBurn * currentRate (#921)
Consider ordering multiplication before division.

Additional information: link

Laika.manage_blacklist(address[],bool).i (#1112) is a local variable never initialized
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

Laika.addLiquidity(address,address,uint256,uint256) (#1175-1189) ignores return value by markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
Ensure that all the return values of the function calls are used.

Additional information: link

Laika.allowance(address,address)._owner (#674) shadows:
- Ownable._owner (#36) (state variable)
Laika._approve(address,address,uint256)._owner (#978) shadows:
- Ownable._owner (#36) (state variable)
Laika.addLiquidity(address,address,uint256,uint256).owner (#1177) shadows:
- Ownable.owner() (#50-52) (function)
Rename the local variables that shadow another component.

Additional information: link

Laika.setTaxFeePercent(uint256) (#751-755) should emit an event for:
- _taxFee = taxFee (#753)
- _previousTaxFee = _taxFee (#754)
Laika.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256) (#757-769) should emit an event for:
- _liquidityFee = totalBNBFee (#758)
- _previousLiquidityFee = _liquidityFee (#759)
- totalFeesToLP = _lpFee (#761)
- totalFeesToBurn = _burnFee (#763)
- sellBias = _sellbias (#765)
- previousSellBias = sellBias (#766)
Laika.setAmountToSell(uint256) (#771-773) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisor (#772)
Laika.updateGnosisGas(uint256) (#1107-1109) should emit an event for:
- gnosisGas = _amount (#1108)
Laika.setMaxTxPercent(uint256) (#1117-1120) should emit an event for:
- _maxTxAmount = maxTxAmount (#1119)
Laika.setMaxWalletPercent(uint256) (#1122-1125) should emit an event for:
- _maxWalletToken = maxWalletAmount (#1124)
Emit an event for critical parameter changes.

Additional information: link

Laika.constructor(address,address)._marketing (#573) lacks a zero-check on :
- marketingWallet = _marketing (#588)
Laika.constructor(address,address)._liquidity (#573) lacks a zero-check on :
- liquidityWallet = _liquidity (#589)
Laika.setMarketingWallet(address)._newAddress (#775) lacks a zero-check on :
- marketingWallet = _newAddress (#776)
Laika.setLiquidityWallet(address)._newAddress (#779) lacks a zero-check on :
- liquidityWallet = _newAddress (#780)
Check that the address is not zero.

Additional information: link

Laika.swapTokensForEth(address,uint256) (#1158-1173) has external calls inside a loop: path[1] = markets[pair].WETH() (#1164)
Laika.swapTokensForEth(address,uint256) (#1158-1173) has external calls inside a loop: markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
Laika.addLiquidity(address,address,uint256,uint256) (#1175-1189) has external calls inside a loop: markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
Laika.swapAndLiquify(address) (#1127-1156) has external calls inside a loop: (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
Laika._transfer(address,address,uint256) (#997-1027) has external calls inside a loop: antisnipe.onPreTransferCheck(from,to,amount) (#1025)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in Laika._transfer(address,address,uint256) (#997-1027):
External calls:
- swapAndLiquify(to) (#1014)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
External calls sending eth:
- swapAndLiquify(to) (#1014)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _previousLiquidityFee = _liquidityFee (#954)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _previousTaxFee = _taxFee (#953)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _tFeeTotal = _tFeeTotal + tFee (#823)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- _taxFee = _previousTaxFee (#963)
- _taxFee = 0 (#957)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- previousSellBias = sellBias (#955)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- sellBias = previousSellBias (#965)
- sellBias = 0 (#959)
Reentrancy in Laika.addMarket(address) (#807-816):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#809-812)
State variables written after the call(s):
- excludeFromReward(pair) (#815)
- _excluded.push(account) (#657)
- excludeFromReward(pair) (#815)
- _isExcludedFromRewards[account] = true (#656)
- excludeFromReward(pair) (#815)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#654)
- liquidityPools[pair] = true (#813)
- markets[pair] = router (#814)
Reentrancy in Laika.constructor(address,address) (#573-617):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#581-584)
State variables written after the call(s):
- _approve(address(this),routerAddress,_tTotal) (#609)
- _allowances[_owner][spender] = amount (#985)
- _approve(msg.sender,routerAddress,_tTotal) (#610)
- _allowances[_owner][spender] = amount (#985)
- _excluded.push(address(this)) (#597)
- _excluded.push(burnAddress) (#599)
- _excluded.push(msg.sender) (#601)
- _excluded.push(pancakePair) (#603)
- _isExcludedFromFee[owner()] = true (#606)
- _isExcludedFromFee[address(this)] = true (#607)
- _isExcludedFromRewards[address(this)] = true (#596)
- _isExcludedFromRewards[burnAddress] = true (#598)
- _isExcludedFromRewards[msg.sender] = true (#600)
- _isExcludedFromRewards[pancakePair] = true (#602)
- _liqProvWhitelist[msg.sender] = true (#592)
- _taxWhitelist[msg.sender] = true (#591)
- _taxWhitelist[_marketing] = true (#593)
- _taxWhitelist[address(this)] = true (#594)
- antisnipe = IAntiSnipe(0x8EFDb3b642eb2a20607ffe0A56CFefF6a95Df002) (#612)
- liquidityPools[pancakePair] = true (#585)
- liquidityWallet = _liquidity (#589)
- marketingWallet = _marketing (#588)
- markets[pancakePair] = pancakeRouter (#586)
Reentrancy in Laika.transferFrom(address,address,uint256) (#696-708):
External calls:
- _transfer(sender,recipient,amount) (#701)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
- antisnipe.onPreTransferCheck(from,to,amount) (#1025)
External calls sending eth:
- _transfer(sender,recipient,amount) (#701)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#702-706)
- _allowances[_owner][spender] = amount (#985)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Laika._transfer(address,address,uint256) (#997-1027):
External calls:
- swapAndLiquify(to) (#1014)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
External calls sending eth:
- swapAndLiquify(to) (#1014)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
Event emitted after the call(s):
- Transfer(address(this),burnAddress,tBurn) (#933)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
- Transfer(sender,recipient,tTransferAmount) (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#1022)
Reentrancy in Laika.constructor(address,address) (#573-617):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#581-584)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#986)
- _approve(msg.sender,routerAddress,_tTotal) (#610)
- Approval(_owner,spender,amount) (#986)
- _approve(address(this),routerAddress,_tTotal) (#609)
Reentrancy in Laika.constructor(address,address) (#573-617):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#581-584)
- antisnipe.setTokenOwner(msg.sender) (#614)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#616)
Reentrancy in Laika.swapAndLiquify(address) (#1127-1156):
External calls:
- swapTokensForEth(to,amountToSwap - tokensForLP) (#1135-1138)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1146)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
External calls sending eth:
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1146)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
Event emitted after the call(s):
- SwapAndLiquify(amountToSwap,deltaBalance,tokensForLP) (#1155)
Reentrancy in Laika.transferFrom(address,address,uint256) (#696-708):
External calls:
- _transfer(sender,recipient,amount) (#701)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1166-1172)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
- antisnipe.onPreTransferCheck(from,to,amount) (#1025)
External calls sending eth:
- _transfer(sender,recipient,amount) (#701)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1181-1188)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#986)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#702-706)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#155-165) uses assembly
- INLINE ASM (#161-163)
Address.verifyCallResult(bool,bytes,string) (#324-344) uses assembly
- INLINE ASM (#336-339)
Do not use evm assembly.

Additional information: link

Laika.includeInReward(address) (#660-671) has costly operations inside a loop:
- _excluded.pop() (#667)
Laika._transfer(address,address,uint256) (#997-1027) has costly operations inside a loop:
- liquidityLaunched = true (#1008)
Laika.swapping() (#566) has costly operations inside a loop:
- inSwap = true (#566)
Laika.swapping() (#566) has costly operations inside a loop:
- inSwap = false (#566)
Laika.removeAllFee() (#950-960) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#953)
Laika.removeAllFee() (#950-960) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#954)
Laika.removeAllFee() (#950-960) has costly operations inside a loop:
- previousSellBias = sellBias (#955)
Laika.removeAllFee() (#950-960) has costly operations inside a loop:
- _taxFee = 0 (#957)
Laika.removeAllFee() (#950-960) has costly operations inside a loop:
- _liquidityFee = 0 (#958)
Laika.removeAllFee() (#950-960) has costly operations inside a loop:
- sellBias = 0 (#959)
Laika._reflectFee(uint256,uint256) (#821-824) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#822)
Laika._reflectFee(uint256,uint256) (#821-824) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#823)
Laika.restoreAllFee() (#962-966) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#963)
Laika.restoreAllFee() (#962-966) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#964)
Laika.restoreAllFee() (#962-966) has costly operations inside a loop:
- sellBias = previousSellBias (#965)
Use a local variable to hold the loop computation result.

Additional information: link

Address.functionCall(address,bytes) (#208-210) is never used and should be removed
Address.functionCall(address,bytes,string) (#218-224) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#237-243) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#251-262) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#297-299) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#307-316) is never used and should be removed
Address.functionStaticCall(address,bytes) (#270-272) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#280-289) is never used and should be removed
Address.isContract(address) (#155-165) is never used and should be removed
Address.sendValue(address,uint256) (#183-188) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#324-344) is never used and should be removed
Context._msgData() (#18-20) is never used and should be removed
Remove unused functions.

Additional information: link

Laika._tTotal (#514) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000_000 * (10 ** _decimals)
Laika._rTotal (#515) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Laika._maxWalletToken (#517) is set pre-construction with a non-constant function or state variable:
- 30_000_000_000 * (10 ** _decimals)
Laika._maxTxAmount (#518) is set pre-construction with a non-constant function or state variable:
- 30_000_000_000 * (10 ** _decimals)
Laika._previousTaxFee (#530) is set pre-construction with a non-constant function or state variable:
- _taxFee
Laika.previousSellBias (#535) is set pre-construction with a non-constant function or state variable:
- sellBias
Laika._previousLiquidityFee (#538) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Laika.minTokenNumberToSell (#540) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1000
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

Pragma version^0.8.8 (#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#183-188):
- (success) = recipient.call{value: amount}() (#186)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#251-262):
- (success,returndata) = target.call{value: value}(data) (#260)
Low level call in Address.functionStaticCall(address,bytes,string) (#280-289):
- (success,returndata) = target.staticcall(data) (#287)
Low level call in Address.functionDelegateCall(address,bytes,string) (#307-316):
- (success,returndata) = target.delegatecall(data) (#314)
Low level call in Laika.swapAndLiquify(address) (#1127-1156):
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1151)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeRouter01.WETH() (#349) is not in mixedCase
Parameter Laika.setTeamMember(address,bool)._team (#640) is not in mixedCase
Parameter Laika.setTeamMember(address,bool)._enabled (#640) is not in mixedCase
Parameter Laika.allowance(address,address)._owner (#674) is not in mixedCase
Parameter Laika.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._marketingFee (#757) is not in mixedCase
Parameter Laika.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._lpFee (#757) is not in mixedCase
Parameter Laika.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._burnFee (#757) is not in mixedCase
Parameter Laika.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._sellbias (#757) is not in mixedCase
Parameter Laika.setAmountToSell(uint256)._divisor (#771) is not in mixedCase
Parameter Laika.setMarketingWallet(address)._newAddress (#775) is not in mixedCase
Parameter Laika.setLiquidityWallet(address)._newAddress (#779) is not in mixedCase
Parameter Laika.setLiqidityProviderWhitelisted(address,bool)._address (#783) is not in mixedCase
Parameter Laika.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#783) is not in mixedCase
Parameter Laika.getLPWhitelisted(address)._account (#793) is not in mixedCase
Parameter Laika.setSwapAndLiquifyEnabled(bool)._enabled (#797) is not in mixedCase
Parameter Laika.addMarket(address)._market (#807) is not in mixedCase
Function Laika._getRate() (#895-898) is not in mixedCase
Parameter Laika.calculateTaxFee(uint256,bool)._amount (#937) is not in mixedCase
Parameter Laika.calculateLiquidityFee(uint256,bool)._amount (#942) is not in mixedCase
Parameter Laika.activateLP(bool)._enabled (#972) is not in mixedCase
Parameter Laika.setProtection(IAntiSnipe)._protection (#989) is not in mixedCase
Parameter Laika.setProtection(bool)._enable (#993) is not in mixedCase
Parameter Laika.updateGnosisGas(uint256)._amount (#1107) is not in mixedCase
Function Laika.manage_blacklist(address[],bool) (#1111-1115) is not in mixedCase
Parameter Laika.airdrop(address[],uint256[])._addresses (#1191) is not in mixedCase
Parameter Laika.airdrop(address[],uint256[])._amount (#1191) is not in mixedCase
Variable Laika._maxWalletToken (#517) is not in mixedCase
Variable Laika._maxTxAmount (#518) is not in mixedCase
Variable Laika._taxFee (#529) is not in mixedCase
Variable Laika._liquidityFee (#537) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#354) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#355)
Variable Laika._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#891) is too similar to Laika._getTValues(uint256,bool).tTransferAmount (#870)
Variable Laika._getValues(uint256,bool).rTransferAmount (#843) is too similar to Laika._getTValues(uint256,bool).tTransferAmount (#870)
Variable Laika._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to Laika._getValues(uint256,bool).tTransferAmount (#839)
Variable Laika._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to Laika._transferStandard(address,address,uint256).tTransferAmount (#1071)
Variable Laika._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to Laika._getTValues(uint256,bool).tTransferAmount (#870)
Variable Laika._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#891) is too similar to Laika._getValues(uint256,bool).tTransferAmount (#839)
Variable Laika._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#891) is too similar to Laika._transferStandard(address,address,uint256).tTransferAmount (#1071)
Variable Laika._getValues(uint256,bool).rTransferAmount (#843) is too similar to Laika._transferStandard(address,address,uint256).tTransferAmount (#1071)
Variable Laika._getValues(uint256,bool).rTransferAmount (#843) is too similar to Laika._getValues(uint256,bool).tTransferAmount (#839)
Prevent variables from having similar names.

Additional information: link

Laika.slitherConstructorVariables() (#492-1206) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#522)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Laika._decimals (#497) should be constant
Laika._name (#495) should be constant
Laika._symbol (#496) should be constant
Laika.burnAddress (#522) should be constant
Laika.protectedFrom (#548) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#69-71)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#77-80)
name() should be declared external:
- Laika.name() (#619-621)
symbol() should be declared external:
- Laika.symbol() (#623-625)
decimals() should be declared external:
- Laika.decimals() (#627-629)
totalSupply() should be declared external:
- Laika.totalSupply() (#631-633)
isExcludedFromReward(address) should be declared external:
- Laika.isExcludedFromReward(address) (#644-646)
allowance(address,address) should be declared external:
- Laika.allowance(address,address) (#674-680)
totalFees() should be declared external:
- Laika.totalFees() (#682-684)
approve(address,uint256) should be declared external:
- Laika.approve(address,uint256) (#686-689)
transfer(address,uint256) should be declared external:
- Laika.transfer(address,uint256) (#691-694)
transferFrom(address,address,uint256) should be declared external:
- Laika.transferFrom(address,address,uint256) (#696-708)
increaseAllowance(address,uint256) should be declared external:
- Laika.increaseAllowance(address,uint256) (#710-721)
decreaseAllowance(address,uint256) should be declared external:
- Laika.decreaseAllowance(address,uint256) (#723-734)
setAccountWhitelisted(address,bool) should be declared external:
- Laika.setAccountWhitelisted(address,bool) (#746-749)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Laika.setSwapAndLiquifyEnabled(bool) (#797-800)
isWhitelisted(address) should be declared external:
- Laika.isWhitelisted(address) (#968-970)
excludeFromFee(address) should be declared external:
- Laika.excludeFromFee(address) (#1099-1101)
includeInFee(address) should be declared external:
- Laika.includeInFee(address) (#1103-1105)
manage_blacklist(address[],bool) should be declared external:
- Laika.manage_blacklist(address[],bool) (#1111-1115)
setMaxTxPercent(uint256) should be declared external:
- Laika.setMaxTxPercent(uint256) (#1117-1120)
setMaxWalletPercent(uint256) should be declared external:
- Laika.setMaxWalletPercent(uint256) (#1122-1125)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Holders:

Contract has 2% buy tax and 2% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for LAIKA