longzhou Token Logo

longzhou Token

ALERT: potential scam

About longzhou

Listings

Token 2 years

项目资料 送钱
龙舟doge🐶
龙舟狗发行总量一万亿
😎200bnb pink预售
😎预售开盘直接高开一倍 挑战一切不可能
😎max0.1-1bnb 400白名单 手慢预售秒结束
😎买入0卖出0 0税盘子 项目方大格局
营销计划:
✅实力强大的团队及公司背书
✅开盘即申请CG、CMC
✅各大顶级电报置顶宣发
✅海外大V宣发(币安日报/新闻等)
✅高质量微信社区喊单
✅MSG/AVE热搜💯
✅强有力的地推团队

Social

Not Found

Laser Scorebeta Last Audit: 26 May 2022

report
Token seems to be a scam (type: potential scam).

Anti-Scam

Links

longzhou.addLiquidity(uint256,uint256) (#783-796) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in longzhou._transfer(address,address,uint256) (#676-730):
External calls:
- swapAndLiquify(contractTokenBalance) (#704)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#704)
- recipient.transfer(amount) (#624)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#707)
- finalAmount = takeFee(sender,recipient,amount) (#718)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#810)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#724)
- addBot(recipient) (#715)
- _isbclisted[recipient] = true (#665)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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.

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#212) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#213) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#229) is not in mixedCase
Function IUniswapV2Router01.WETH() (#248) is not in mixedCase
Contract longzhou (#381-818) is not in CapWords
Function longzhou.Launch() (#541-544) is not in mixedCase
Parameter longzhou.setSwapAndLiquifyEnabled(bool)._enabled (#610) is not in mixedCase
Variable longzhou._balances (#397) is not in mixedCase
Variable longzhou._totalTaxIfBuying (#420) is not in mixedCase
Variable longzhou._totalTaxIfSelling (#421) is not in mixedCase
Variable longzhou._totalDistributionShares (#422) is not in mixedCase
Variable longzhou._maxTxAmount (#425) is not in mixedCase
Variable longzhou._walletMax (#426) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#15)" inContext (#8-18)
Remove redundant statements if they congest code but offer no value.

Additional information: link

longzhou._transfer(address,address,uint256) (#676-730) performs a multiplication on the result of a division:
-_sellReserveFeeAmount = amount.div(100).mul(_sellReserveFee) (#689)
Consider ordering multiplication before division.

Additional information: link

longzhou.addLiquidity(uint256,uint256) (#783-796) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
Ensure that all the return values of the function calls are used.

Additional information: link

longzhou.allowance(address,address).owner (#510) shadows:
- Ownable.owner() (#155-157) (function)
longzhou._approve(address,address,uint256).owner (#533) shadows:
- Ownable.owner() (#155-157) (function)
Rename the local variables that shadow another component.

Additional information: link

longzhou.setBuyTaxes(uint256,uint256,uint256) (#558-564) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#563)
longzhou.setSellTaxes(uint256,uint256,uint256) (#566-572) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#571)
longzhou.setDistributionSettings(uint256,uint256,uint256) (#574-580) should emit an event for:
- _liquidityShare = newLiquidityShare (#575)
- _teamShare = newTeamShare (#577)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#579)
longzhou.setMaxTxAmount(uint256) (#582-584) should emit an event for:
- _maxTxAmount = maxTxAmount (#583)
longzhou.setWalletLimit(uint256) (#594-596) should emit an event for:
- _walletMax = newLimit (#595)
longzhou.setNumTokensBeforeSwap(uint256) (#598-600) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#599)
longzhou.setKillBlock(uint256) (#668-670) should emit an event for:
- killblock = num (#669)
Emit an event for critical parameter changes.

Additional information: link

longzhou.setMarketingWalletAddress(address).newAddress (#602) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#603)
longzhou.setTeamWalletAddress(address).newAddress (#606) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#607)
Check that the address is not zero.

Additional information: link

Reentrancy in longzhou.changeRouterVersion(address) (#627-644):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#635-636)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#643)
- isWalletLimitExempt[address(uniswapPair)] = true (#642)
- uniswapPair = newPairAddress (#639)
- uniswapV2Router = _uniswapV2Router (#640)
Reentrancy in longzhou.constructor() (#460-488):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#464-465)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#468)
- _balances[_msgSender()] = _totalSupply (#486)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#475)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#473)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#474)
- isExcludedFromFee[owner()] = true (#470)
- isExcludedFromFee[address(this)] = true (#471)
- isMarketPair[address(uniswapPair)] = true (#484)
- isTxLimitExempt[owner()] = true (#481)
- isTxLimitExempt[address(this)] = true (#482)
- isWalletLimitExempt[owner()] = true (#477)
- isWalletLimitExempt[address(uniswapPair)] = true (#478)
- isWalletLimitExempt[address(this)] = true (#479)
- uniswapV2Router = _uniswapV2Router (#467)
Reentrancy in longzhou.swapAndLiquify(uint256) (#739-761):
External calls:
- swapTokensForEth(tokensForSwap) (#744)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#754)
- recipient.transfer(amount) (#624)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#757)
- recipient.transfer(amount) (#624)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- _allowances[owner][spender] = amount (#537)
Reentrancy in longzhou.transferFrom(address,address,uint256) (#654-658):
External calls:
- _transfer(sender,recipient,amount) (#655)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#655)
- recipient.transfer(amount) (#624)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#656)
- _allowances[owner][spender] = amount (#537)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in longzhou._transfer(address,address,uint256) (#676-730):
External calls:
- swapAndLiquify(contractTokenBalance) (#704)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#704)
- recipient.transfer(amount) (#624)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#811)
- finalAmount = takeFee(sender,recipient,amount) (#718)
- Transfer(sender,recipient,finalAmount) (#726)
Reentrancy in longzhou.constructor() (#460-488):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#464-465)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#487)
Reentrancy in longzhou.swapAndLiquify(uint256) (#739-761):
External calls:
- swapTokensForEth(tokensForSwap) (#744)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#754)
- recipient.transfer(amount) (#624)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#757)
- recipient.transfer(amount) (#624)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
Reentrancy in longzhou.swapTokensForEth(uint256) (#763-781):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#780)
Reentrancy in longzhou.transferFrom(address,address,uint256) (#654-658):
External calls:
- _transfer(sender,recipient,amount) (#655)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#655)
- recipient.transfer(amount) (#624)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#656)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#123-140) uses assembly
- INLINE ASM (#132-135)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#123-140) is never used and should be removed
Address.functionCall(address,bytes) (#106-108) is never used and should be removed
Address.functionCall(address,bytes,string) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#118-121) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
Context._msgData() (#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.

Additional information: link

longzhou._totalSupply (#424) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
longzhou._maxTxAmount (#425) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
longzhou._walletMax (#426) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
longzhou.minimumTokensBeforeSwap (#427) is set pre-construction with a non-constant function or state variable:
- 100000 * 3 ** _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

solc-0.8.9 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

Low level call in Address.sendValue(address,uint256) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#123-140):
- (success,returndata) = target.call{value: weiValue}(data) (#126)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in longzhou._transfer(address,address,uint256) (#676-730):
External calls:
- swapAndLiquify(contractTokenBalance) (#704)
- recipient.transfer(amount) (#624)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#704)
- recipient.transfer(amount) (#624)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#707)
- finalAmount = takeFee(sender,recipient,amount) (#718)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#810)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#724)
- addBot(recipient) (#715)
- _isbclisted[recipient] = true (#665)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#811)
- finalAmount = takeFee(sender,recipient,amount) (#718)
- Transfer(sender,recipient,finalAmount) (#726)
Reentrancy in longzhou.swapAndLiquify(uint256) (#739-761):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#754)
- recipient.transfer(amount) (#624)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#757)
- recipient.transfer(amount) (#624)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#754)
- recipient.transfer(amount) (#624)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#757)
- recipient.transfer(amount) (#624)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
- _allowances[owner][spender] = amount (#537)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#538)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#760)
Reentrancy in longzhou.transferFrom(address,address,uint256) (#654-658):
External calls:
- _transfer(sender,recipient,amount) (#655)
- recipient.transfer(amount) (#624)
External calls sending eth:
- _transfer(sender,recipient,amount) (#655)
- recipient.transfer(amount) (#624)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#788-795)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#656)
- _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)) (#656)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#253) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#254)
Prevent variables from having similar names.

Additional information: link

longzhou.slitherConstructorVariables() (#381-818) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#395)
longzhou.slitherConstructorVariables() (#381-818) uses literals with too many digits:
- _totalSupply = 100000000 * 10 ** _decimals (#424)
longzhou.slitherConstructorVariables() (#381-818) uses literals with too many digits:
- _maxTxAmount = 100000000 * 10 ** _decimals (#425)
longzhou.slitherConstructorVariables() (#381-818) uses literals with too many digits:
- _walletMax = 100000000 * 10 ** _decimals (#426)
longzhou.slitherConstructorVariables() (#381-818) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000 * 3 ** _decimals (#427)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#145) is never used in longzhou (#381-818)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#145) should be constant
longzhou._decimals (#388) should be constant
longzhou._name (#386) should be constant
longzhou._sellReserveFee (#414) should be constant
longzhou._symbol (#387) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#164-167)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#169-173)
getTime() should be declared external:
- Ownable.getTime() (#175-177)
name() should be declared external:
- longzhou.name() (#490-492)
symbol() should be declared external:
- longzhou.symbol() (#494-496)
decimals() should be declared external:
- longzhou.decimals() (#498-500)
totalSupply() should be declared external:
- longzhou.totalSupply() (#502-504)
allowance(address,address) should be declared external:
- longzhou.allowance(address,address) (#510-512)
increaseAllowance(address,uint256) should be declared external:
- longzhou.increaseAllowance(address,uint256) (#514-517)
decreaseAllowance(address,uint256) should be declared external:
- longzhou.decreaseAllowance(address,uint256) (#519-522)
minimumTokensBeforeSwapAmount() should be declared external:
- longzhou.minimumTokensBeforeSwapAmount() (#524-526)
approve(address,uint256) should be declared external:
- longzhou.approve(address,uint256) (#528-531)
Launch() should be declared external:
- longzhou.Launch() (#541-544)
setMarketPairStatus(address,bool) should be declared external:
- longzhou.setMarketPairStatus(address,bool) (#546-548)
setIsExcludedFromFee(address,bool) should be declared external:
- longzhou.setIsExcludedFromFee(address,bool) (#554-556)
setSwapAndLiquifyEnabled(bool) should be declared external:
- longzhou.setSwapAndLiquifyEnabled(bool) (#610-613)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- longzhou.setSwapAndLiquifyByLimitOnly(bool) (#615-617)
getCirculatingSupply() should be declared external:
- longzhou.getCirculatingSupply() (#619-621)
changeRouterVersion(address) should be declared external:
- longzhou.changeRouterVersion(address) (#627-644)
transfer(address,uint256) should be declared external:
- longzhou.transfer(address,uint256) (#649-652)
transferFrom(address,address,uint256) should be declared external:
- longzhou.transferFrom(address,address,uint256) (#654-658)
isbcList(address) should be declared external:
- longzhou.isbcList(address) (#660-662)
setKillBlock(uint256) should be declared external:
- longzhou.setKillBlock(uint256) (#668-670)
writebcList(address,bool) should be declared external:
- longzhou.writebcList(address,bool) (#672-674)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Telegram and Twitter accounts


BscScan page for the token does not contain additional info: website, socials, description, etc.

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 that token and website are owned by the same team (no listings + unable to find contract on website)


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 CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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 scam / price dump / death


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 longzhou