NLC Token Logo

NLC Token

About NLC

Listings

Not Found
Token 2 years
white paper

NoLimitCoin (NLC) is a cryptocurrency designed to power online gaming applications. It provides safe and extremely fast transactions, at very low cost.

Laser Scorebeta Last Audit: 19 February 2022

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

Reentrancy in NLCToken._transfer(address,address,uint256) (#1214-1268):
External calls:
- swapAndLiquify(contractTokenBalance) (#1245)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1245)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1124)
- _rOwned[fomoAdmin] = _rOwned[fomoAdmin].add(rDev) (#1440)
- _rOwned[_burnWallet] = _rOwned[_burnWallet].add(rBurn) (#1134)
- _rOwned[contributionWallet] = _rOwned[contributionWallet].add(rContribution) (#1144)
- i < awardsFoMoAddressCount (#1421)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1350)
- _rOwned[awardsFoMoAddress[i]] = _rOwned[awardsFoMoAddress[i]].add(_revenlySplitTheReward) (#1422)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1365)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1380)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1005)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1351)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1367)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1381)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1007)
- _rOwned[fomoAdmin] = _rOwned[fomoAdmin].sub(_revenlySplitTheReward) (#1426)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _rTotal = _rTotal.sub(rFee) (#1056)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1126)
- _tOwned[fomoAdmin] = _tOwned[fomoAdmin].add(tDev) (#1442)
- _tOwned[_burnWallet] = _tOwned[_burnWallet].add(tBurn) (#1136)
- _tOwned[contributionWallet] = _tOwned[contributionWallet].add(tContribution) (#1146)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1379)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1004)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1366)
- _tOwned[awardsFoMoAddress[i]] = _tOwned[awardsFoMoAddress[i]].add(_tevenlySplitTheReward) (#1424)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1006)
- _tOwned[fomoAdmin] = _tOwned[fomoAdmin].sub(_tevenlySplitTheReward) (#1428)
Apply the check-effects-interactions pattern.

Additional information: link

NLCToken.addLiquidity(uint256,uint256) (#1311-1324) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
Ensure that all the return values of the function calls are used.

Additional information: link

NLCToken.allowance(address,address).owner (#904) shadows:
- Ownable.owner() (#535-537) (function)
NLCToken._approve(address,address,uint256).owner (#1206) shadows:
- Ownable.owner() (#535-537) (function)
Rename the local variables that shadow another component.

Additional information: link

NLCToken.setMinLastBuyBalance(uint256) (#973-975) should emit an event for:
- _minLastBuyBalance = minBalance (#974)
NLCToken.setTaxFeePercent(uint256) (#1024-1026) should emit an event for:
- _taxFee = taxFee (#1025)
NLCToken.setLastBuyFeePercent(uint256) (#1028-1030) should emit an event for:
- _lastBuyFee = lastBuyFee (#1029)
NLCToken.setBurnFeePercent(uint256) (#1032-1034) should emit an event for:
- _burnFee = burnFee (#1033)
NLCToken.setLiquidityFeePercent(uint256) (#1036-1038) should emit an event for:
- _liquidityFee = liquidityFee (#1037)
NLCToken.setMaxTxPercent(uint256) (#1041-1045) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1042-1044)
Emit an event for critical parameter changes.

Additional information: link

NLCToken.setBurnAddress(address).burn (#965) lacks a zero-check on :
- _burnWallet = burn (#966)
NLCToken.setContributionAddress(address).contribution (#969) lacks a zero-check on :
- contributionWallet = contribution (#970)
NLCToken.setFomoAdmin(address)._fomoAdmin (#1391) lacks a zero-check on :
- fomoAdmin = _fomoAdmin (#1392)
Check that the address is not zero.

Additional information: link

Reentrancy in NLCToken._transfer(address,address,uint256) (#1214-1268):
External calls:
- swapAndLiquify(contractTokenBalance) (#1245)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1245)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _burnFee = _previousBurnFee (#1197)
- _burnFee = 0 (#1189)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _contributionFee = _previousContributionFee (#1199)
- _contributionFee = 0 (#1191)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _lastBuyFee = _previousLastBuyFee (#1196)
- _lastBuyFee = 0 (#1188)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _liquidityFee = _previousLiquidityFee (#1198)
- _liquidityFee = 0 (#1190)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _previousBurnFee = _burnFee (#1183)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _previousContributionFee = _contributionFee (#1185)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _previousLastBuyFee = _lastBuyFee (#1182)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _previousLiquidityFee = _liquidityFee (#1184)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _previousTaxFee = _taxFee (#1181)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1057)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- _taxFee = _previousTaxFee (#1195)
- _taxFee = 0 (#1187)
- pushAwardsFoMoAddress(to) (#1265)
- awardsFoMoAddress[awardsFoMoAddressIndex] = _awardsFoMoAddress (#1406)
- pushAwardsFoMoAddress(to) (#1265)
- awardsFoMoAddressCount += 1 (#1409)
- pushAwardsFoMoAddress(to) (#1265)
- awardsFoMoAddressIndex = 0 (#1404)
- awardsFoMoAddressIndex += 1 (#1407)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- openTimeFoMo = block.timestamp + 86400 (#1431)
- openTimeFoMo = block.timestamp + 86400 (#1266)
Reentrancy in NLCToken.constructor() (#859-876):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#865-866)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#872)
- _isExcludedFromFee[address(this)] = true (#873)
- awardsFoMoAddress[0] = contributionWallet (#874)
- uniswapV2Router = _uniswapV2Router (#869)
Reentrancy in NLCToken.swapAndLiquify(uint256) (#1270-1291):
External calls:
- swapTokensForEth(half) (#1282)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
- addLiquidity(otherHalf,newBalance) (#1288)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1288)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1288)
- _allowances[owner][spender] = amount (#1210)
Reentrancy in NLCToken.transferFrom(address,address,uint256) (#913-917):
External calls:
- _transfer(sender,recipient,amount) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
External calls sending eth:
- _transfer(sender,recipient,amount) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#915)
- _allowances[owner][spender] = amount (#1210)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in NLCToken._transfer(address,address,uint256) (#1214-1268):
External calls:
- swapAndLiquify(contractTokenBalance) (#1245)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1245)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
Event emitted after the call(s):
- Transfer(address(this),_burnWallet,tBurn) (#1137)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(address(this),contributionWallet,tContribution) (#1147)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(sender,fomoAdmin,tDev) (#1443)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(sender,recipient,tTransferAmount) (#1360)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(fomoAdmin,awardsFoMoAddress[i],_tevenlySplitTheReward) (#1429)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(sender,recipient,tTransferAmount) (#1388)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(sender,recipient,tTransferAmount) (#1374)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
- Transfer(sender,recipient,tTransferAmount) (#1013)
- _tokenTransfer(from,to,amount,takeFee) (#1258)
Reentrancy in NLCToken.constructor() (#859-876):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#865-866)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#875)
Reentrancy in NLCToken.swapAndLiquify(uint256) (#1270-1291):
External calls:
- swapTokensForEth(half) (#1282)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
- addLiquidity(otherHalf,newBalance) (#1288)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1288)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1211)
- addLiquidity(otherHalf,newBalance) (#1288)
- SwapAndLiquify(half,newBalance,otherHalf) (#1290)
Reentrancy in NLCToken.transferFrom(address,address,uint256) (#913-917):
External calls:
- _transfer(sender,recipient,amount) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1302-1308)
External calls sending eth:
- _transfer(sender,recipient,amount) (#914)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1316-1323)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1211)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#915)
Apply the check-effects-interactions pattern.

Additional information: link

NLCToken._awardsFoMo() (#1414-1434) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp > openTimeFoMo && awardsFoMoAddressCount > 0 (#1415)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#341-350) uses assembly
- INLINE ASM (#348)
Address._verifyCallResult(bool,bytes,string) (#486-503) uses assembly
- INLINE ASM (#495-498)
Do not use evm assembly.

Additional information: link

NLCToken.includeInReward(address) (#989-1000) has costly operations inside a loop:
- _excluded.pop() (#996)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#486-503) is never used and should be removed
Address.functionCall(address,bytes) (#394-396) is never used and should be removed
Address.functionCall(address,bytes,string) (#404-406) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#419-421) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#429-436) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#468-470) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#478-484) is never used and should be removed
Address.functionStaticCall(address,bytes) (#444-446) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#454-460) is never used and should be removed
Address.isContract(address) (#341-350) is never used and should be removed
Address.sendValue(address,uint256) (#368-374) is never used and should be removed
Context._msgData() (#314-317) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#269-274) is never used and should be removed
SafeMath.mod(uint256,uint256) (#229-231) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#291-296) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#100-106) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#142-147) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#154-159) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#125-135) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#113-118) is never used and should be removed
Remove unused functions.

Additional information: link

NLCToken._rTotal (#788) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
NLCToken._previousTaxFee (#801) is set pre-construction with a non-constant function or state variable:
- _taxFee
NLCToken._previousLastBuyFee (#804) is set pre-construction with a non-constant function or state variable:
- _lastBuyFee
NLCToken._previousBurnFee (#807) is set pre-construction with a non-constant function or state variable:
- _burnFee
NLCToken._previousLiquidityFee (#810) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
NLCToken._previousContributionFee (#813) is set pre-construction with a non-constant function or state variable:
- _contributionFee
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.8.3 (#8) 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) (#368-374):
- (success) = recipient.call{value: amount}() (#372)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#429-436):
- (success,returndata) = target.call{value: value}(data) (#434)
Low level call in Address.functionStaticCall(address,bytes,string) (#454-460):
- (success,returndata) = target.staticcall(data) (#458)
Low level call in Address.functionDelegateCall(address,bytes,string) (#478-484):
- (success,returndata) = target.delegatecall(data) (#482)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#601) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#602) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#619) is not in mixedCase
Function IUniswapV2Router01.WETH() (#639) is not in mixedCase
Parameter NLCToken.setSwapAndLiquifyEnabled(bool)._enabled (#1047) is not in mixedCase
Parameter NLCToken.calculateTaxFee(uint256)._amount (#1150) is not in mixedCase
Parameter NLCToken.calculateLastBuyFee(uint256)._amount (#1156) is not in mixedCase
Parameter NLCToken.calculateBurnFee(uint256)._amount (#1162) is not in mixedCase
Parameter NLCToken.calculateLiquidityFee(uint256)._amount (#1168) is not in mixedCase
Parameter NLCToken.calculateContributionFee(uint256)._amount (#1174) is not in mixedCase
Parameter NLCToken.setFomoAdmin(address)._fomoAdmin (#1391) is not in mixedCase
Parameter NLCToken.pushAwardsFoMoAddress(address)._awardsFoMoAddress (#1402) is not in mixedCase
Variable NLCToken._AddressExists (#776) is not in mixedCase
Variable NLCToken._burnWallet (#791) is not in mixedCase
Variable NLCToken._lastBuyWalletAddress (#792) is not in mixedCase
Variable NLCToken._taxFee (#800) is not in mixedCase
Variable NLCToken._lastBuyFee (#803) is not in mixedCase
Variable NLCToken._burnFee (#806) is not in mixedCase
Variable NLCToken._liquidityFee (#809) is not in mixedCase
Variable NLCToken._contributionFee (#812) is not in mixedCase
Variable NLCToken._maxTxAmount (#826) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#315)" inContext (#309-318)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#644) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#645)
Variable NLCToken._awardsFoMo()._revenlySplitTheReward (#1420) is too similar to NLCToken._awardsFoMo()._tevenlySplitTheReward (#1419)
Variable NLCToken._awardsFoMo()._rfomoTokenBalance (#1418) is too similar to NLCToken._awardsFoMo()._tfomoTokenBalance (#1416)
Variable NLCToken._getRValues(NLCToken.TData).rContribution (#1098) is too similar to NLCToken._getTValues(uint256).tContribution (#1084)
Variable NLCToken._getRValues(NLCToken.TData).rContribution (#1098) is too similar to NLCToken._transferToExcluded(address,address,uint256).tContribution (#1364)
Variable NLCToken._takeContribution(uint256).rContribution (#1142) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tContribution (#1003)
Variable NLCToken._getRValues(NLCToken.TData).rContribution (#1098) is too similar to NLCToken._takeContribution(uint256).tContribution (#1140)
Variable NLCToken._getRValues(NLCToken.TData).rContribution (#1098) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tContribution (#1003)
Variable NLCToken._takeContribution(uint256).rContribution (#1142) is too similar to NLCToken._transferToExcluded(address,address,uint256).tContribution (#1364)
Variable NLCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1378) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken.reflectionFromToken(uint256,bool).rTransferAmount (#954) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken._transferToExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1378) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._transferStandard(address,address,uint256).rTransferAmount (#1349) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken.reflectionFromToken(uint256,bool).rTransferAmount (#954) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Variable NLCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1378) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._transferStandard(address,address,uint256).rTransferAmount (#1349) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Variable NLCToken._getValues(uint256).rTransferAmount (#1074) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Variable NLCToken.reflectionFromToken(uint256,bool).rTransferAmount (#954) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken._getValues(uint256).rTransferAmount (#1074) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Variable NLCToken._transferStandard(address,address,uint256).rTransferAmount (#1349) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken._getRValues(NLCToken.TData).rTransferAmount (#1100) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken.reflectionFromToken(uint256,bool).rTransferAmount (#954) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._transferStandard(address,address,uint256).rTransferAmount (#1349) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1378) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken._getRValues(NLCToken.TData).rTransferAmount (#1100) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken.reflectionFromToken(uint256,bool).rTransferAmount (#954) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken._transferToExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1378) is too similar to NLCToken._getTValues(uint256).tTransferAmount (#1087)
Variable NLCToken._transferStandard(address,address,uint256).rTransferAmount (#1349) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1378) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Variable NLCToken._getValues(uint256).rTransferAmount (#1074) is too similar to NLCToken._transferToExcluded(address,address,uint256).tTransferAmount (#1364)
Variable NLCToken._getRValues(NLCToken.TData).rContribution (#1098) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tContribution (#1378)
Variable NLCToken._takeContribution(uint256).rContribution (#1142) is too similar to NLCToken._takeContribution(uint256).tContribution (#1140)
Variable NLCToken._takeContribution(uint256).rContribution (#1142) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tContribution (#1378)
Variable NLCToken._getRValues(NLCToken.TData).rContribution (#1098) is too similar to NLCToken._transferStandard(address,address,uint256).tContribution (#1349)
Variable NLCToken._takeContribution(uint256).rContribution (#1142) is too similar to NLCToken._getTValues(uint256).tContribution (#1084)
Variable NLCToken._takeContribution(uint256).rContribution (#1142) is too similar to NLCToken._transferStandard(address,address,uint256).tContribution (#1349)
Variable NLCToken._getRValues(NLCToken.TData).rTransferAmount (#1100) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken._transferToExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken._transferStandard(address,address,uint256).rTransferAmount (#1349) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._getValues(uint256).rTransferAmount (#1074) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken._getRValues(NLCToken.TData).rTransferAmount (#1100) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._transferToExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to NLCToken._transferStandard(address,address,uint256).tTransferAmount (#1349)
Variable NLCToken.reflectionFromToken(uint256,bool).rTransferAmount (#954) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._getValues(uint256).rTransferAmount (#1074) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._getRValues(NLCToken.TData).rTransferAmount (#1100) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._transferToExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to NLCToken._getValues(uint256).tTransferAmount (#1071)
Variable NLCToken._getValues(uint256).rTransferAmount (#1074) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._getRValues(NLCToken.TData).rTransferAmount (#1100) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Variable NLCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1003) is too similar to NLCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1378)
Variable NLCToken._transferToExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to NLCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1003)
Prevent variables from having similar names.

Additional information: link

NLCToken.slitherConstructorVariables() (#772-1447) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 6 * 10 ** 9 (#787)
NLCToken.slitherConstructorVariables() (#772-1447) uses literals with too many digits:
- _burnWallet = 0x000000000000000000000000000000000000dEaD (#791)
NLCToken.slitherConstructorVariables() (#772-1447) uses literals with too many digits:
- _minLastBuyBalance = 100000000 (#794)
NLCToken.slitherConstructorVariables() (#772-1447) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 6 * 10 ** 9 (#826)
NLCToken.slitherConstructorVariables() (#772-1447) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#828)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

NLCToken._AddressExists (#776) is never used in NLCToken (#772-1447)
NLCToken.swapIndex (#830) is never used in NLCToken (#772-1447)
Remove unused state variables.

Additional information: link

NLCToken._decimals (#798) should be constant
NLCToken._lastBuyWalletAddress (#792) should be constant
NLCToken._name (#796) should be constant
NLCToken._symbol (#797) should be constant
NLCToken._tTotal (#787) should be constant
NLCToken.numTokensSellToAddToLiquidity (#828) should be constant
NLCToken.router (#819) should be constant
NLCToken.swapIndex (#830) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#554-557)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#563-567)
name() should be declared external:
- NLCToken.name() (#878-880)
symbol() should be declared external:
- NLCToken.symbol() (#882-884)
decimals() should be declared external:
- NLCToken.decimals() (#886-888)
totalSupply() should be declared external:
- NLCToken.totalSupply() (#890-892)
transfer(address,uint256) should be declared external:
- NLCToken.transfer(address,uint256) (#899-902)
allowance(address,address) should be declared external:
- NLCToken.allowance(address,address) (#904-906)
approve(address,uint256) should be declared external:
- NLCToken.approve(address,uint256) (#908-911)
transferFrom(address,address,uint256) should be declared external:
- NLCToken.transferFrom(address,address,uint256) (#913-917)
increaseAllowance(address,uint256) should be declared external:
- NLCToken.increaseAllowance(address,uint256) (#919-922)
decreaseAllowance(address,uint256) should be declared external:
- NLCToken.decreaseAllowance(address,uint256) (#924-927)
isExcludedFromReward(address) should be declared external:
- NLCToken.isExcludedFromReward(address) (#929-931)
totalFees() should be declared external:
- NLCToken.totalFees() (#933-935)
deliver(uint256) should be declared external:
- NLCToken.deliver(uint256) (#939-946)
reflectionFromToken(uint256,bool) should be declared external:
- NLCToken.reflectionFromToken(uint256,bool) (#948-957)
setBurnAddress(address) should be declared external:
- NLCToken.setBurnAddress(address) (#965-967)
setContributionAddress(address) should be declared external:
- NLCToken.setContributionAddress(address) (#969-971)
setMinLastBuyBalance(uint256) should be declared external:
- NLCToken.setMinLastBuyBalance(uint256) (#973-975)
setLimitStatus(bool) should be declared external:
- NLCToken.setLimitStatus(bool) (#976-978)
excludeFromReward(address) should be declared external:
- NLCToken.excludeFromReward(address) (#980-987)
excludeFromFee(address) should be declared external:
- NLCToken.excludeFromFee(address) (#1016-1018)
includeInFee(address) should be declared external:
- NLCToken.includeInFee(address) (#1020-1022)
setSwapAndLiquifyEnabled(bool) should be declared external:
- NLCToken.setSwapAndLiquifyEnabled(bool) (#1047-1050)
isExcludedFromFee(address) should be declared external:
- NLCToken.isExcludedFromFee(address) (#1202-1204)
setFomoAdmin(address) should be declared external:
- NLCToken.setFomoAdmin(address) (#1391-1393)
getAwardsFoMoAddress() should be declared external:
- NLCToken.getAwardsFoMoAddress() (#1395-1397)
Use the external attribute for functions never called from the contract.

Additional information: link

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 15% buy tax and 14% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Telegram account has relatively few subscribers


Unable to find Youtube account


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find token on CoinHunt

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for NLC

News for NLC