LaPad Token Logo

LPDT [LaPad] Token

About LPDT

Listings

Not Found
Token 19 months

Website

white paper

LaPAD is a launchpad platform that provides solutions to cryptocurrency and blockchain projects that have a good concept but do not have a strategy for success. We select branding, marketing, and launching projects to find the best advantages and provide consulting solutions.
LaPad platform is a platform in the crypto ecosystem that aims to deliver value-added crypto projects to crypto users. Its primary purpose is to protect the investor's funds by offering KYC-verified projects to crypto users.
Our aims is not to present many projects to crypto users. Our goal is to offer only quality and trusted crypto projects to crypto users and add value the crypto ecosystem.

Social

Laser Scorebeta Last Audit: 23 May 2022

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

Anti-Scam

Links

Reentrancy in LaPad._transfer(address,address,uint256) (#787-832):
External calls:
- _tokenTransferWithFee(contractTokenBalance) (#815)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#909-915)
External calls sending eth:
- _tokenTransferWithFee(contractTokenBalance) (#815)
- address(_teamMarketAddress).transfer(amount) (#894)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#828)
- _balances[sender] = _balances[sender].sub(amount) (#868)
- _balances[recipient] = _balances[recipient].add(amount) (#869)
- _tokenTransferWithFeeCoin(from,to,amount) (#830)
- _balances[_burnAddress] = _balances[_burnAddress].add(tBurn) (#837)
- _balances[address(this)] = _balances[address(this)].add(tMarket) (#838)
- _balances[sender] = _balances[sender].sub(amount) (#840)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#841)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)

LaPad.allowance(address,address).owner (#754) shadows:
- Ownable.owner() (#411-413) (function)
LaPad._approve(address,address,uint256).owner (#779) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.

Additional information: link

Address.isContract(address) (#265-274) uses assembly
- INLINE ASM (#272)
Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) uses assembly
- INLINE ASM (#371-374)
Do not use evm assembly.

Additional information: link

Reentrancy in LaPad.initContract() (#702-727):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#705-706)
- uniswapV2PairBusd = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_busd) (#707-708)
- uniswapV2PairUsdt = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_usdt) (#709-710)
State variables written after the call(s):
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#716)
- _isExcludedFromFee[address(this)] = true (#720)
- _isExcludedFromFee[_burnAddress] = true (#721)
- _isExcludedFromFee[address(uniswapV2Router)] = true (#722)
- _isExcludedFromPair[uniswapV2Pair] = true (#724)
- _isExcludedFromPair[uniswapV2PairBusd] = true (#725)
- _isExcludedFromPair[uniswapV2PairUsdt] = true (#726)
- _teamMarketAddress = 0xCde863516639bEB0c3A6Ef29F5249673BAa72e18 (#715)
- uniswapV2Router = _uniswapV2Router (#713)
Reentrancy in LaPad.transferFrom(address,address,uint256) (#763-767):
External calls:
- _transfer(sender,recipient,amount) (#764)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#909-915)
External calls sending eth:
- _transfer(sender,recipient,amount) (#764)
- address(_teamMarketAddress).transfer(amount) (#894)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#765)
- _allowances[owner][spender] = amount (#783)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LaPad._transfer(address,address,uint256) (#787-832):
External calls:
- _tokenTransferWithFee(contractTokenBalance) (#815)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#909-915)
External calls sending eth:
- _tokenTransferWithFee(contractTokenBalance) (#815)
- address(_teamMarketAddress).transfer(amount) (#894)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#871)
- _tokenTransfer(from,to,amount) (#828)
- Transfer(sender,recipient,tTransferAmount) (#843)
- _tokenTransferWithFeeCoin(from,to,amount) (#830)
Reentrancy in LaPad.transferFrom(address,address,uint256) (#763-767):
External calls:
- _transfer(sender,recipient,amount) (#764)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#909-915)
External calls sending eth:
- _transfer(sender,recipient,amount) (#764)
- address(_teamMarketAddress).transfer(amount) (#894)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#784)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#765)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) is never used and should be removed
Address.functionCall(address,bytes) (#318-320) is never used and should be removed
Address.functionCall(address,bytes,string) (#328-330) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#353-356) is never used and should be removed
Address.isContract(address) (#265-274) is never used and should be removed
Address.sendValue(address,uint256) (#292-298) is never used and should be removed
Context._msgData() (#237-240) is never used and should be removed
SafeMath.mod(uint256,uint256) (#210-212) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#292-298):
- (success) = recipient.call{value: amount}() (#296)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#358-379):
- (success,returndata) = target.call{value: weiValue}(data) (#362)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#482) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#483) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#499) is not in mixedCase
Function IUniswapV2Router01.WETH() (#520) is not in mixedCase
Parameter LaPad.calculateMarketFee(uint256)._amount (#884) is not in mixedCase
Parameter LaPad.calculateBurnFee(uint256)._amount (#888) is not in mixedCase
Variable LaPad._burnFee (#673) is not in mixedCase
Variable LaPad._MarketFee (#674) is not in mixedCase
Variable LaPad._burnAddress (#677) is not in mixedCase
Variable LaPad._swapTokenEnabled (#681) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#238)" inContext (#232-241)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in LaPad._transfer(address,address,uint256) (#787-832):
External calls:
- _tokenTransferWithFee(contractTokenBalance) (#815)
- address(_teamMarketAddress).transfer(amount) (#894)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#828)
- _balances[sender] = _balances[sender].sub(amount) (#868)
- _balances[recipient] = _balances[recipient].add(amount) (#869)
- _tokenTransferWithFeeCoin(from,to,amount) (#830)
- _balances[_burnAddress] = _balances[_burnAddress].add(tBurn) (#837)
- _balances[address(this)] = _balances[address(this)].add(tMarket) (#838)
- _balances[sender] = _balances[sender].sub(amount) (#840)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#841)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#871)
- _tokenTransfer(from,to,amount) (#828)
- Transfer(sender,recipient,tTransferAmount) (#843)
- _tokenTransferWithFeeCoin(from,to,amount) (#830)
Reentrancy in LaPad.transferFrom(address,address,uint256) (#763-767):
External calls:
- _transfer(sender,recipient,amount) (#764)
- address(_teamMarketAddress).transfer(amount) (#894)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#765)
- _allowances[owner][spender] = amount (#783)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#784)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#765)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#525) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#526)
Variable LaPad.initContract().uniswapV2PairBusd (#707-708) is too similar to LaPad.initContract().uniswapV2PairUsdt (#709-710)
Prevent variables from having similar names.

Additional information: link

LaPad.initContract() (#702-727) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#716)
LaPad.slitherConstructorVariables() (#658-930) uses literals with too many digits:
- _totalSupply = 10 * 10000000 * 10 ** 9 (#667)
LaPad.slitherConstructorVariables() (#658-930) uses literals with too many digits:
- _minTokenBalance = 100000 * 10 ** 9 (#685)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

LaPad._MarketFee (#674) should be constant
LaPad._burnFee (#673) should be constant
LaPad._busd (#688) should be constant
LaPad._decimals (#671) should be constant
LaPad._minTokenBalance (#685) should be constant
LaPad._name (#669) should be constant
LaPad._swapTokenEnabled (#681) should be constant
LaPad._symbol (#670) should be constant
LaPad._totalSupply (#667) should be constant
LaPad._usdt (#687) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
name() should be declared external:
- LaPad.name() (#729-731)
symbol() should be declared external:
- LaPad.symbol() (#733-735)
decimals() should be declared external:
- LaPad.decimals() (#737-739)
totalSupply() should be declared external:
- LaPad.totalSupply() (#741-743)
transfer(address,uint256) should be declared external:
- LaPad.transfer(address,uint256) (#749-752)
allowance(address,address) should be declared external:
- LaPad.allowance(address,address) (#754-756)
approve(address,uint256) should be declared external:
- LaPad.approve(address,uint256) (#758-761)
transferFrom(address,address,uint256) should be declared external:
- LaPad.transferFrom(address,address,uint256) (#763-767)
increaseAllowance(address,uint256) should be declared external:
- LaPad.increaseAllowance(address,uint256) (#769-772)
decreaseAllowance(address,uint256) should be declared external:
- LaPad.decreaseAllowance(address,uint256) (#774-777)
isExcludedFromFee(address) should be declared external:
- LaPad.isExcludedFromFee(address) (#918-920)
isExcludedFromPair(address) should be declared external:
- LaPad.isExcludedFromPair(address) (#926-928)
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.

No disclosed threats


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

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper 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


Young tokens have high risks of price dump / death

Price for LPDT

News for LPDT