LONDEX Token Logo

LDX [LONDEX] Token

About LDX

Listings

Token 2 years
CoinMarketCap 2 years

Website

[CoinGecko] alert: Project undergo a migration from 1000:1. Please visit this link for the migrated project.
white paper

LONDEX (LDX) is a revolutionary rewards token pioneering trust, transparency and integrity on the Binance Smart Chain. We have introduced a vast utility platform called LONDEX to accompany the LDX Token for all crypto investors.

LONDEX was launched with appreciation to the Ethereum London Hard Fork upgrade in August 21 and originally launched as babyLONDON. After successful and organic growth the project was rebranded and major upgrades to the LONDEX platform plans were made. Holders of LDX are rewarded with variable 6% auto claim Ethereum reflections as a passive income.

The LONDEX platform will provide vast utility for investors on BSC and crypto in general. A crypto university, contract scanning, wallet mapping and a worlds first anti-scammer AI, trading and charting with a host of features, gaming suite, NFT minting and marketplace, tax & accountancy tools, a safe dex with Londex LP, a presale launchpad and much more. Additionally significant revenues from all advertising and other features will directly feed the LDX token, creating consistent buy pressure and daily burning of tokens.

Laser Scorebeta Last Audit: 10 January 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...)

LONDEX.swapBack() (#587-633) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

Reentrancy in LONDEX._transferFrom(address,address,uint256) (#478-526):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#508)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#511)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#510)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#549)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#303-314) ignores return value by RWRD.transfer(shareholder,amount) (#309)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

LONDEX.swapBack().tmpSuccess (#616) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
LONDEX.swapBack().tmpSuccess (#616) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
tmpSuccess = false (#620)
Fix or remove the writes.

Additional information: link

LONDEX._maxTxAmount (#360) is set pre-construction with a non-constant function or state variable:
- _totalSupply
LONDEX._maxWalletToken (#361) is set pre-construction with a non-constant function or state variable:
- _totalSupply
LONDEX.totalFee (#379) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
LONDEX.swapThreshold (#404) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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

Pragma version^0.7.4 (#23) 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

DividendDistributor.shouldDistribute(address) (#298-301) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#299-300)
LONDEX._transferFrom(address,address,uint256) (#478-526) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#498)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#272-296) has costly operations inside a loop:
- currentIndex = 0 (#284)
DividendDistributor.distributeDividend(address) (#303-314) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#308)
DividendDistributor.process(uint256) (#272-296) has costly operations inside a loop:
- currentIndex ++ (#293)
Use a local variable to hold the loop computation result.

Additional information: link

Low level call in LONDEX.swapBack() (#587-633):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
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 DividendDistributor.distributeDividend(address) (#303-314):
External calls:
- RWRD.transfer(shareholder,amount) (#309)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#311)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#312)
Reentrancy in DividendDistributor.process(uint256) (#272-296):
External calls:
- distributeDividend(shareholders[currentIndex]) (#288)
- RWRD.transfer(shareholder,amount) (#309)
State variables written after the call(s):
- currentIndex ++ (#293)
Reentrancy in DividendDistributor.setShare(address,uint256) (#236-250):
External calls:
- distributeDividend(shareholder) (#238)
- RWRD.transfer(shareholder,amount) (#309)
State variables written after the call(s):
- shares[shareholder].amount = amount (#248)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#249)
Apply the check-effects-interactions pattern.

Additional information: link

LONDEX.manage_blacklist(address[],bool).i (#651) 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

LONDEX.swapBack() (#587-633) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#231-234) should emit an event for:
- minPeriod = _minPeriod (#232)
- minDistribution = _minDistribution (#233)
LONDEX.setMaxTxPercent_base1000(uint256) (#469-471) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#470)
LONDEX.setTxLimit(uint256) (#473-475) should emit an event for:
- _maxTxAmount = amount (#474)
LONDEX.set_sell_multiplier(uint256) (#572-574) should emit an event for:
- sellMultiplier = Multiplier (#573)
LONDEX.setFees(uint256,uint256,uint256,uint256,uint256) (#669-677) should emit an event for:
- liquidityFee = _liquidityFee (#670)
- reflectionFee = _reflectionFee (#671)
- marketingFee = _marketingFee (#672)
- devFee = _devFee (#673)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#674)
- feeDenominator = _feeDenominator (#675)
LONDEX.setSwapBackSettings(bool,uint256) (#685-688) should emit an event for:
- swapThreshold = _amount (#687)
LONDEX.setTargetLiquidity(uint256,uint256) (#690-693) should emit an event for:
- targetLiquidity = _target (#691)
- targetLiquidityDenominator = _denominator (#692)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#113) lacks a zero-check on :
- owner = adr (#114)
LONDEX.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#679) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#680)
LONDEX.setFeeReceivers(address,address,address)._marketingFeeReceiver (#679) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#681)
LONDEX.setFeeReceivers(address,address,address)._devFeeReceiver (#679) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#682)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#303-314) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#309)
LONDEX.multiTransfer(address,address[],uint256[]) (#719-743) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#735)
LONDEX.multiTransfer_fixed(address,address[],uint256) (#745-764) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#756)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in LONDEX.constructor() (#408-432):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#410)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#411)
- _balances[msg.sender] = _totalSupply (#430)
- autoLiquidityReceiver = msg.sender (#426)
- devFeeReceiver = msg.sender (#428)
- distributor = new DividendDistributor(address(router)) (#413)
- isDividendExempt[pair] = true (#422)
- isDividendExempt[address(this)] = true (#423)
- isDividendExempt[DEAD] = true (#424)
- isFeeExempt[msg.sender] = true (#415)
- isTimelockExempt[msg.sender] = true (#418)
- isTimelockExempt[DEAD] = true (#419)
- isTimelockExempt[address(this)] = true (#420)
- isTxLimitExempt[msg.sender] = true (#416)
- marketingFeeReceiver = msg.sender (#427)
Reentrancy in DividendDistributor.deposit() (#252-270):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#259-264)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#269)
- totalDividends = totalDividends.add(amount) (#268)
Reentrancy in DividendDistributor.distributeDividend(address) (#303-314):
External calls:
- RWRD.transfer(shareholder,amount) (#309)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#310)
Reentrancy in DividendDistributor.setShare(address,uint256) (#236-250):
External calls:
- distributeDividend(shareholder) (#238)
- RWRD.transfer(shareholder,amount) (#309)
State variables written after the call(s):
- addShareholder(shareholder) (#242)
- shareholderIndexes[shareholder] = shareholders.length (#336)
- removeShareholder(shareholder) (#244)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#342)
- addShareholder(shareholder) (#242)
- shareholders.push(shareholder) (#337)
- removeShareholder(shareholder) (#244)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#341)
- shareholders.pop() (#343)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#247)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LONDEX._transferFrom(address,address,uint256) (#478-526):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
- distributor.setShare(sender,_balances[sender]) (#515)
- distributor.setShare(recipient,_balances[recipient]) (#519)
- distributor.process(distributorGas) (#522)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#524)
Reentrancy in LONDEX._transferFrom(address,address,uint256) (#478-526):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#550)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#510)
Reentrancy in LONDEX.constructor() (#408-432):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#410)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#431)
Reentrancy in LONDEX.swapBack() (#587-633):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#598-604)
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#615)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#631)
Apply the check-effects-interactions pattern.

Additional information: link

Function IDEXRouter.WETH() (#128) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#231) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#231) is not in mixedCase
Variable DividendDistributor._token (#184) is not in mixedCase
Variable DividendDistributor.RWRD (#192) is not in mixedCase
Variable DividendDistributor.WBNB (#193) is not in mixedCase
Function LONDEX.setMaxWalletPercent_base1000(uint256) (#466-468) is not in mixedCase
Parameter LONDEX.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#466) is not in mixedCase
Function LONDEX.setMaxTxPercent_base1000(uint256) (#469-471) is not in mixedCase
Parameter LONDEX.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#469) is not in mixedCase
Function LONDEX.clearStuckBalance_sender(uint256) (#567-570) is not in mixedCase
Function LONDEX.set_sell_multiplier(uint256) (#572-574) is not in mixedCase
Parameter LONDEX.set_sell_multiplier(uint256).Multiplier (#572) is not in mixedCase
Parameter LONDEX.tradingStatus(bool)._status (#577) is not in mixedCase
Parameter LONDEX.cooldownEnabled(bool,uint8)._status (#582) is not in mixedCase
Parameter LONDEX.cooldownEnabled(bool,uint8)._interval (#582) is not in mixedCase
Function LONDEX.enable_blacklist(bool) (#646-648) is not in mixedCase
Parameter LONDEX.enable_blacklist(bool)._status (#646) is not in mixedCase
Function LONDEX.manage_blacklist(address[],bool) (#650-654) is not in mixedCase
Parameter LONDEX.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#669) is not in mixedCase
Parameter LONDEX.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#669) is not in mixedCase
Parameter LONDEX.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#669) is not in mixedCase
Parameter LONDEX.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#669) is not in mixedCase
Parameter LONDEX.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#669) is not in mixedCase
Parameter LONDEX.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#679) is not in mixedCase
Parameter LONDEX.setFeeReceivers(address,address,address)._marketingFeeReceiver (#679) is not in mixedCase
Parameter LONDEX.setFeeReceivers(address,address,address)._devFeeReceiver (#679) is not in mixedCase
Parameter LONDEX.setSwapBackSettings(bool,uint256)._enabled (#685) is not in mixedCase
Parameter LONDEX.setSwapBackSettings(bool,uint256)._amount (#685) is not in mixedCase
Parameter LONDEX.setTargetLiquidity(uint256,uint256)._target (#690) is not in mixedCase
Parameter LONDEX.setTargetLiquidity(uint256,uint256)._denominator (#690) is not in mixedCase
Parameter LONDEX.setDistributionCriteria(uint256,uint256)._minPeriod (#695) is not in mixedCase
Parameter LONDEX.setDistributionCriteria(uint256,uint256)._minDistribution (#695) is not in mixedCase
Function LONDEX.multiTransfer_fixed(address,address[],uint256) (#745-764) is not in mixedCase
Variable LONDEX.WBNB (#350) is not in mixedCase
Variable LONDEX.DEAD (#351) is not in mixedCase
Variable LONDEX.ZERO (#352) is not in mixedCase
Constant LONDEX._name (#354) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LONDEX._symbol (#355) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LONDEX._decimals (#356) is not in UPPER_CASE_WITH_UNDERSCORES
Variable LONDEX._totalSupply (#358) is not in mixedCase
Variable LONDEX._maxTxAmount (#360) is not in mixedCase
Variable LONDEX._maxWalletToken (#361) is not in mixedCase
Variable LONDEX._balances (#363) is not in mixedCase
Variable LONDEX._allowances (#364) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#133) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#134)
Prevent variables from having similar names.

Additional information: link

LONDEX.slitherConstructorVariables() (#347-768) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#351)
LONDEX.slitherConstructorVariables() (#347-768) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#352)
LONDEX.slitherConstructorVariables() (#347-768) uses literals with too many digits:
- distributorGas = 500000 (#397)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.WBNB (#193) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#206) should be constant
LONDEX.DEAD (#351) should be constant
LONDEX.WBNB (#350) should be constant
LONDEX.ZERO (#352) should be constant
LONDEX._totalSupply (#358) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#97-99)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#101-103)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#113-117)
tradingStatus(bool) should be declared external:
- LONDEX.tradingStatus(bool) (#577-579)
cooldownEnabled(bool,uint8) should be declared external:
- LONDEX.cooldownEnabled(bool,uint8) (#582-585)
enable_blacklist(bool) should be declared external:
- LONDEX.enable_blacklist(bool) (#646-648)
manage_blacklist(address[],bool) should be declared external:
- LONDEX.manage_blacklist(address[],bool) (#650-654)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account has less than 100 followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Twitter account has few posts


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Young tokens have high risks of price dump / death


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for LDX

News for LDX