LamaInu Token Logo

LINU [LamaInu] Token

About LINU

Listings

Not Found
Token 18 months

Lama Inu token ($LINU) is a decentralized community-based BEP-20 Cryptocurrency token on Binance Smart Chain. We are determine to set a name for Lama Inu to be the loudest community by using our experience and influencers connection. We focus on brand and value as our plan is to focus on our community and build a strong foundation around our token holders.

Social

Laser Scorebeta Last Audit: 7 June 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

LamaInu.swapBack() (#682-732) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LamaInu._transferFrom(address,address,uint256) (#532-583):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#695-701)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
External calls sending eth:
- swapBack() (#562)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#565)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#568)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#567)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#616)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#343-354) ignores return value by RWRD.transfer(shareholder,amount) (#349)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


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

LamaInu.swapBack().tmpSuccess (#714) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
(tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
LamaInu.swapBack().tmpSuccess (#714) is written in both
(tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
(tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
LamaInu.swapBack().tmpSuccess (#714) is written in both
(tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
tmpSuccess = false (#719)
Fix or remove the writes.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. 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)

LamaInu.takeFee(address,uint256,bool) (#603-620) performs a multiplication on the result of a division:
-feeAmount = amount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#610)
LamaInu.takeFee(address,uint256,bool) (#603-620) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#613)
LamaInu.swapBack() (#682-732) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#686)
LamaInu.setSwapBackSettings(bool,uint256) (#779-782) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply.div(10000).mul(_percentage_base10000) (#781)
LamaInu.setMaxWalletPercent_base1000(uint256) (#860-862) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply.div(1000).mul(maxWallPercent_base1000) (#861)
LamaInu.setMaxTxPercent_base1000(uint256) (#864-866) performs a multiplication on the result of a division:
-_maxTxAmount = _totalSupply.div(1000).mul(maxTXPercentage_base1000) (#865)
LamaInu.slitherConstructorVariables() (#387-923) performs a multiplication on the result of a division:
-_maxTxAmount = _totalSupply.div(1000).mul(10) (#464)
LamaInu.slitherConstructorVariables() (#387-923) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply.div(1000).mul(10) (#465)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#343-354):
External calls:
- RWRD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#351)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#352)
Reentrancy in DividendDistributor.process(uint256) (#312-336):
External calls:
- distributeDividend(shareholders[currentIndex]) (#328)
- RWRD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- currentIndex ++ (#333)
Reentrancy in DividendDistributor.setShare(address,uint256) (#276-290):
External calls:
- distributeDividend(shareholder) (#278)
- RWRD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shares[shareholder].amount = amount (#288)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#289)
Apply the check-effects-interactions pattern.

Additional information: link

LamaInu.manage_houseguests(address[],bool).i (#671) 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

LamaInu.swapBack() (#682-732) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
Ensure that all the return values of the function calls are used.

Additional information: link

LamaInu.setMaster(address) (#802-804) should emit an event for:
- master = _master (#803)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#271-274) should emit an event for:
- minPeriod = _minPeriod (#272)
- minDistribution = _minDistribution (#273)
LamaInu.set_sell_multiplier(uint256) (#643-645) should emit an event for:
- sellMultiplier = Multiplier (#644)
LamaInu.tradingStatus(bool,uint256) (#649-655) should emit an event for:
- deadBlocks = _deadBlocks (#653)
LamaInu.launchStatus(uint256) (#657-659) should emit an event for:
- launchedAt = _launchblock (#658)
LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#758-767) should emit an event for:
- liquidityFee = _liquidityFee (#759)
- reflectionFee = _reflectionFee (#760)
- marketingFee = _marketingFee (#761)
- buyBackFee = _buyBackFee (#762)
- ecoFee = _ecoFee (#763)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_buyBackFee).add(_ecoFee) (#764)
- feeDenominator = _feeDenominator (#765)
LamaInu.setSwapBackSettings(bool,uint256) (#779-782) should emit an event for:
- swapThreshold = _totalSupply.div(10000).mul(_percentage_base10000) (#781)
LamaInu.setTargetLiquidity(uint256,uint256) (#785-788) should emit an event for:
- targetLiquidity = _target (#786)
- targetLiquidityDenominator = _denominator (#787)
LamaInu.setMaxWalletPercent_base1000(uint256) (#860-862) should emit an event for:
- _maxWalletToken = _totalSupply.div(1000).mul(maxWallPercent_base1000) (#861)
LamaInu.setMaxTxPercent_base1000(uint256) (#864-866) should emit an event for:
- _maxTxAmount = _totalSupply.div(1000).mul(maxTXPercentage_base1000) (#865)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#149) lacks a zero-check on :
- owner = adr (#150)
LamaInu.clearStuckBalanceX(uint256,address).adr (#638) lacks a zero-check on :
- address(adr).transfer(amountBNB * amountPercentage / 100) (#640)
LamaInu.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#770) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#771)
LamaInu.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#770) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#772)
LamaInu.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (#770) lacks a zero-check on :
- buyBackFeeReceiver = _buyBackFeeReceiver (#773)
LamaInu.setFeeReceivers(address,address,address,address)._ecoFeeReceiver (#770) lacks a zero-check on :
- ecoFeeReceiver = _ecoFeeReceiver (#774)
LamaInu.setMaster(address)._master (#802) lacks a zero-check on :
- master = _master (#803)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#343-354) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#349)
LamaInu.multiTransfer(address,address[],uint256[]) (#872-896) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#888)
LamaInu.multiTransfer_fixed(address,address[],uint256) (#898-917) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#909)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in LamaInu.constructor() (#467-494):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#469)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#470)
- _balances[msg.sender] = _totalSupply (#492)
- autoLiquidityReceiver = 0xA17311F26a4e62dfc0682d5edE769610B132086F (#487)
- buyBackFeeReceiver = 0xA17311F26a4e62dfc0682d5edE769610B132086F (#489)
- distributor = new DividendDistributor(address(router)) (#474)
- ecoFeeReceiver = 0xA17311F26a4e62dfc0682d5edE769610B132086F (#490)
- isDividendExempt[pair] = true (#483)
- isDividendExempt[address(this)] = true (#484)
- isDividendExempt[DEAD] = true (#485)
- isFeeExempt[msg.sender] = true (#476)
- isTimelockExempt[msg.sender] = true (#479)
- isTimelockExempt[DEAD] = true (#480)
- isTimelockExempt[address(this)] = true (#481)
- isTxLimitExempt[msg.sender] = true (#477)
- marketingFeeReceiver = 0xA17311F26a4e62dfc0682d5edE769610B132086F (#488)
- pairContract = InterfaceLP(pair) (#472)
Reentrancy in DividendDistributor.deposit() (#292-310):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#299-304)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#309)
- totalDividends = totalDividends.add(amount) (#308)
Reentrancy in DividendDistributor.distributeDividend(address) (#343-354):
External calls:
- RWRD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#350)
Reentrancy in DividendDistributor.setShare(address,uint256) (#276-290):
External calls:
- distributeDividend(shareholder) (#278)
- RWRD.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- addShareholder(shareholder) (#282)
- shareholderIndexes[shareholder] = shareholders.length (#376)
- removeShareholder(shareholder) (#284)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#382)
- addShareholder(shareholder) (#282)
- shareholders.push(shareholder) (#377)
- removeShareholder(shareholder) (#284)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#381)
- shareholders.pop() (#383)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#287)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LamaInu._transferFrom(address,address,uint256) (#532-583):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#695-701)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
- distributor.setShare(sender,balanceOf(sender)) (#572)
- distributor.setShare(recipient,balanceOf(recipient)) (#576)
- distributor.process(distributorGas) (#579)
External calls sending eth:
- swapBack() (#562)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#581)
Reentrancy in LamaInu._transferFrom(address,address,uint256) (#532-583):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#695-701)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
External calls sending eth:
- swapBack() (#562)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#617)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#567)
Reentrancy in LamaInu.constructor() (#467-494):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#469)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#493)
Reentrancy in LamaInu.swapBack() (#682-732):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#695-701)
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#713)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#722-729)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#730)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#338-341) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#339-340)
LamaInu._transferFrom(address,address,uint256) (#532-583) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#546)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#312-336) has costly operations inside a loop:
- currentIndex = 0 (#324)
DividendDistributor.distributeDividend(address) (#343-354) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#348)
DividendDistributor.process(uint256) (#312-336) has costly operations inside a loop:
- currentIndex ++ (#333)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.abs(int256) (#92-95) is never used and should be removed
SafeMathInt.add(int256,int256) (#86-90) is never used and should be removed
SafeMathInt.div(int256,int256) (#74-78) is never used and should be removed
SafeMathInt.mul(int256,int256) (#66-72) is never used and should be removed
SafeMathInt.sub(int256,int256) (#80-84) is never used and should be removed
Remove unused functions.

Additional information: link

LamaInu.totalFee (#413) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + buyBackFee + ecoFee
LamaInu.swapThreshold (#460) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 50 / 10000
LamaInu._maxTxAmount (#464) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1000).mul(10)
LamaInu._maxWalletToken (#465) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1000).mul(10)
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.7.4 (#24) allows old versions
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 LamaInu.swapBack() (#682-732):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#714)
- (tmpSuccess,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#715)
- (tmpSuccess,None) = address(ecoFeeReceiver).call{gas: 30000,value: amountBNBEco}() (#716)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#168) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#271) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#271) is not in mixedCase
Variable DividendDistributor._token (#224) is not in mixedCase
Variable DividendDistributor.RWRD (#232) is not in mixedCase
Variable DividendDistributor.WBNB (#233) is not in mixedCase
Function LamaInu.clearStuckBalance_sender(uint256) (#633-636) is not in mixedCase
Function LamaInu.set_sell_multiplier(uint256) (#643-645) is not in mixedCase
Parameter LamaInu.set_sell_multiplier(uint256).Multiplier (#643) is not in mixedCase
Parameter LamaInu.tradingStatus(bool,uint256)._status (#649) is not in mixedCase
Parameter LamaInu.tradingStatus(bool,uint256)._deadBlocks (#649) is not in mixedCase
Parameter LamaInu.launchStatus(uint256)._launchblock (#657) is not in mixedCase
Function LamaInu.enable_hotel_CaliforniaMode(bool) (#662-664) is not in mixedCase
Parameter LamaInu.enable_hotel_CaliforniaMode(bool)._status (#662) is not in mixedCase
Function LamaInu.set_max_roomrent(uint256) (#666-668) is not in mixedCase
Parameter LamaInu.set_max_roomrent(uint256)._rent_withoutdecimal (#666) is not in mixedCase
Function LamaInu.manage_houseguests(address[],bool) (#670-674) is not in mixedCase
Parameter LamaInu.cooldownEnabled(bool,uint8)._status (#676) is not in mixedCase
Parameter LamaInu.cooldownEnabled(bool,uint8)._interval (#676) is not in mixedCase
Parameter LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#758) is not in mixedCase
Parameter LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#758) is not in mixedCase
Parameter LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#758) is not in mixedCase
Parameter LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._buyBackFee (#758) is not in mixedCase
Parameter LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecoFee (#758) is not in mixedCase
Parameter LamaInu.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#758) is not in mixedCase
Parameter LamaInu.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#770) is not in mixedCase
Parameter LamaInu.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#770) is not in mixedCase
Parameter LamaInu.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (#770) is not in mixedCase
Parameter LamaInu.setFeeReceivers(address,address,address,address)._ecoFeeReceiver (#770) is not in mixedCase
Parameter LamaInu.setSwapBackSettings(bool,uint256)._enabled (#779) is not in mixedCase
Parameter LamaInu.setSwapBackSettings(bool,uint256)._percentage_base10000 (#779) is not in mixedCase
Parameter LamaInu.setTargetLiquidity(uint256,uint256)._target (#785) is not in mixedCase
Parameter LamaInu.setTargetLiquidity(uint256,uint256)._denominator (#785) is not in mixedCase
Parameter LamaInu.setLP(address)._address (#795) is not in mixedCase
Parameter LamaInu.setMaster(address)._master (#802) is not in mixedCase
Parameter LamaInu.setDistributionCriteria(uint256,uint256)._minPeriod (#819) is not in mixedCase
Parameter LamaInu.setDistributionCriteria(uint256,uint256)._minDistribution (#819) is not in mixedCase
Function LamaInu.setMaxWalletPercent_base1000(uint256) (#860-862) is not in mixedCase
Parameter LamaInu.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#860) is not in mixedCase
Function LamaInu.setMaxTxPercent_base1000(uint256) (#864-866) is not in mixedCase
Parameter LamaInu.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#864) is not in mixedCase
Function LamaInu.multiTransfer_fixed(address,address[],uint256) (#898-917) is not in mixedCase
Variable LamaInu.WBNB (#391) is not in mixedCase
Variable LamaInu.DEAD (#392) is not in mixedCase
Variable LamaInu.ZERO (#393) is not in mixedCase
Constant LamaInu._name (#395) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LamaInu._symbol (#396) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LamaInu._decimals (#397) is not in UPPER_CASE_WITH_UNDERSCORES
Variable LamaInu._balances (#400) is not in mixedCase
Variable LamaInu._allowances (#401) is not in mixedCase
Variable LamaInu._totalSupply (#459) is not in mixedCase
Variable LamaInu._maxTxAmount (#464) is not in mixedCase
Variable LamaInu._maxWalletToken (#465) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#173) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#174)
Prevent variables from having similar names.

Additional information: link

LamaInu.setDistributorSettings(uint256) (#825-828) uses literals with too many digits:
- require(bool)(gas < 900000) (#826)
LamaInu.slitherConstructorVariables() (#387-923) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#392)
LamaInu.slitherConstructorVariables() (#387-923) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#393)
LamaInu.slitherConstructorVariables() (#387-923) uses literals with too many digits:
- maxRoomRent = 50000000000 (#417)
LamaInu.slitherConstructorVariables() (#387-923) uses literals with too many digits:
- distributorGas = 500000 (#441)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#64) is never used in SafeMathInt (#62-96)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#233) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#246) should be constant
LamaInu.DEAD (#392) should be constant
LamaInu.WBNB (#391) should be constant
LamaInu.ZERO (#393) should be constant
LamaInu._totalSupply (#459) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#133-135)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#137-139)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#149-153)
tradingStatus(bool,uint256) should be declared external:
- LamaInu.tradingStatus(bool,uint256) (#649-655)
launchStatus(uint256) should be declared external:
- LamaInu.launchStatus(uint256) (#657-659)
enable_hotel_CaliforniaMode(bool) should be declared external:
- LamaInu.enable_hotel_CaliforniaMode(bool) (#662-664)
set_max_roomrent(uint256) should be declared external:
- LamaInu.set_max_roomrent(uint256) (#666-668)
manage_houseguests(address[],bool) should be declared external:
- LamaInu.manage_houseguests(address[],bool) (#670-674)
cooldownEnabled(bool,uint8) should be declared external:
- LamaInu.cooldownEnabled(bool,uint8) (#676-679)
rescueToken(address,uint256) should be declared external:
- LamaInu.rescueToken(address,uint256) (#832-834)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 6% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity 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 LINU