Live Crypto Party Token Logo

LCP [Live Crypto Party] Token

About LCP

Listings

Token 2 years
CoinMarketCap 23 months
[CoinMarketCap] alert: The ownership of the smart contract isn't renounced for the following asset, which means the owners are able to modify contract behavior (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise with extra caution if you are investing in this asset.
white paper

Party, Earn and Connect

Laser Scorebeta Last Audit: 13 October 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Reentrancy in LiveCryptoParty._transfer(address,address,uint256) (#357-386):
External calls:
- distributeAndLiquify(from,to) (#374)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#497-503)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#452)
- Utils.addLiquidity(address(dexRouter),owner(),otherPiece,bnbToBeAddedToLiquidity) (#466-471)
External calls sending eth:
- distributeAndLiquify(from,to) (#374)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#385)
- _balances[address(this)] = _balances[address(this)].add(_lpFee) (#414)
- _balances[sender] = _balances[sender].sub(amount) (#398)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#399)
- _balances[sender] = _balances[sender].sub(amount) (#404)
- _balances[recipient] = _balances[recipient].add(amount) (#405)
Apply the check-effects-interactions pattern.

Additional information: link

LiveCryptoParty.removeStuckToken(IBEP20,address,uint256) (#332-338) ignores return value by _token.transfer(_account,_amount) (#337)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Utils.addLiquidity(address,address,uint256,uint256) (#506-523) ignores return value by dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
Ensure that all the return values of the function calls are used.

Additional information: link

LiveCryptoParty.allowance(address,address).owner (#212) shadows:
- Ownable.owner() (#99-101) (function)
LiveCryptoParty._approve(address,address,uint256).owner (#346) shadows:
- Ownable.owner() (#99-101) (function)
Rename the local variables that shadow another component.

Additional information: link

LiveCryptoParty.setMinTokenToSwap(uint256) (#301-303) should emit an event for:
- minTokenToSwap = _amount (#302)
LiveCryptoParty.setLpFeePercent(uint256) (#305-307) should emit an event for:
- liquidityFee = _lpFee (#306)
Emit an event for critical parameter changes.

Additional information: link

LiveCryptoParty.setPancakeRouter(IDexRouter,address)._pair (#317) lacks a zero-check on :
- dexPair = _pair (#322)
LiveCryptoParty.removeStuckBnb(address,uint256)._account (#325) lacks a zero-check on :
- _account.transfer(_amount) (#329)
Check that the address is not zero.

Additional information: link

Reentrancy in LiveCryptoParty.transferFrom(address,address,uint256) (#230-245):
External calls:
- _transfer(sender,recipient,amount) (#235)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#497-503)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#452)
- Utils.addLiquidity(address(dexRouter),owner(),otherPiece,bnbToBeAddedToLiquidity) (#466-471)
External calls sending eth:
- _transfer(sender,recipient,amount) (#235)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,LCP: transfer amount exceeds allowance)) (#236-243)
- _allowances[owner][spender] = amount (#353)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LiveCryptoParty._transfer(address,address,uint256) (#357-386):
External calls:
- distributeAndLiquify(from,to) (#374)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#497-503)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#452)
- Utils.addLiquidity(address(dexRouter),owner(),otherPiece,bnbToBeAddedToLiquidity) (#466-471)
External calls sending eth:
- distributeAndLiquify(from,to) (#374)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
Event emitted after the call(s):
- Transfer(sender,address(this),_lpFee) (#416)
- _tokenTransfer(from,to,amount,takeFee) (#385)
- Transfer(sender,recipient,tTransferAmount) (#400)
- _tokenTransfer(from,to,amount,takeFee) (#385)
- Transfer(sender,recipient,amount) (#407)
- _tokenTransfer(from,to,amount,takeFee) (#385)
Reentrancy in LiveCryptoParty.distributeAndLiquify(address,address) (#419-479):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#452)
- Utils.addLiquidity(address(dexRouter),owner(),otherPiece,bnbToBeAddedToLiquidity) (#466-471)
Event emitted after the call(s):
- SwapAndLiquify(tokenAmountToBeSwapped,bnbToBeAddedToLiquidity,otherPiece) (#473-477)
Reentrancy in LiveCryptoParty.transferFrom(address,address,uint256) (#230-245):
External calls:
- _transfer(sender,recipient,amount) (#235)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#497-503)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#452)
- Utils.addLiquidity(address(dexRouter),owner(),otherPiece,bnbToBeAddedToLiquidity) (#466-471)
External calls sending eth:
- _transfer(sender,recipient,amount) (#235)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#515-522)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#354)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,LCP: transfer amount exceeds allowance)) (#236-243)
Apply the check-effects-interactions pattern.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#583-590) is never used and should be removed
Context._msgData() (#80-83) is never used and should be removed
SafeMath.mod(uint256,uint256) (#579-581) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.10 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
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

Function IDexRouter.WETH() (#48) is not in mixedCase
Parameter LiveCryptoParty.addToBlackList(address)._account (#283) is not in mixedCase
Parameter LiveCryptoParty.setDistributionStatus(bool)._value (#309) is not in mixedCase
Parameter LiveCryptoParty.removeFromBlackList(address)._account (#292) is not in mixedCase
Parameter LiveCryptoParty.setPancakeRouter(IDexRouter,address)._pair (#317) is not in mixedCase
Parameter LiveCryptoParty.setMinTokenToSwap(uint256)._amount (#301) is not in mixedCase
Parameter LiveCryptoParty.removeStuckToken(IBEP20,address,uint256)._amount (#335) is not in mixedCase
Parameter LiveCryptoParty.removeStuckToken(IBEP20,address,uint256)._token (#333) is not in mixedCase
Function LiveCryptoParty.EnableTrading(bool) (#297-299) is not in mixedCase
Variable LiveCryptoParty._isWhiteListed (#128) is not in mixedCase
Parameter LiveCryptoParty.enableOrDisableFees(bool)._value (#313) is not in mixedCase
Parameter LiveCryptoParty.removeStuckBnb(address,uint256)._account (#325) is not in mixedCase
Parameter LiveCryptoParty.removeStuckToken(IBEP20,address,uint256)._account (#334) is not in mixedCase
Parameter LiveCryptoParty.removeStuckBnb(address,uint256)._amount (#325) is not in mixedCase
Variable LiveCryptoParty._tradingOpen (#145) is not in mixedCase
Variable LiveCryptoParty._isBlackListed (#129) is not in mixedCase
Parameter LiveCryptoParty.setLpFeePercent(uint256)._lpFee (#305) is not in mixedCase
Parameter LiveCryptoParty.setPancakeRouter(IDexRouter,address)._router (#317) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#81)" inContext (#75-84)
Remove redundant statements if they congest code but offer no value.

Additional information: link

LiveCryptoParty._decimals (#134) should be constant
LiveCryptoParty._symbol (#133) should be constant
LiveCryptoParty._totalSupply (#135) should be constant
LiveCryptoParty._name (#132) should be constant
LiveCryptoParty.percentDivider (#141) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#108-111)
symbol() should be declared external:
- LiveCryptoParty.symbol() (#187-189)
decreaseAllowance(address,uint256) should be declared external:
- LiveCryptoParty.decreaseAllowance(address,uint256) (#260-274)
increaseAllowance(address,uint256) should be declared external:
- LiveCryptoParty.increaseAllowance(address,uint256) (#247-258)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#113-120)
allowance(address,address) should be declared external:
- LiveCryptoParty.allowance(address,address) (#212-219)
decimals() should be declared external:
- LiveCryptoParty.decimals() (#191-193)
totalSupply() should be declared external:
- LiveCryptoParty.totalSupply() (#195-197)
approve(address,uint256) should be declared external:
- LiveCryptoParty.approve(address,uint256) (#221-228)
name() should be declared external:
- LiveCryptoParty.name() (#183-185)
setDistributionStatus(bool) should be declared external:
- LiveCryptoParty.setDistributionStatus(bool) (#309-311)
transfer(address,uint256) should be declared external:
- LiveCryptoParty.transfer(address,uint256) (#203-210)
transferFrom(address,address,uint256) should be declared external:
- LiveCryptoParty.transferFrom(address,address,uint256) (#230-245)
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:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume 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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair

No disclosed threats


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find KYC or doxxing proof


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for LCP

News for LCP