Litecoin Token Logo

LTCcoin [Litecoin] Token

ALERT: rug pull scam

About LTCcoin

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 29 June 2022

report
Token seems to be a scam (type: rug pull scam).

LTCcoin.swapAndSendToMarketing(uint256) (#1846-1854) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(newBalance) (#1853)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LTCcoin._transfer(address,address,uint256) (#1751-1844):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1865-1871)
- swapAndSendDividends(sellTokens) (#1789)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1901-1904)
- dividendTracker.distributeETHDividends(newBalance) (#1907)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1883-1889)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1784)
- marketingWallet.transfer(newBalance) (#1853)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1816)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,deadWallet,burnAmount) (#1817)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,to,amount) (#1821)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- swapping = false (#1791)
Apply the check-effects-interactions pattern.

Additional information: link

LTCcoin.claimStuckTokens(address) (#1549-1558) ignores return value by erc20token.transfer(owner(),balance) (#1557)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Contract creator or owner is blacklisted for past scams


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


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.


Token is flagged by TokenSniffer (admin)

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1260-1276):
External calls:
- success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1268)
Reentrancy in LTCcoin.updateDividendTracker(address) (#1511-1535):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1526)
- newDividendTracker.excludeFromDividends(address(this)) (#1527)
- newDividendTracker.excludeFromDividends(owner()) (#1528)
- newDividendTracker.excludeFromDividends(deadWallet) (#1529)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1530)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1534)
Apply the check-effects-interactions pattern.

Additional information: link

LTCcoin._transfer(address,address,uint256).iterations (#1830) is a local variable never initialized
LTCcoin._transfer(address,address,uint256).claims (#1831) is a local variable never initialized
LTCcoin._transfer(address,address,uint256).burnAmount (#1803) is a local variable never initialized
LTCcoin._transfer(address,address,uint256).lastProcessedIndex (#1832) is a local variable never initialized
LTCcoin._transfer(address,address,uint256).fees (#1802) 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

LTCcoin.claim() (#1739-1741) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1740)
LTCcoin._transfer(address,address,uint256) (#1751-1844) ignores return value by dividendTracker.process(gas) (#1829-1842)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1234) shadows:
- ERC20._name (#868) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1234) shadows:
- ERC20._symbol (#869) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1282) shadows:
- Ownable._owner (#662) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1289) shadows:
- Ownable._owner (#662) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1296) shadows:
- Ownable._owner (#662) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1306) shadows:
- Ownable._owner (#662) (state variable)
LTCcoin.setBuyFees(uint16,uint16,uint16)._burn (#1588) shadows:
- ERC20._burn(address,uint256) (#1101-1116) (function)
LTCcoin.setSellFees(uint16,uint16,uint16)._burn (#1600) shadows:
- ERC20._burn(address,uint256) (#1101-1116) (function)
Rename the local variables that shadow another component.

Additional information: link

LTCcoin.setBuyFees(uint16,uint16,uint16) (#1585-1595) should emit an event for:
- totalBuyFee = buyFee.reward + buyFee.marketing (#1594)
LTCcoin.setSellFees(uint16,uint16,uint16) (#1597-1607) should emit an event for:
- totalSellFee = sellFee.reward + sellFee.marketing (#1606)
LTCcoin.setSwapTokens(uint256) (#1621-1623) should emit an event for:
- swapTokensAtAmount = amount (#1622)
Emit an event for critical parameter changes.

Additional information: link

LTCcoin.setswap(address)._addre (#1398) lacks a zero-check on :
- deadWallet = _addre (#1399)
LTCcoin.updateUniswapV2Router(address)._uniswapV2Pair (#1544-1545) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1546)
LTCcoin.setWallets(address)._marketing (#1581) lacks a zero-check on :
- marketingWallet = _marketing (#1582)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1260-1276) has external calls inside a loop: success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'LTCcoin._transfer(address,address,uint256).lastProcessedIndex (#1832)' in LTCcoin._transfer(address,address,uint256) (#1751-1844) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1834-1841)
Variable 'LTCcoin._transfer(address,address,uint256).claims (#1831)' in LTCcoin._transfer(address,address,uint256) (#1751-1844) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1834-1841)
Variable 'LTCcoin._transfer(address,address,uint256).iterations (#1830)' in LTCcoin._transfer(address,address,uint256) (#1751-1844) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1834-1841)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in LTCcoin._transfer(address,address,uint256) (#1751-1844):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1865-1871)
- swapAndSendDividends(sellTokens) (#1789)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1901-1904)
- dividendTracker.distributeETHDividends(newBalance) (#1907)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1883-1889)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1784)
- marketingWallet.transfer(newBalance) (#1853)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1789)
- _allowances[owner][spender] = amount (#1139)
Reentrancy in LTCcoin.constructor() (#1461-1507):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1467-1468)
State variables written after the call(s):
- buyFee.reward = 0 (#1473)
- buyFee.marketing = 0 (#1474)
- buyFee.burn = 0 (#1475)
- sellFee.reward = 0 (#1478)
- sellFee.marketing = 0 (#1479)
- sellFee.burn = 0 (#1480)
- totalBuyFee = buyFee.reward + buyFee.marketing (#1476)
- totalSellFee = sellFee.reward + sellFee.marketing (#1481)
- uniswapV2Pair = _uniswapV2Pair (#1471)
- uniswapV2Router = _uniswapV2Router (#1470)
Reentrancy in LTCcoin.constructor() (#1461-1507):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1467-1468)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1483)
- dividendTracker.excludeFromDividends(pair) (#1633)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1486)
- dividendTracker.excludeFromDividends(address(this)) (#1487)
- dividendTracker.excludeFromDividends(owner()) (#1488)
- dividendTracker.excludeFromDividends(deadWallet) (#1489)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1490)
State variables written after the call(s):
- _mint(address(0x67Ec8afB11b9321258d053E23a74670cB593A226),1000000000 * 10 ** 6 * (10 ** 9)) (#1504)
- _balances[account] += amount (#1084)
- excludeFromFees(owner(),true) (#1493)
- _isExcludedFromFees[account] = excluded (#1565)
- excludeFromFees(marketingWallet,true) (#1494)
- _isExcludedFromFees[account] = excluded (#1565)
- excludeFromFees(deadWallet,true) (#1495)
- _isExcludedFromFees[account] = excluded (#1565)
- excludeFromFees(address(this),true) (#1496)
- _isExcludedFromFees[account] = excluded (#1565)
- _mint(address(0x67Ec8afB11b9321258d053E23a74670cB593A226),1000000000 * 10 ** 6 * (10 ** 9)) (#1504)
- _totalSupply += amount (#1083)
- maxTxAmount = totalSupply().mul(100).div(100) (#1506)
Reentrancy in TOKENDividendTracker.processAccount(address,bool) (#2152-2166):
External calls:
- amount = _withdrawDividendOfUser(account) (#2157)
- success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2160)
Reentrancy in LTCcoin.updateUniswapV2Router(address) (#1537-1547):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1544-1545)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1546)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LTCcoin._setAutomatedMarketMakerPair(address,bool) (#1625-1637):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1633)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1636)
Reentrancy in LTCcoin._transfer(address,address,uint256) (#1751-1844):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1865-1871)
- swapAndSendDividends(sellTokens) (#1789)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1901-1904)
- dividendTracker.distributeETHDividends(newBalance) (#1907)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1883-1889)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1784)
- marketingWallet.transfer(newBalance) (#1853)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1140)
- swapAndSendDividends(sellTokens) (#1789)
- SendDividends(tokens,newBalance) (#1908)
- swapAndSendDividends(sellTokens) (#1789)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,to,amount) (#1821)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,deadWallet,burnAmount) (#1817)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,address(this),fees) (#1816)
Reentrancy in LTCcoin._transfer(address,address,uint256) (#1751-1844):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1865-1871)
- swapAndSendDividends(sellTokens) (#1789)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1901-1904)
- dividendTracker.distributeETHDividends(newBalance) (#1907)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1883-1889)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1823)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1824)
- dividendTracker.process(gas) (#1829-1842)
External calls sending eth:
- swapAndSendToMarketing(marketingTokens) (#1784)
- marketingWallet.transfer(newBalance) (#1853)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1834-1841)
Reentrancy in LTCcoin.constructor() (#1461-1507):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1467-1468)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1483)
- dividendTracker.excludeFromDividends(pair) (#1633)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1636)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1483)
Reentrancy in LTCcoin.constructor() (#1461-1507):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1467-1468)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1483)
- dividendTracker.excludeFromDividends(pair) (#1633)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1486)
- dividendTracker.excludeFromDividends(address(this)) (#1487)
- dividendTracker.excludeFromDividends(owner()) (#1488)
- dividendTracker.excludeFromDividends(deadWallet) (#1489)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1490)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1567)
- excludeFromFees(deadWallet,true) (#1495)
- ExcludeFromFees(account,excluded) (#1567)
- excludeFromFees(marketingWallet,true) (#1494)
- ExcludeFromFees(account,excluded) (#1567)
- excludeFromFees(address(this),true) (#1496)
- ExcludeFromFees(account,excluded) (#1567)
- excludeFromFees(owner(),true) (#1493)
- Transfer(address(0),account,amount) (#1085)
- _mint(address(0x67Ec8afB11b9321258d053E23a74670cB593A226),1000000000 * 10 ** 6 * (10 ** 9)) (#1504)
Reentrancy in TOKENDividendTracker.processAccount(address,bool) (#2152-2166):
External calls:
- amount = _withdrawDividendOfUser(account) (#2157)
- success = IERC20(ETH).transfer(user,_withdrawableDividend) (#1265)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2161)
Reentrancy in LTCcoin.processDividendTracker(uint256) (#1722-1737):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1723-1727)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1729-1736)
Reentrancy in LTCcoin.swapAndSendDividends(uint256) (#1892-1910):
External calls:
- swapTokensForETH(tokens) (#1895)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1883-1889)
- success = IERC20(ETH).transfer(address(dividendTracker),newBalance) (#1901-1904)
- dividendTracker.distributeETHDividends(newBalance) (#1907)
Event emitted after the call(s):
- SendDividends(tokens,newBalance) (#1908)
Reentrancy in LTCcoin.updateDividendTracker(address) (#1511-1535):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1526)
- newDividendTracker.excludeFromDividends(address(this)) (#1527)
- newDividendTracker.excludeFromDividends(owner()) (#1528)
- newDividendTracker.excludeFromDividends(deadWallet) (#1529)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1530)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1532)
Apply the check-effects-interactions pattern.

Additional information: link

TOKENDividendTracker.getAccount(address) (#1990-2037) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#2034-2036)
TOKENDividendTracker.canAutoClaim(uint256) (#2071-2077) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2072)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2076)
Avoid relying on block.timestamp.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0', '^0.8.8']
- >=0.6.2 (#4)
- >=0.6.2 (#102)
- >=0.5.0 (#148)
- ^0.8.8 (#169)
- ^0.8.8 (#236)
- ^0.8.8 (#264)
- ^0.8.8 (#303)
- ^0.8.8 (#373)
- ^0.8.0 (#391)
- ^0.8.0 (#620)
- ^0.8.0 (#646)
- ^0.8.0 (#719)
- ^0.8.0 (#803)
- ^0.8.0 (#832)
- ^0.8.8 (#1188)
- ^0.8.8 (#1363)
Use one Solidity version.

Additional information: link

Context._msgData() (#637-639) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1316-1322) is never used and should be removed
IterableMapping.get(IterableMapping.Map,address) (#180-182) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#578-587) is never used and should be removed
SafeMath.mod(uint256,uint256) (#538-540) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#604-613) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#555-564) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#409-415) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#451-456) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#463-468) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#434-444) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#422-427) is never used and should be removed
SafeMathInt.abs(int256) (#357-360) is never used and should be removed
SafeMathInt.div(int256,int256) (#328-334) is never used and should be removed
SafeMathInt.mul(int256,int256) (#316-323) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.6.2 (#4) allows old versions
Pragma version>=0.6.2 (#102) allows old versions
Pragma version>=0.5.0 (#148) allows old versions
Pragma version^0.8.8 (#169) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#236) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#264) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#303) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#373) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.0 (#391) allows old versions
Pragma version^0.8.0 (#620) allows old versions
Pragma version^0.8.0 (#646) allows old versions
Pragma version^0.8.0 (#719) allows old versions
Pragma version^0.8.0 (#803) allows old versions
Pragma version^0.8.0 (#832) allows old versions
Pragma version^0.8.8 (#1188) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.8 (#1363) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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

Function IUniswapV2Router01.WETH() (#8) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1282) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1289) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1296) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1306) is not in mixedCase
Constant DividendPayingToken.magnitude (#1214) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter LTCcoin.setswap(address)._addre (#1398) is not in mixedCase
Parameter LTCcoin.claimStuckTokens(address)._token (#1549) is not in mixedCase
Parameter LTCcoin.setWallets(address)._marketing (#1581) is not in mixedCase
Parameter LTCcoin.setBuyFees(uint16,uint16,uint16)._reward (#1586) is not in mixedCase
Parameter LTCcoin.setBuyFees(uint16,uint16,uint16)._marketing (#1587) is not in mixedCase
Parameter LTCcoin.setBuyFees(uint16,uint16,uint16)._burn (#1588) is not in mixedCase
Parameter LTCcoin.setSellFees(uint16,uint16,uint16)._reward (#1598) is not in mixedCase
Parameter LTCcoin.setSellFees(uint16,uint16,uint16)._marketing (#1599) is not in mixedCase
Parameter LTCcoin.setSellFees(uint16,uint16,uint16)._burn (#1600) is not in mixedCase
Parameter TOKENDividendTracker.getAccount(address)._account (#1990) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in LTCcoin._transfer(address,address,uint256) (#1751-1844):
External calls:
- swapAndSendToMarketing(marketingTokens) (#1784)
- marketingWallet.transfer(newBalance) (#1853)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1789)
- _allowances[owner][spender] = amount (#1139)
- super._transfer(from,address(this),fees) (#1816)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,deadWallet,burnAmount) (#1817)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- super._transfer(from,to,amount) (#1821)
- _balances[sender] = senderBalance - amount (#1060)
- _balances[recipient] += amount (#1062)
- swapping = false (#1791)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1140)
- swapAndSendDividends(sellTokens) (#1789)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1834-1841)
- SendDividends(tokens,newBalance) (#1908)
- swapAndSendDividends(sellTokens) (#1789)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,deadWallet,burnAmount) (#1817)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,address(this),fees) (#1816)
- Transfer(sender,recipient,amount) (#1064)
- super._transfer(from,to,amount) (#1821)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#13) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#14)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1261) is too similar to TOKENDividendTracker.getAccount(address).withdrawableDividends (#1997)
Prevent variables from having similar names.

Additional information: link

LTCcoin.constructor() (#1461-1507) uses literals with too many digits:
- _mint(address(0x67Ec8afB11b9321258d053E23a74670cB593A226),1000000000 * 10 ** 6 * (10 ** 9)) (#1504)
LTCcoin.updateGasForProcessing(uint256) (#1639-1650) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,TOKEN: gasForProcessing must be between 200,000 and 500,000) (#1640-1643)
LTCcoin.slitherConstructorVariables() (#1366-1911) uses literals with too many digits:
- swapTokensAtAmount = 1000000000 * 10 ** 6 * (10 ** 9) (#1404)
LTCcoin.slitherConstructorVariables() (#1366-1911) uses literals with too many digits:
- gasForProcessing = 300000 (#1410)
TOKENDividendTracker.getAccountAtIndex(uint256) (#2039-2069) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2054-2063)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#311) is never used in SafeMathInt (#309-367)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#695-697)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#703-706)
name() should be declared external:
- ERC20.name() (#888-890)
symbol() should be declared external:
- ERC20.symbol() (#896-898)
decimals() should be declared external:
- ERC20.decimals() (#913-915)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#939-942)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#947-949)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#958-961)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#976-990)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#1004-1007)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#1023-1031)
distributeETHDividends(uint256) should be declared external:
- DividendPayingToken.distributeETHDividends(uint256) (#1239-1250)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1254-1256)
- TOKENDividendTracker.withdrawDividend() (#1952-1957)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1282-1284)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1296-1298)
updateDividendTracker(address) should be declared external:
- LTCcoin.updateDividendTracker(address) (#1511-1535)
updateUniswapV2Router(address) should be declared external:
- LTCcoin.updateUniswapV2Router(address) (#1537-1547)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- LTCcoin.excludeMultipleAccountsFromFees(address[],bool) (#1570-1579)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- LTCcoin.setAutomatedMarketMakerPair(address,bool) (#1609-1619)
updateGasForProcessing(uint256) should be declared external:
- LTCcoin.updateGasForProcessing(uint256) (#1639-1650)
isExcludedFromFees(address) should be declared external:
- LTCcoin.isExcludedFromFees(address) (#1664-1666)
withdrawableDividendOf(address) should be declared external:
- LTCcoin.withdrawableDividendOf(address) (#1668-1674)
dividendTokenBalanceOf(address) should be declared external:
- LTCcoin.dividendTokenBalanceOf(address) (#1676-1682)
getAccountAtIndex(uint256) should be declared external:
- TOKENDividendTracker.getAccountAtIndex(uint256) (#2039-2069)
process(uint256) should be declared external:
- TOKENDividendTracker.process(uint256) (#2098-2150)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Holders:


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


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


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

Contract has 12% buy tax and 9% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

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

Price for LTCcoin