LEOPARD Token Logo

LEOPARD Token

About LEOPARD

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

Launch Leopard Staking, Expand development team, NFT Implementation, Work on Vaults, List on DAPPradar,

Social

Laser Scorebeta Last Audit: 2 March 2023

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Reentrancy in LEOPARD._transfer(address,address,uint256) (#971-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#994)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#994)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#998)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#928)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1101)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1102)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#869)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1121)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1112)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1122)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#871)
- _tokenTransfer(from,to,amount) (#998)
- _rTotal = _rTotal.sub(rFee) (#883)
- _tokenTransfer(from,to,amount) (#998)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#930)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#868)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1120)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1111)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#870)
Apply the check-effects-interactions pattern.

Additional information: link

LEOPARD.includeInReward(address) (#853-864) has costly operations inside a loop:
- _excluded.pop() (#860)
Use a local variable to hold the loop computation result.

Additional information: link

LEOPARD._previousBurnFee (#711) is set pre-construction with a non-constant function or state variable:
- _burnFee
LEOPARD._previousTaxFee (#705) is set pre-construction with a non-constant function or state variable:
- _taxFee
LEOPARD._rTotal (#697) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
LEOPARD._previousCharityFee (#715) is set pre-construction with a non-constant function or state variable:
- _charityFee
LEOPARD._previousLiquidityFee (#708) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

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

LEOPARD.addLiquidity(uint256,uint256) (#1042-1055) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
Ensure that all the return values of the function calls are used.

Additional information: link

LEOPARD._approve(address,address,uint256).owner (#963) shadows:
- Ownable.owner() (#413-415) (function)
LEOPARD.allowance(address,address).owner (#784) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.

Additional information: link

LEOPARD.setMaxTxPercent(uint256) (#1154-1158) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1155-1157)
Emit an event for critical parameter changes.

Additional information: link

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

Additional information: link

LEOPARD.slitherConstructorVariables() (#682-1165) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000000000000 * 10 ** 9 (#724)
LEOPARD.slitherConstructorVariables() (#682-1165) uses literals with too many digits:
- _maxTxAmount = 1000000000000000000 * 10 ** 9 (#723)
LEOPARD.slitherConstructorVariables() (#682-1165) uses literals with too many digits:
- _tTotal = 1000000000000000000 * 10 ** 9 (#696)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

LEOPARD.numTokensSellToAddToLiquidity (#724) should be constant
LEOPARD._tTotal (#696) should be constant
LEOPARD._name (#700) should be constant
LEOPARD._decimals (#702) should be constant
LEOPARD._symbol (#701) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

approve(address,uint256) should be declared external:
- LEOPARD.approve(address,uint256) (#788-791)
transfer(address,uint256) should be declared external:
- LEOPARD.transfer(address,uint256) (#779-782)
isExcludedFromFee(address) should be declared external:
- LEOPARD.isExcludedFromFee(address) (#959-961)
deliver(uint256) should be declared external:
- LEOPARD.deliver(uint256) (#817-824)
includeInFee(address) should be declared external:
- LEOPARD.includeInFee(address) (#1132-1134)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#432-435)
reflectionFromToken(uint256,bool) should be declared external:
- LEOPARD.reflectionFromToken(uint256,bool) (#826-835)
totalFees() should be declared external:
- LEOPARD.totalFees() (#813-815)
increaseAllowance(address,uint256) should be declared external:
- LEOPARD.increaseAllowance(address,uint256) (#799-802)
transferFrom(address,address,uint256) should be declared external:
- LEOPARD.transferFrom(address,address,uint256) (#793-797)
totalSupply() should be declared external:
- LEOPARD.totalSupply() (#770-772)
excludeFromReward(address) should be declared external:
- LEOPARD.excludeFromReward(address) (#843-851)
isExcludedFromReward(address) should be declared external:
- LEOPARD.isExcludedFromReward(address) (#809-811)
excludeFromFee(address) should be declared external:
- LEOPARD.excludeFromFee(address) (#1128-1130)
name() should be declared external:
- LEOPARD.name() (#758-760)
allowance(address,address) should be declared external:
- LEOPARD.allowance(address,address) (#784-786)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#447-449)
decimals() should be declared external:
- LEOPARD.decimals() (#766-768)
setSwapAndLiquifyEnabled(bool) should be declared external:
- LEOPARD.setSwapAndLiquifyEnabled(bool) (#1160-1163)
unlock() should be declared external:
- Ownable.unlock() (#460-465)
symbol() should be declared external:
- LEOPARD.symbol() (#762-764)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#452-457)
decreaseAllowance(address,uint256) should be declared external:
- LEOPARD.decreaseAllowance(address,uint256) (#804-807)
Use the external attribute for functions never called from the contract.

Additional information: link

LEOPARD.setCharityWallet(address).newWallet (#1150) lacks a zero-check on :
- charityWallet = newWallet (#1151)
Check that the address is not zero.

Additional information: link

Reentrancy in LEOPARD.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
- _allowances[owner][spender] = amount (#967)
Reentrancy in LEOPARD._transfer(address,address,uint256) (#971-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#994)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#994)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#998)
- _burnFee = 0 (#948)
- _burnFee = 1 (#955)
- _tokenTransfer(from,to,amount) (#998)
- _charityFee = 6 (#956)
- _charityFee = 0 (#949)
- _tokenTransfer(from,to,amount) (#998)
- _liquidityFee = 0 (#947)
- _liquidityFee = 2 (#954)
- _liquidityFee = 0 (#1084)
- _liquidityFee = _previousLiquidityFee (#1092)
- _tokenTransfer(from,to,amount) (#998)
- _tFeeTotal = _tFeeTotal.add(tFee) (#884)
- _tokenTransfer(from,to,amount) (#998)
- _taxFee = 0 (#946)
- _taxFee = 1 (#953)
- _taxFee = 0 (#1083)
- _taxFee = _previousTaxFee (#1091)
Reentrancy in LEOPARD.swapAndLiquify(uint256) (#1001-1022):
External calls:
- swapTokensForEth(half) (#1013)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- addLiquidity(otherHalf,newBalance) (#1019)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1019)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1019)
- _allowances[owner][spender] = amount (#967)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LEOPARD._transfer(address,address,uint256) (#971-999):
External calls:
- swapAndLiquify(contractTokenBalance) (#994)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#994)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1105)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1115)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#1125)
- _tokenTransfer(from,to,amount) (#998)
- Transfer(sender,recipient,tTransferAmount) (#874)
- _tokenTransfer(from,to,amount) (#998)
Reentrancy in LEOPARD.swapAndLiquify(uint256) (#1001-1022):
External calls:
- swapTokensForEth(half) (#1013)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
- addLiquidity(otherHalf,newBalance) (#1019)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1019)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#968)
- addLiquidity(otherHalf,newBalance) (#1019)
- SwapAndLiquify(half,newBalance,otherHalf) (#1021)
Reentrancy in LEOPARD.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1033-1039)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1047-1054)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#968)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#460-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now < _lockTime,Contract is locked until 7 days) (#462)
Avoid relying on block.timestamp.

Additional information: link

Address.sendValue(address,uint256) (#292-298) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#343-345) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#353-356) 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
Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) is never used and should be removed
Address.isContract(address) (#265-274) is never used and should be removed
Address.functionCall(address,bytes,string) (#328-330) is never used and should be removed
Address.functionCall(address,bytes) (#318-320) 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

Parameter LEOPARD.setSwapAndLiquifyEnabled(bool)._enabled (#1160) is not in mixedCase
Variable LEOPARD._taxFee (#704) is not in mixedCase
Variable LEOPARD._charityFee (#713) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#505) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Variable LEOPARD._maxTxAmount (#723) is not in mixedCase
Variable LEOPARD._burnFee (#710) is not in mixedCase
Parameter LEOPARD.calculateTaxFee(uint256)._amount (#933) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#504) is not in mixedCase
Variable LEOPARD._liquidityFee (#707) is not in mixedCase
Function IUniswapV2Router01.WETH() (#544) is not in mixedCase
Parameter LEOPARD.calculateLiquidityFee(uint256)._amount (#939) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable LEOPARD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#904) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD._getValues(uint256).rTransferAmount (#889) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._transferFromExcluded(address,address,uint256).rTransferAmount (#1119) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable LEOPARD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#904) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable LEOPARD._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable LEOPARD._transferToExcluded(address,address,uint256).rTransferAmount (#1109) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD._transferFromExcluded(address,address,uint256).rTransferAmount (#1119) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#904) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._getValues(uint256).rTransferAmount (#889) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#904) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._transferFromExcluded(address,address,uint256).rTransferAmount (#1119) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD._getValues(uint256).rTransferAmount (#889) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable LEOPARD._transferToExcluded(address,address,uint256).rTransferAmount (#1109) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable LEOPARD._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._getValues(uint256).rTransferAmount (#889) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD._getValues(uint256).rTransferAmount (#889) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable LEOPARD.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable LEOPARD.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD._transferToExcluded(address,address,uint256).rTransferAmount (#1109) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._getValues(uint256).rTransferAmount (#889) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#549) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#550)
Variable LEOPARD._transferFromExcluded(address,address,uint256).rTransferAmount (#1119) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._transferToExcluded(address,address,uint256).rTransferAmount (#1109) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._transferFromExcluded(address,address,uint256).rTransferAmount (#1119) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable LEOPARD._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to LEOPARD._transferStandard(address,address,uint256).tTransferAmount (#1100)
Variable LEOPARD._transferFromExcluded(address,address,uint256).rTransferAmount (#1119) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._transferToExcluded(address,address,uint256).rTransferAmount (#1109) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable LEOPARD.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to LEOPARD._getTValues(uint256).tTransferAmount (#896)
Variable LEOPARD._transferStandard(address,address,uint256).rTransferAmount (#1100) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable LEOPARD._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to LEOPARD._getValues(uint256).tTransferAmount (#888)
Variable LEOPARD._transferToExcluded(address,address,uint256).rTransferAmount (#1109) is too similar to LEOPARD._transferFromExcluded(address,address,uint256).tTransferAmount (#1119)
Variable LEOPARD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#904) is too similar to LEOPARD._transferToExcluded(address,address,uint256).tTransferAmount (#1109)
Variable LEOPARD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#904) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable LEOPARD.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to LEOPARD._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Prevent variables from having similar names.

Additional information: link

Holders:


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


Token is deployed only at one blockchain

Contract has 9% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Youtube account


Token is not listed at Mobula.Finance

Additional information: link


Token has relatively low CoinGecko rank

Price for LEOPARD

News for LEOPARD