Leprechaun Token Logo

LEP [Leprechaun] Token

About LEP

Listings

Token 2 years
CoinMarketCap 2 years

$LEP is the utility token of Leprechaun Finance. Their mission is to provide audits, tools, lotteries and more to their loyal clients.

Social

Laser Scorebeta Last Audit: 2 March 2022

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

Anti-Scam

Links


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

Reentrancy in Leprechaun.initLiquidity(address) (#1706-1738):
External calls:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
- _liquidity.init() (#1726)
- ADDRESS_PAIR = _liquidity.getPair() (#1727)
External calls sending eth:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
State variables written after the call(s):
- _contractLiquidityActive = true (#1730)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Leprechaun._transfer(address,address,uint256) (#1988-2111):
External calls:
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
State variables written after the call(s):
- _transactionTokens(pFrom,ADDRESS_STAKING,Taxes.totalStaking) (#2097)
- _balances[pFrom] = _balances[pFrom].sub(pAmount) (#2114)
- _balances[pTo] = _balances[pTo].add(pAmount) (#2115)
Reentrancy in Leprechaun._transfer(address,address,uint256) (#1988-2111):
External calls:
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
- _staking.deposit(pFrom,pTo,Taxes.totalStaking) (#2098)
State variables written after the call(s):
- _transactionTokens(pFrom,ADDRESS_PROJECT,Taxes.totalProject) (#2102)
- _balances[pFrom] = _balances[pFrom].sub(pAmount) (#2114)
- _balances[pTo] = _balances[pTo].add(pAmount) (#2115)
Reentrancy in Leprechaun._transfer(address,address,uint256) (#1988-2111):
External calls:
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
- _staking.deposit(pFrom,pTo,Taxes.totalStaking) (#2098)
- _project.deposit(pFrom,pTo,Taxes.totalProject) (#2103)
State variables written after the call(s):
- _transactionTokens(pFrom,pTo,pAmount.sub(Taxes.total)) (#2107)
- _balances[pFrom] = _balances[pFrom].sub(pAmount) (#2114)
- _balances[pTo] = _balances[pTo].add(pAmount) (#2115)
Reentrancy in Leprechaun.initLottery(address) (#1850-1867):
External calls:
- _lottery.init(1643670000) (#1860)
State variables written after the call(s):
- _contractLotteryActive = true (#1863)
Reentrancy in Leprechaun.initPreSale(address,address) (#1822-1847):
External calls:
- _preSale.init(1643669999,ADDRESS_PRESALE_VAULT) (#1837)
State variables written after the call(s):
- _contractPreSaleActive = true (#1840)
Reentrancy in Leprechaun.initProject(address) (#1741-1763):
External calls:
- _project.init() (#1754)
- _project.deposit(address(this),ADDRESS_PROJECT,TOKENS_FOR_PROJECT) (#1755)
- _project.update() (#1756)
State variables written after the call(s):
- _contractProjectActive = true (#1759)
Reentrancy in Leprechaun.initStaking(address,address,address,address,address) (#1766-1819):
External calls:
- _staking.init() (#1800)
- _staking30D.init(1643670000,30) (#1803)
- _staking90D.init(1643670000,90) (#1806)
- _staking180D.init(1643670000,180) (#1809)
- _staking365D.init(1643670000,365) (#1812)
State variables written after the call(s):
- _contractStakingActive = true (#1815)
Apply the check-effects-interactions pattern.

Additional information: link

Leprechaun._transfer(address,address,uint256).Taxes (#1993) is a local variable never initialized
RobinHood.ambushAtNight(uint256).chests (#1417) is a local variable never initialized
RobinHood.ambushAtNight(uint256).horseCarriage (#1419) 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

Leprechaun.allowance(address,address).owner (#1897) shadows:
- Ownable.owner() (#590-592) (function)
Leprechaun._approve(address,address,uint256).owner (#1906) shadows:
- Ownable.owner() (#590-592) (function)
Rename the local variables that shadow another component.

Additional information: link

Native.transferNative(address,uint256).to (#1468) lacks a zero-check on :
- (sent) = to.call{value: pAmount}() (#1469)
Leprechaun.initLiquidity(address).contractAddress (#1706) lacks a zero-check on :
- ADDRESS_LIQUIDITY = contractAddress (#1709)
Leprechaun.initProject(address).contractAddress (#1741) lacks a zero-check on :
- ADDRESS_PROJECT = contractAddress (#1744)
Leprechaun.initStaking(address,address,address,address,address).contractAddress (#1767) lacks a zero-check on :
- ADDRESS_STAKING = contractAddress (#1775)
Leprechaun.initStaking(address,address,address,address,address).contractAddress30D (#1768) lacks a zero-check on :
- ADDRESS_STAKING_DAYS30 = contractAddress30D (#1776)
Leprechaun.initStaking(address,address,address,address,address).contractAddress90D (#1769) lacks a zero-check on :
- ADDRESS_STAKING_DAYS90 = contractAddress90D (#1777)
Leprechaun.initStaking(address,address,address,address,address).contractAddress180D (#1770) lacks a zero-check on :
- ADDRESS_STAKING_DAYS180 = contractAddress180D (#1778)
Leprechaun.initStaking(address,address,address,address,address).contractAddress365D (#1771) lacks a zero-check on :
- ADDRESS_STAKING_DAYS365 = contractAddress365D (#1779)
Leprechaun.initPreSale(address,address).contractAddress (#1822) lacks a zero-check on :
- ADDRESS_PRESALE = contractAddress (#1825)
Leprechaun.initPreSale(address,address).contractVault (#1822) lacks a zero-check on :
- ADDRESS_PRESALE_VAULT = contractVault (#1826)
Leprechaun.initLottery(address).contractAddress (#1850) lacks a zero-check on :
- ADDRESS_LOTTERY = contractAddress (#1853)
Check that the address is not zero.

Additional information: link

Reentrancy in Leprechaun.initLiquidity(address) (#1706-1738):
External calls:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
State variables written after the call(s):
- _transactionTokens(address(this),ADDRESS_LIQUIDITY,TOKENS_FOR_LIQUIDITY) (#1722)
- _balances[pFrom] = _balances[pFrom].sub(pAmount) (#2114)
- _balances[pTo] = _balances[pTo].add(pAmount) (#2115)
- _liquidity = ILeprechaunLiquidity(ADDRESS_LIQUIDITY) (#1725)
Reentrancy in Leprechaun.initLiquidity(address) (#1706-1738):
External calls:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
- _liquidity.init() (#1726)
- ADDRESS_PAIR = _liquidity.getPair() (#1727)
External calls sending eth:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
State variables written after the call(s):
- ADDRESS_PAIR = _liquidity.getPair() (#1727)
- SWAPPING_ENABLED = true (#1731)
Reentrancy in Leprechaun.initPreSale(address,address) (#1822-1847):
External calls:
- _preSale.init(1643669999,ADDRESS_PRESALE_VAULT) (#1837)
State variables written after the call(s):
- SWAPPING_ENABLED = false (#1843)
Reentrancy in Leprechaun.initStaking(address,address,address,address,address) (#1766-1819):
External calls:
- _staking.init() (#1800)
State variables written after the call(s):
- _staking30D = ILeprechaunStakingLocked(ADDRESS_STAKING_DAYS30) (#1802)
Reentrancy in Leprechaun.initStaking(address,address,address,address,address) (#1766-1819):
External calls:
- _staking.init() (#1800)
- _staking30D.init(1643670000,30) (#1803)
State variables written after the call(s):
- _staking90D = ILeprechaunStakingLocked(ADDRESS_STAKING_DAYS90) (#1805)
Reentrancy in Leprechaun.initStaking(address,address,address,address,address) (#1766-1819):
External calls:
- _staking.init() (#1800)
- _staking30D.init(1643670000,30) (#1803)
- _staking90D.init(1643670000,90) (#1806)
State variables written after the call(s):
- _staking180D = ILeprechaunStakingLocked(ADDRESS_STAKING_DAYS180) (#1808)
Reentrancy in Leprechaun.initStaking(address,address,address,address,address) (#1766-1819):
External calls:
- _staking.init() (#1800)
- _staking30D.init(1643670000,30) (#1803)
- _staking90D.init(1643670000,90) (#1806)
- _staking180D.init(1643670000,180) (#1809)
State variables written after the call(s):
- _staking365D = ILeprechaunStakingLocked(ADDRESS_STAKING_DAYS365) (#1811)
Reentrancy in Leprechaun.transferFrom(address,address,uint256) (#1929-1933):
External calls:
- _transfer(sender,recipient,amount) (#1930)
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
- _staking.deposit(pFrom,pTo,Taxes.totalStaking) (#2098)
- _project.deposit(pFrom,pTo,Taxes.totalProject) (#2103)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,[lep] transfer amount exceeds allowance)) (#1931)
- _allowances[owner][spender] = amount (#1910)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Leprechaun._transfer(address,address,uint256) (#1988-2111):
External calls:
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
Event emitted after the call(s):
- TransactionLottery(Taxes.totalLottery) (#2094)
- Transfer(pFrom,pTo,pAmount) (#2117)
- _transactionTokens(pFrom,ADDRESS_STAKING,Taxes.totalStaking) (#2097)
Reentrancy in Leprechaun._transfer(address,address,uint256) (#1988-2111):
External calls:
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
- _staking.deposit(pFrom,pTo,Taxes.totalStaking) (#2098)
Event emitted after the call(s):
- TransactionStaking(Taxes.totalStaking) (#2099)
- Transfer(pFrom,pTo,pAmount) (#2117)
- _transactionTokens(pFrom,ADDRESS_PROJECT,Taxes.totalProject) (#2102)
Reentrancy in Leprechaun._transfer(address,address,uint256) (#1988-2111):
External calls:
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
- _staking.deposit(pFrom,pTo,Taxes.totalStaking) (#2098)
- _project.deposit(pFrom,pTo,Taxes.totalProject) (#2103)
Event emitted after the call(s):
- TransactionEnd() (#2110)
- TransactionProject(Taxes.totalProject) (#2104)
- Transfer(pFrom,pTo,pAmount) (#2117)
- _transactionTokens(pFrom,pTo,pAmount.sub(Taxes.total)) (#2107)
Reentrancy in Leprechaun.initLiquidity(address) (#1706-1738):
External calls:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
Event emitted after the call(s):
- LiquidityBalance(ADDRESS_LIQUIDITY.balance) (#1718)
- LiquidityFail() (#1735)
- Transfer(pFrom,pTo,pAmount) (#2117)
- _transactionTokens(address(this),ADDRESS_LIQUIDITY,TOKENS_FOR_LIQUIDITY) (#1722)
Reentrancy in Leprechaun.initLiquidity(address) (#1706-1738):
External calls:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
- _liquidity.init() (#1726)
- ADDRESS_PAIR = _liquidity.getPair() (#1727)
External calls sending eth:
- transferNative(ADDRESS_LIQUIDITY,balance()) (#1715)
- (sent) = to.call{value: pAmount}() (#1469)
Event emitted after the call(s):
- LiquiditySuccess() (#1733)
Reentrancy in Leprechaun.initLottery(address) (#1850-1867):
External calls:
- _lottery.init(1643670000) (#1860)
Event emitted after the call(s):
- LotterySuccess() (#1865)
Reentrancy in Leprechaun.initPreSale(address,address) (#1822-1847):
External calls:
- _preSale.init(1643669999,ADDRESS_PRESALE_VAULT) (#1837)
Event emitted after the call(s):
- PreSaleSuccess() (#1845)
Reentrancy in Leprechaun.initProject(address) (#1741-1763):
External calls:
- _project.init() (#1754)
- _project.deposit(address(this),ADDRESS_PROJECT,TOKENS_FOR_PROJECT) (#1755)
- _project.update() (#1756)
Event emitted after the call(s):
- ProjectSuccess() (#1761)
Reentrancy in Leprechaun.initStaking(address,address,address,address,address) (#1766-1819):
External calls:
- _staking.init() (#1800)
- _staking30D.init(1643670000,30) (#1803)
- _staking90D.init(1643670000,90) (#1806)
- _staking180D.init(1643670000,180) (#1809)
- _staking365D.init(1643670000,365) (#1812)
Event emitted after the call(s):
- StakingSuccess() (#1817)
Reentrancy in Leprechaun.transferFrom(address,address,uint256) (#1929-1933):
External calls:
- _transfer(sender,recipient,amount) (#1930)
- _lottery.deposit(pFrom,pTo,Taxes.totalLottery) (#2093)
- _staking.deposit(pFrom,pTo,Taxes.totalStaking) (#2098)
- _project.deposit(pFrom,pTo,Taxes.totalProject) (#2103)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1911)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,[lep] transfer amount exceeds allowance)) (#1931)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#361-371) uses assembly
- INLINE ASM (#367-369)
Address.verifyCallResult(bool,bytes,string) (#530-550) uses assembly
- INLINE ASM (#542-545)
Do not use evm assembly.

Additional information: link

Address.functionCall(address,bytes) (#414-416) is never used and should be removed
Address.functionCall(address,bytes,string) (#424-430) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#443-449) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#457-468) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#503-505) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#513-522) is never used and should be removed
Address.functionStaticCall(address,bytes) (#476-478) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#486-495) is never used and should be removed
Address.isContract(address) (#361-371) is never used and should be removed
Address.sendValue(address,uint256) (#389-394) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#530-550) is never used and should be removed
Array256.del(uint256[],uint256) (#1478-1481) is never used and should be removed
Array256.delval(uint256[],uint256) (#1483-1489) is never used and should be removed
Context._msgData() (#92-94) is never used and should be removed
ERC20._burn(address,uint256) (#1293-1308) is never used and should be removed
ERC20._mint(address,uint256) (#1270-1280) is never used and should be removed
RobinHood._sheriffOfNottingham(uint256,uint256,uint16,uint256) (#1448-1454) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#292-301) is never used and should be removed
SafeMath.mod(uint256,uint256) (#252-254) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#318-327) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#123-129) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#165-170) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#177-182) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#148-158) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#136-141) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#2) allows old versions
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) (#389-394):
- (success) = recipient.call{value: amount}() (#392)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#457-468):
- (success,returndata) = target.call{value: value}(data) (#466)
Low level call in Address.functionStaticCall(address,bytes,string) (#486-495):
- (success,returndata) = target.staticcall(data) (#493)
Low level call in Address.functionDelegateCall(address,bytes,string) (#513-522):
- (success,returndata) = target.delegatecall(data) (#520)
Low level call in Native.transferNative(address,uint256) (#1467-1471):
- (sent) = to.call{value: pAmount}() (#1469)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Leprechaun (#1540-2124) should inherit from IERC20Metadata (#1003-1018)
Inherit from the missing interface or contract.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#741) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#742) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#759) is not in mixedCase
Function IUniswapV2Router01.WETH() (#779) is not in mixedCase
Variable RobinHood.MaidMarian (#1395) is not in mixedCase
Variable RobinHood._LittleJohnsTaxBracket (#1397) is not in mixedCase
Variable Leprechaun.ADDRESS_BURN (#1560) is not in mixedCase
Variable Leprechaun.ADDRESS_LIQUIDITY (#1561) is not in mixedCase
Variable Leprechaun.ADDRESS_PAIR (#1562) is not in mixedCase
Variable Leprechaun.ADDRESS_PRESALE (#1563) is not in mixedCase
Variable Leprechaun.ADDRESS_PRESALE_VAULT (#1564) is not in mixedCase
Variable Leprechaun.ADDRESS_LOTTERY (#1565) is not in mixedCase
Variable Leprechaun.ADDRESS_STAKING (#1566) is not in mixedCase
Variable Leprechaun.ADDRESS_PROJECT (#1567) is not in mixedCase
Variable Leprechaun.ADDRESS_STAKING_DAYS30 (#1568) is not in mixedCase
Variable Leprechaun.ADDRESS_STAKING_DAYS90 (#1569) is not in mixedCase
Variable Leprechaun.ADDRESS_STAKING_DAYS180 (#1570) is not in mixedCase
Variable Leprechaun.ADDRESS_STAKING_DAYS365 (#1571) is not in mixedCase
Variable Leprechaun.ADDRESS_ROUTER (#1572) is not in mixedCase
Variable Leprechaun.ADDRESS_ERC20_USDC (#1573) is not in mixedCase
Variable Leprechaun.ERC20_NATIVE (#1577) is not in mixedCase
Variable Leprechaun.ERC20_USDC (#1578) is not in mixedCase
Variable Leprechaun.TAX_BUY_LOTTERY (#1584) is not in mixedCase
Variable Leprechaun.TAX_BUY_STAKING (#1585) is not in mixedCase
Variable Leprechaun.TAX_BUY_PROJECT (#1586) is not in mixedCase
Variable Leprechaun.TAX_BUY_BURN (#1587) is not in mixedCase
Variable Leprechaun.TAX_SELL_LOTTERY (#1589) is not in mixedCase
Variable Leprechaun.TAX_SELL_STAKING (#1590) is not in mixedCase
Variable Leprechaun.TAX_SELL_PROJECT (#1591) is not in mixedCase
Variable Leprechaun.TAX_SELL_BURN (#1592) is not in mixedCase
Variable Leprechaun.TAX_SELL_REDISTRIBUTE_ROBIN_HOOD (#1593) is not in mixedCase
Variable Leprechaun.TOKENS_FOR_PROJECT (#1598) is not in mixedCase
Variable Leprechaun.TOKENS_FOR_STAKING (#1599) is not in mixedCase
Variable Leprechaun.TOKENS_FOR_LIQUIDITY (#1600) is not in mixedCase
Variable Leprechaun.TOKENS_FOR_PRESALE (#1601) is not in mixedCase
Variable Leprechaun.SWAPPING_ENABLED (#1602) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#784) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#785)
Variable Leprechaun.ADDRESS_STAKING_DAYS30 (#1568) is too similar to Leprechaun.ADDRESS_STAKING_DAYS90 (#1569)
Variable Leprechaun._staking30D (#1552) is too similar to Leprechaun._staking90D (#1553)
Variable Leprechaun.initStaking(address,address,address,address,address).contractAddress30D (#1768) is too similar to Leprechaun.initStaking(address,address,address,address,address).contractAddress90D (#1769)
Prevent variables from having similar names.

Additional information: link

RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(1000000,2000000,100,0) (#1405)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(2000000,3000000,120,1) (#1406)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(3000000,4000000,140,2) (#1407)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(4000000,10000000,200,3) (#1408)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(10000000,20000000,250,4) (#1409)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(20000000,50000000,330,5) (#1410)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(50000000,100000000,400,6) (#1411)
RobinHood.constructor() (#1404-1413) uses literals with too many digits:
- _sheriffOfNottingham(100000000,1000000000,500,7) (#1412)
Leprechaun.constructor() (#1665-1689) uses literals with too many digits:
- TOKENS_FOR_STAKING = 150000000 * (10 ** _decimals) (#1678)
Leprechaun.constructor() (#1665-1689) uses literals with too many digits:
- TOKENS_FOR_PRESALE = 135000000 * (10 ** _decimals) (#1679)
Leprechaun.constructor() (#1665-1689) uses literals with too many digits:
- TOKENS_FOR_PROJECT = 50000000 * (10 ** _decimals) (#1680)
Leprechaun.initStaking(address,address,address,address,address) (#1766-1819) uses literals with too many digits:
- staking30D = 5000000 * (10 ** 9) (#1789)
Leprechaun.initStaking(address,address,address,address,address) (#1766-1819) uses literals with too many digits:
- staking90D = 16000000 * (10 ** 9) (#1790)
Leprechaun.initStaking(address,address,address,address,address) (#1766-1819) uses literals with too many digits:
- staking180D = 35000000 * (10 ** 9) (#1791)
Leprechaun.initStaking(address,address,address,address,address) (#1766-1819) uses literals with too many digits:
- staking365D = 94000000 * (10 ** 9) (#1792)
Leprechaun.slitherConstructorVariables() (#1540-2124) uses literals with too many digits:
- minTokenForAmbush = 1000000 * (10 ** 9) (#1396)
Leprechaun.slitherConstructorVariables() (#1540-2124) uses literals with too many digits:
- ADDRESS_BURN = 0x000000000000000000000000000000000000dEaD (#1560)
Leprechaun.slitherConstructorVariables() (#1540-2124) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** 9) (#1610)
Leprechaun.slitherConstructorVariables() (#1540-2124) uses literals with too many digits:
- _whaleAlert = 1000000 * (10 ** 9) (#1611)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Leprechaun.ADDRESS_BURN (#1560) should be constant
Leprechaun.ADDRESS_ERC20_USDC (#1573) should be constant
Leprechaun.ADDRESS_ROUTER (#1572) should be constant
Leprechaun.TAX_BUY_BURN (#1587) should be constant
Leprechaun.TAX_BUY_LOTTERY (#1584) should be constant
Leprechaun.TAX_BUY_PROJECT (#1586) should be constant
Leprechaun.TAX_BUY_STAKING (#1585) should be constant
Leprechaun.TAX_SELL_BURN (#1592) should be constant
Leprechaun.TAX_SELL_LOTTERY (#1589) should be constant
Leprechaun.TAX_SELL_PROJECT (#1591) should be constant
Leprechaun.TAX_SELL_REDISTRIBUTE_ROBIN_HOOD (#1593) should be constant
Leprechaun.TAX_SELL_STAKING (#1590) should be constant
Leprechaun._decimals (#1609) should be constant
Leprechaun._name (#1607) should be constant
Leprechaun._symbol (#1608) should be constant
Leprechaun._totalSupply (#1610) should be constant
Leprechaun._whaleAlert (#1611) should be constant
RobinHood.minTokenForAmbush (#1396) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#617-620)
name() should be declared external:
- ERC20.name() (#1081-1083)
symbol() should be declared external:
- ERC20.symbol() (#1089-1091)
decimals() should be declared external:
- ERC20.decimals() (#1106-1108)
totalSupply() should be declared external:
- ERC20.totalSupply() (#1113-1115)
- Leprechaun.totalSupply() (#1889-1891)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#1131-1134)
- Leprechaun.transfer(address,uint256) (#1924-1927)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#1139-1141)
- Leprechaun.allowance(address,address) (#1897-1899)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#1150-1153)
- Leprechaun.approve(address,uint256) (#1901-1904)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#1168-1182)
- Leprechaun.transferFrom(address,address,uint256) (#1929-1933)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#1196-1199)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#1215-1223)
init() should be declared external:
- ILeprechaunLiquidity.init() (#1494)
getPair() should be declared external:
- ILeprechaunLiquidity.getPair() (#1495)
init() should be declared external:
- ILeprechaunProject.init() (#1500)
deposit(address,address,uint256) should be declared external:
- ILeprechaunProject.deposit(address,address,uint256) (#1501)
update() should be declared external:
- ILeprechaunProject.update() (#1502)
init() should be declared external:
- ILeprechaunStaking.init() (#1507)
deposit(address,address,uint256) should be declared external:
- ILeprechaunStaking.deposit(address,address,uint256) (#1508)
balanceOf(address) should be declared external:
- ILeprechaunStaking.balanceOf(address) (#1509)
init(uint256,uint256) should be declared external:
- ILeprechaunStakingLocked.init(uint256,uint256) (#1514)
balanceOf(address) should be declared external:
- ILeprechaunStakingLocked.balanceOf(address) (#1515)
init(uint256,address) should be declared external:
- ILeprechaunPreSale.init(uint256,address) (#1520)
balanceOf(address) should be declared external:
- ILeprechaunPreSale.balanceOf(address) (#1521)
init(uint256) should be declared external:
- ILeprechaunLottery.init(uint256) (#1526)
deposit(address,address,uint256) should be declared external:
- ILeprechaunLottery.deposit(address,address,uint256) (#1527)
balanceOf(address) should be declared external:
- ILeprechaunLottery.balanceOf(address) (#1528)
kill() should be declared external:
- Leprechaun.kill() (#1697-1700)
initLiquidity(address) should be declared external:
- Leprechaun.initLiquidity(address) (#1706-1738)
initProject(address) should be declared external:
- Leprechaun.initProject(address) (#1741-1763)
initStaking(address,address,address,address,address) should be declared external:
- Leprechaun.initStaking(address,address,address,address,address) (#1766-1819)
initPreSale(address,address) should be declared external:
- Leprechaun.initPreSale(address,address) (#1822-1847)
initLottery(address) should be declared external:
- Leprechaun.initLottery(address) (#1850-1867)
name() should be declared external:
- Leprechaun.name() (#1877-1879)
symbol() should be declared external:
- Leprechaun.symbol() (#1881-1883)
decimals() should be declared external:
- Leprechaun.decimals() (#1885-1887)
increaseAllowance(address,uint256) should be declared external:
- Leprechaun.increaseAllowance(address,uint256) (#1914-1917)
decreaseAllowance(address,uint256) should be declared external:
- Leprechaun.decreaseAllowance(address,uint256) (#1919-1922)
burn() should be declared external:
- Leprechaun.burn() (#1936-1938)
price() should be declared external:
- Leprechaun.price() (#1940-1959)
totalBalanceOf(address) should be declared external:
- Leprechaun.totalBalanceOf(address) (#1961-1981)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair

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


Telegram account has relatively few subscribers


Twitter account has relatively few followers


Unable to find Youtube account


Unable to find token/project description on the website or on BscScan, CoinMarketCap


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


Unable to find Twitter link on the website


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


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for LEP

News for LEP