Private Land Token Logo

PLAND [Private Land] Token

About PLAND

Listings

Token 24 months

Website

white paper

PRIVATELAND is The Best and The Most Comprehensive Ultra Realistic Land and Property Metaverse platform powered by the binance smartchain BEP20 blockchain.
Likewise with land, we made a system for land prices to increase automatically every minute.

✅Audit ✅NFT Marketplace ✅Metaverse✅VR✅WEB 3.0 ✅Exchange ✅Staking ✅Launchpad

Social

Laser Scorebeta Last Audit: 13 October 2022

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

Reentrancy in PrivateLand._transfer(address,address,uint256) (#479-516):
External calls:
- swapAndLiquify(contractTokenBalance) (#497)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#562-568)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#497)
- wallet.transfer(amount) (#519)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- _tOwned[sender] = _tOwned[sender] - tAmount (#591)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#592)
- _tOwned[sender] = _tOwned[sender] - tAmount (#603)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#604)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#605)
- _tOwned[sender] = _tOwned[sender] - tAmount (#616)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#617)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#618)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- _tTotal = _tTotal - tAmount (#596)
- _tTotal = _tTotal - tTransferAmount (#609)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#622)
- txCount ++ (#510)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Low level call in Address.functionStaticCall(address,bytes,string) (#102-106):
- (success,returndata) = target.staticcall(data) (#104)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#91-96):
- (success,returndata) = target.call{value: value}(data) (#94)
Low level call in Address.functionDelegateCall(address,bytes,string) (#113-117):
- (success,returndata) = target.delegatecall(data) (#115)
Low level call in Address.sendValue(address,uint256) (#73-77):
- (success) = recipient.call{value: amount}() (#75)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

PrivateLand.swapAndLiquify(uint256) (#524-554) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / ((Percent_AutoLP / 2) + Percent_Game + Percent_Dev) (#542)
-BNB_D = BNB_Total * split_D / 100 (#543)
PrivateLand.swapAndLiquify(uint256) (#524-554) performs a multiplication on the result of a division:
-split_M = Percent_Game * 100 / ((Percent_AutoLP / 2) + Percent_Game + Percent_Dev) (#539)
-BNB_M = BNB_Total * split_M / 100 (#540)
Consider ordering multiplication before division.

Additional information: link

PrivateLand._transfer(address,address,uint256).isBuy (#501) 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

PrivateLand.addLiquidity(uint256,uint256) (#572-583) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
Ensure that all the return values of the function calls are used.

Additional information: link

PrivateLand.setBuyTax(uint256) (#628-631) should emit an event for:
- _Tax_On_Buy = buyTax (#630)
PrivateLand.setSwapTrigger(uint8) (#636-638) should emit an event for:
- swapTrigger = swapTrig (#637)
PrivateLand.setSellTax(uint256) (#632-635) should emit an event for:
- _Tax_On_Sell = sellTax (#634)
Emit an event for critical parameter changes.

Additional information: link

PrivateLand.setMarketingAddress(address)._marketingAddress (#642) lacks a zero-check on :
- Wallet_Dev = address(_marketingAddress) (#643)
PrivateLand.setGameAddress(address)._gameAddress (#639) lacks a zero-check on :
- Wallet_Game = address(_gameAddress) (#640)
Check that the address is not zero.

Additional information: link

Reentrancy in PrivateLand.swapAndLiquify(uint256) (#524-554):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#536)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#562-568)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#546)
- _allowances[theOwner][theSpender] = amount (#474)
Reentrancy in PrivateLand.transferFrom(address,address,uint256) (#453-457):
External calls:
- _transfer(sender,recipient,amount) (#454)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#562-568)
External calls sending eth:
- _transfer(sender,recipient,amount) (#454)
- wallet.transfer(amount) (#519)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#455)
- _allowances[theOwner][theSpender] = amount (#474)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PrivateLand.transferFrom(address,address,uint256) (#453-457):
External calls:
- _transfer(sender,recipient,amount) (#454)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#562-568)
External calls sending eth:
- _transfer(sender,recipient,amount) (#454)
- wallet.transfer(amount) (#519)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#475)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#455)
Reentrancy in PrivateLand.swapAndLiquify(uint256) (#524-554):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#536)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#562-568)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#546)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#475)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#546)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#547)
Reentrancy in PrivateLand._transfer(address,address,uint256) (#479-516):
External calls:
- swapAndLiquify(contractTokenBalance) (#497)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#562-568)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#497)
- wallet.transfer(amount) (#519)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#593)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- Transfer(sender,recipient,tTransferAmount) (#606)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#619)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#67-71) uses assembly
- INLINE ASM (#69)
Address._verifyCallResult(bool,bytes,string) (#119-132) uses assembly
- INLINE ASM (#124-127)
Do not use evm assembly.

Additional information: link

SafeMath.mul(uint256,uint256) (#28-30) is never used and should be removed
SafeMath.sub(uint256,uint256) (#24-26) is never used and should be removed
Address.sendValue(address,uint256) (#73-77) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#87-89) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#113-117) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#91-96) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#43-48) is never used and should be removed
Context._msgData() (#58-61) is never used and should be removed
Address.functionStaticCall(address,bytes) (#98-100) is never used and should be removed
SafeMath.div(uint256,uint256) (#32-34) is never used and should be removed
Address._verifyCallResult(bool,bytes,string) (#119-132) is never used and should be removed
Address.isContract(address) (#67-71) is never used and should be removed
Address.functionCall(address,bytes,string) (#83-85) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#102-106) is never used and should be removed
Address.functionCall(address,bytes) (#79-81) is never used and should be removed
Remove unused functions.

Additional information: link

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

Constant PrivateLand._symbol (#365) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PrivateLand.Wallet_Burn (#360) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PrivateLand.Percent_Dev (#374) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PrivateLand._Tax_On_Sell (#371) is not in mixedCase
Constant PrivateLand.Percent_AutoLP (#376) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PrivateLand.Wallet_Game (#358) is not in mixedCase
Parameter PrivateLand.setGameAddress(address)._gameAddress (#639) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#162) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#175) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#161) is not in mixedCase
Variable PrivateLand.Wallet_Dev (#359) is not in mixedCase
Constant PrivateLand.Percent_Burn (#375) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter PrivateLand.setMarketingAddress(address)._marketingAddress (#642) is not in mixedCase
Constant PrivateLand._name (#364) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PrivateLand._isExcludedFromFee (#356) is not in mixedCase
Constant PrivateLand._decimals (#362) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PrivateLand.swapAndLiquifyEnabled (#381) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PrivateLand._Tax_On_Buy (#370) is not in mixedCase
Function IUniswapV2Router01.WETH() (#192) is not in mixedCase
Constant PrivateLand.Percent_Game (#373) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter PrivateLand.addLiquidity(uint256,uint256).BNBAmount (#572) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#59)" inContext (#53-62)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in PrivateLand.transferFrom(address,address,uint256) (#453-457):
External calls:
- _transfer(sender,recipient,amount) (#454)
- wallet.transfer(amount) (#519)
External calls sending eth:
- _transfer(sender,recipient,amount) (#454)
- wallet.transfer(amount) (#519)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#455)
- _allowances[theOwner][theSpender] = amount (#474)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#475)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#455)
Reentrancy in PrivateLand._transfer(address,address,uint256) (#479-516):
External calls:
- swapAndLiquify(contractTokenBalance) (#497)
- wallet.transfer(amount) (#519)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#497)
- wallet.transfer(amount) (#519)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#575-582)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- _tOwned[sender] = _tOwned[sender] - tAmount (#591)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#592)
- _tOwned[sender] = _tOwned[sender] - tAmount (#603)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#604)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#605)
- _tOwned[sender] = _tOwned[sender] - tAmount (#616)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#617)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#618)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- _tTotal = _tTotal - tAmount (#596)
- _tTotal = _tTotal - tTransferAmount (#609)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#622)
- txCount ++ (#510)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#593)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- Transfer(sender,recipient,tTransferAmount) (#606)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#619)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#514)
Apply the check-effects-interactions pattern.

Additional information: link

Variable PrivateLand.swapAndLiquify(uint256).tokens_to_D (#532) is too similar to PrivateLand.swapAndLiquify(uint256).tokens_to_M (#531)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#196) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#197)
Prevent variables from having similar names.

Additional information: link

PrivateLand.slitherConstructorConstantVariables() (#326-654) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#360)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

transferOwnership(address) should be declared external:
- PrivateLand.transferOwnership(address) (#348-352)
setSwapTrigger(uint8) should be declared external:
- PrivateLand.setSwapTrigger(uint8) (#636-638)
setBuyTax(uint256) should be declared external:
- PrivateLand.setBuyTax(uint256) (#628-631)
setSellTax(uint256) should be declared external:
- PrivateLand.setSellTax(uint256) (#632-635)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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

Contract has 5% buy tax and 10% 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.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find KYC or doxxing proof


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 Telegram link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is relatively young, but twitter if very old (probably it's fake).

Price for PLAND