Contract Token Logo

Contract Token

ALERT: dead

About Contract

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 3 April 2024

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).


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

Contract.addLiquidity(uint256,uint256) (#1192-1202) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
Contract.swapBack() (#1142-1176) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Contract._transfer(address,address,uint256) (#1045-1140):
External calls:
- swapBack() (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
External calls sending eth:
- swapBack() (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1405)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1409)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1407)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1411)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1258)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1238)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1280)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1239)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1301)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1281)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1260)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1303)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1415)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _rTotal = _rTotal.sub(rFee) (#1310)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1300)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1279)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1259)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1302)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1417)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _teamTokensToSwap += tLiquidity * _buyDevFee / _liquidityFee (#1406)
- _teamTokensToSwap += tLiquidity * _sellDevFee / _liquidityFee (#1410)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#206) is never initialized. It is used in:
- Ownable.getUnlockTime() (#288-290)
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

Contract._transfer(address,address,uint256) (#1045-1140) uses a dangerous strict equality:
- from != owner() && to != uniswapV2Pair && block.number == tradingActiveBlock (#1067)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Contract.swapBack().success (#1166) is written in both
(success) = address(devWallet).call{value: bnbForTeam}() (#1166)
(success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
Fix or remove the writes.

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.


Contract ownership is not renounced (belongs to a wallet)

Contract._transfer(address,address,uint256) (#1045-1140) uses timestamp for comparisons
Dangerous comparisons:
- boughtEarly[from] && earlyBuyPenaltyEnd <= block.number (#1127)
Avoid relying on block.timestamp.

Additional information: link

Reentrancy in Contract.swapBack() (#1142-1176):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1153)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1162)
- _marketingTokensToSwap = 0 (#1163)
- _teamTokensToSwap = 0 (#1164)
Apply the check-effects-interactions pattern.

Additional information: link

Contract.addLiquidity(uint256,uint256) (#1192-1202) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
Ensure that all the return values of the function calls are used.

Additional information: link

Contract._approve(address,address,uint256).owner (#1034) shadows:
- Ownable.owner() (#223-225) (function)
Contract.allowance(address,address).owner (#827) shadows:
- Ownable.owner() (#223-225) (function)
Rename the local variables that shadow another component.

Additional information: link

Contract.setGasPriceLimit(uint256) (#957-960) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#959)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in Contract.changeRouterVersion(address) (#1521-1545):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1535-1538)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1540)
- uniswapV2Router = _uniswapV2Router (#1543)
Reentrancy in Contract.swapBack() (#1142-1176):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1153)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1169)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
External calls sending eth:
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1169)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1169)
- _allowances[owner][spender] = amount (#1041)
Reentrancy in Contract.transferFrom(address,address,uint256) (#845-860):
External calls:
- _transfer(sender,recipient,amount) (#850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
External calls sending eth:
- _transfer(sender,recipient,amount) (#850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#851-858)
- _allowances[owner][spender] = amount (#1041)
Reentrancy in Contract._transfer(address,address,uint256) (#1045-1140):
External calls:
- swapBack() (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
External calls sending eth:
- swapBack() (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
State variables written after the call(s):
- removeAllFee() (#1115)
- _liquidityFee = 0 (#1439)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyDevFee (#1117)
- removeAllFee() (#1122)
- _liquidityFee = 0 (#1439)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellDevFee (#1124)
- _liquidityFee = _liquidityFee * 3 (#1129)
- removeAllFee() (#1133)
- _liquidityFee = 0 (#1439)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _liquidityFee = _previousLiquidityFee (#1444)
- _liquidityFee = 0 (#1439)
- removeAllFee() (#1115)
- _previousLiquidityFee = _liquidityFee (#1436)
- removeAllFee() (#1122)
- _previousLiquidityFee = _liquidityFee (#1436)
- removeAllFee() (#1133)
- _previousLiquidityFee = _liquidityFee (#1436)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousLiquidityFee = _liquidityFee (#1436)
- removeAllFee() (#1115)
- _previousTaxFee = _taxFee (#1435)
- removeAllFee() (#1122)
- _previousTaxFee = _taxFee (#1435)
- removeAllFee() (#1133)
- _previousTaxFee = _taxFee (#1435)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _previousTaxFee = _taxFee (#1435)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1311)
- removeAllFee() (#1115)
- _taxFee = 0 (#1438)
- _taxFee = _buyTaxFee (#1116)
- removeAllFee() (#1122)
- _taxFee = 0 (#1438)
- _taxFee = _sellTaxFee (#1123)
- _taxFee = _taxFee * 3 (#1128)
- removeAllFee() (#1133)
- _taxFee = 0 (#1438)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- _taxFee = _previousTaxFee (#1443)
- _taxFee = 0 (#1438)
- buyOrSellSwitch = TRANSFER (#1111)
- buyOrSellSwitch = BUY (#1118)
- buyOrSellSwitch = SELL (#1125)
- buyOrSellSwitch = TRANSFER (#1134)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Contract._transfer(address,address,uint256) (#1045-1140):
External calls:
- swapBack() (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
External calls sending eth:
- swapBack() (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1242)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1263)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1284)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
- Transfer(sender,recipient,tTransferAmount) (#1306)
- _tokenTransfer(from,to,amount,takeFee) (#1138)
Reentrancy in Contract.swapBack() (#1142-1176):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1153)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1169)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
External calls sending eth:
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1169)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1042)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1169)
- SwapAndLiquify(amountToSwapForBNB,bnbForLiquidity,tokensForLiquidity) (#1170)
Reentrancy in Contract.transferForeignToken(address,address) (#1550-1560):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1558)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1559)
Reentrancy in Contract.transferFrom(address,address,uint256) (#845-860):
External calls:
- _transfer(sender,recipient,amount) (#850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1183-1189)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
External calls sending eth:
- _transfer(sender,recipient,amount) (#850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1194-1201)
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1042)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#851-858)
Reentrancy in Contract.changeRouterVersion(address) (#1521-1545):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1535-1538)
Event emitted after the call(s):
- UpdatedRouter(_router) (#1544)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#104-115) uses assembly
- INLINE ASM (#111-113)
Address._functionCallWithValue(address,bytes,uint256,string) (#173-196) uses assembly
- INLINE ASM (#188-191)
Do not use evm assembly.

Additional information: link

Contract.includeInReward(address) (#1012-1023) has costly operations inside a loop:
- _excluded.pop() (#1019)
Use a local variable to hold the loop computation result.

Additional information: link

Address.sendValue(address,uint256) (#117-129) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#146-158) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-97) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#160-171) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#173-196) is never used and should be removed
Address.isContract(address) (#104-115) is never used and should be removed
Address.functionCall(address,bytes,string) (#138-144) is never used and should be removed
Address.functionCall(address,bytes) (#131-136) is never used and should be removed
Remove unused functions.

Additional information: link

Contract._previousLiquidityFee (#712) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Contract._previousTaxFee (#710) is set pre-construction with a non-constant function or state variable:
- _taxFee
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 version0.8.9 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 is not recommended for deployment
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 Contract.swapBack() (#1142-1176):
- (success) = address(devWallet).call{value: bnbForTeam}() (#1166)
- (success,None) = address(marketingWallet).call{value: bnbForMarketing}() (#1167)
- (success,None) = address(marketingWallet).call{value: address(this).balance}() (#1174)
Low level call in Address.sendValue(address,uint256) (#117-129):
- (success) = recipient.call{value: amount}() (#124)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#173-196):
- (success,returndata) = target.call{value: weiValue}(data) (#181-183)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Contract._buyLiquidityFee (#686) is not in mixedCase
Variable Contract._isExcludedMaxTransactionAmount (#664) is not in mixedCase
Constant Contract._tTotal (#675) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter Contract.setLiquidityWallet(address)._liquidityWallet (#1505) is not in mixedCase
Parameter Contract.setSwapAndLiquifyEnabled(bool)._enabled (#1512) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#367) is not in mixedCase
Variable Contract._sellDevFee (#694) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#397) is not in mixedCase
Parameter Contract.calculateLiquidityFee(uint256)._amount (#1424) is not in mixedCase
Variable Contract._sellTaxFee (#691) is not in mixedCase
Variable Contract._sellMarketingFee (#693) is not in mixedCase
Parameter Contract.calculateTaxFee(uint256)._amount (#1420) is not in mixedCase
Parameter Contract.transferForeignToken(address,address)._to (#1550) is not in mixedCase
Variable Contract._sellLiquidityFee (#692) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#365) is not in mixedCase
Constant Contract._decimals (#672) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter Contract.setMarketingWallet(address)._marketingWallet (#1491) is not in mixedCase
Variable Contract._buyTaxFee (#685) is not in mixedCase
Parameter Contract.setDevWallet(address)._devWallet (#1498) is not in mixedCase
Parameter Contract.changeRouterVersion(address)._router (#1521) is not in mixedCase
Variable Contract._buyMarketingFee (#687) is not in mixedCase
Variable Contract._buyDevFee (#688) is not in mixedCase
Variable Contract._isExcludedMaxWalletAmount (#665) is not in mixedCase
Function IUniswapV2Router01.WETH() (#442) is not in mixedCase
Parameter Contract.transferForeignToken(address,address)._token (#1550) is not in mixedCase
Parameter Contract.addPresaleAddressForExclusions(address)._presaleAddress (#913) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable Contract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1379) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable Contract._getValues(uint256).rTransferAmount (#1331) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract._transferFromExcluded(address,address,uint256).rTransferAmount (#1273) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Variable Contract._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._transferBothExcluded(address,address,uint256).rTransferAmount (#1294) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Variable Contract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1379) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Variable Contract._transferFromExcluded(address,address,uint256).rTransferAmount (#1273) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable Contract.reflectionFromToken(uint256,bool).rTransferAmount (#984) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract._transferToExcluded(address,address,uint256).rTransferAmount (#1252) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1379) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract._getValues(uint256).rTransferAmount (#1331) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract.reflectionFromToken(uint256,bool).rTransferAmount (#984) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract.reflectionFromToken(uint256,bool).rTransferAmount (#984) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Variable Contract._transferBothExcluded(address,address,uint256).rTransferAmount (#1294) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._transferBothExcluded(address,address,uint256).rTransferAmount (#1294) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract._transferFromExcluded(address,address,uint256).rTransferAmount (#1273) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Variable Contract._transferToExcluded(address,address,uint256).rTransferAmount (#1252) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1379) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract._getValues(uint256).rTransferAmount (#1331) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable Contract.reflectionFromToken(uint256,bool).rTransferAmount (#984) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._transferToExcluded(address,address,uint256).rTransferAmount (#1252) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable Contract._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#447) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#448)
Variable Contract.reflectionFromToken(uint256,bool).rTransferAmount (#984) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable Contract._transferBothExcluded(address,address,uint256).rTransferAmount (#1294) is too similar to Contract._transferBothExcluded(address,address,uint256).tTransferAmount (#1296)
Variable Contract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1379) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract._transferToExcluded(address,address,uint256).rTransferAmount (#1252) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract._getValues(uint256).rTransferAmount (#1331) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._transferBothExcluded(address,address,uint256).rTransferAmount (#1294) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract.reflectionFromToken(uint256,bool).rTransferAmount (#984) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract._transferFromExcluded(address,address,uint256).rTransferAmount (#1273) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._transferBothExcluded(address,address,uint256).rTransferAmount (#1294) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract._getValues(uint256).rTransferAmount (#1331) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract._transferToExcluded(address,address,uint256).rTransferAmount (#1252) is too similar to Contract._transferStandard(address,address,uint256).tTransferAmount (#1234)
Variable Contract._transferFromExcluded(address,address,uint256).rTransferAmount (#1273) is too similar to Contract._transferToExcluded(address,address,uint256).tTransferAmount (#1254)
Variable Contract._getValues(uint256).rTransferAmount (#1331) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Variable Contract._transferFromExcluded(address,address,uint256).rTransferAmount (#1273) is too similar to Contract._getTValues(uint256).tTransferAmount (#1358)
Variable Contract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1379) is too similar to Contract._transferFromExcluded(address,address,uint256).tTransferAmount (#1275)
Variable Contract._transferToExcluded(address,address,uint256).rTransferAmount (#1252) is too similar to Contract._getValues(uint256).tTransferAmount (#1327)
Prevent variables from having similar names.

Additional information: link

Contract.slitherConstructorVariables() (#647-1563) uses literals with too many digits:
- burnWallet = 0x000000000000000000000000000000000000dEaD (#655)
Contract.slitherConstructorVariables() (#647-1563) uses literals with too many digits:
- gasMaxLimit = 50000000 (#724)
Contract.slitherConstructorConstantVariables() (#647-1563) uses literals with too many digits:
- _tTotal = 10000000 * (10 ** _decimals) (#675)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#204) is never used in Contract (#647-1563)
Contract.feeDenominator (#713) is never used in Contract (#647-1563)
Contract.quickScope (#698) is never used in Contract (#647-1563)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#204) should be constant
Contract.minimumTokensBeforeSwap (#700) should be constant
Contract.quickScope (#698) should be constant
Contract.feeDenominator (#713) should be constant
Contract.maxTransactionAmount (#681) should be constant
Ownable._lockTime (#206) should be constant
Contract.matchDuration (#699) should be constant
Contract.maxWalletAmount (#682) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Ownable.authorize(address) (#253-255)
name() should be declared external:
- Contract.name() (#797-799)
symbol() should be declared external:
- Contract.symbol() (#801-803)
unauthorize(address) should be declared external:
- Ownable.unauthorize(address) (#260-262)
getTime() should be declared external:
- Ownable.getTime() (#295-297)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#288-290)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Contract.setSwapAndLiquifyEnabled(bool) (#1512-1515)
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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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

Contract has 10% buy tax and 11% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token has no transactions for more than 100 days. It seems dead / abandoned.


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 has a considerable age, but we're still unable to find its website


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for Contract