SKYNET REWARDS Token Logo

REWARDS [SKYNET REWARDS] Token

About REWARDS

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 17 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

CoinToken.swapETHForTokens(uint256) (#735-750) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
CoinToken.addLiquidity(uint256,uint256) (#752-765) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#655-693):
External calls:
- swapTokens(contractTokenBalance) (#673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#724-730)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
External calls sending eth:
- swapTokens(contractTokenBalance) (#673)
- recipient.transfer(amount) (#976)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _liquidityFee = _previousLiquidityFee (#904)
- _liquidityFee = 0 (#897)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#871)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#796)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#817)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#808)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#819)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _rTotal = _rTotal.sub(rFee) (#826)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#873)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#806)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#816)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#797)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#818)
- buyBackTokens(balance.div(100)) (#681)
- inSwapAndLiquify = true (#483)
- inSwapAndLiquify = false (#485)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- marketingFee = previousMarketingFee (#906)
- marketingFee = 0 (#899)
Apply the check-effects-interactions pattern.

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.

Low level call in Address.sendValue(address,uint256) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-528) performs a multiplication on the result of a division:
-_maxTxAmount = _tTotal.div(1000).mul(3) (#508)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-528) performs a multiplication on the result of a division:
-minimumTokensBeforeSwap = _tTotal.div(10000).mul(2) (#510)
CoinToken.swapTokens(uint256) (#695-706) performs a multiplication on the result of a division:
-transferToAddressETH(lp_poolAddress,transferredBalance.div(_liquidityFee).mul(25)) (#703)
CoinToken.swapTokens(uint256) (#695-706) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingFee.sub(25))) (#704)
Consider ordering multiplication before division.

Additional information: link

CoinToken.addLiquidity(uint256,uint256) (#752-765) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#757-764)
Ensure that all the return values of the function calls are used.

Additional information: link

CoinToken.allowance(address,address).owner (#556) shadows:
- Ownable.owner() (#157-159) (function)
CoinToken._approve(address,address,uint256).owner (#647) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.

Additional information: link

CoinToken.setTaxFee(uint256) (#921-923) should emit an event for:
- _taxFee = taxFee (#922)
CoinToken.setBuybackFee(uint256) (#925-928) should emit an event for:
- buybackFee = _buybackFee (#926)
- _liquidityFee = buybackFee.add(marketingFee) (#927)
CoinToken.setMaxTxAmount(uint256) (#930-932) should emit an event for:
- _maxTxAmount = maxTxAmount (#931)
CoinToken.setMarketingFee(uint256) (#934-937) should emit an event for:
- marketingFee = _marketingFee (#935)
- _liquidityFee = buybackFee.add(marketingFee) (#936)
CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#939-941) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#940)
CoinToken.setBuybackUpperLimit(uint256) (#943-945) should emit an event for:
- buyBackUpperLimit = buyBackLimit (#944)
Emit an event for critical parameter changes.

Additional information: link

CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address)._ma (#488) lacks a zero-check on :
- marketingAddress = address(_ma) (#497)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address)._lp (#488) lacks a zero-check on :
- lp_poolAddress = address(_lp) (#498)
- address(_lp).transfer(msg.value) (#525)
CoinToken.setMarketingAddress(address)._marketingAddress (#947) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#948)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#655-693):
External calls:
- swapTokens(contractTokenBalance) (#673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#724-730)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
External calls sending eth:
- swapTokens(contractTokenBalance) (#673)
- recipient.transfer(amount) (#976)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _previousLiquidityFee = _liquidityFee (#892)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _previousTaxFee = _taxFee (#891)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _tFeeTotal = _tFeeTotal.add(tFee) (#827)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _taxFee = _previousTaxFee (#903)
- _taxFee = 0 (#896)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- buybackFee = previousBuybackFee (#905)
- buybackFee = 0 (#898)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- previousBuybackFee = buybackFee (#893)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- previousMarketingFee = marketingFee (#894)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-528):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#517-518)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#523)
- _isExcludedFromFee[address(this)] = true (#524)
- uniswapV2Router = _uniswapV2Router (#520)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#565-569):
External calls:
- _transfer(sender,recipient,amount) (#566)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#724-730)
External calls sending eth:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#976)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#567)
- _allowances[owner][spender] = amount (#651)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#655-693):
External calls:
- swapTokens(contractTokenBalance) (#673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#724-730)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
External calls sending eth:
- swapTokens(contractTokenBalance) (#673)
- recipient.transfer(amount) (#976)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#749)
- buyBackTokens(balance.div(100)) (#681)
- Transfer(sender,recipient,tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- Transfer(sender,recipient,tTransferAmount) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- Transfer(sender,recipient,tTransferAmount) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- Transfer(sender,recipient,tTransferAmount) (#822)
- _tokenTransfer(from,to,amount,takeFee) (#692)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-528):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#517-518)
External calls sending eth:
- address(_lp).transfer(msg.value) (#525)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#527)
Reentrancy in CoinToken.swapETHForTokens(uint256) (#735-750):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#749)
Reentrancy in CoinToken.swapTokensForEth(uint256) (#715-733):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#724-730)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#732)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#565-569):
External calls:
- _transfer(sender,recipient,amount) (#566)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#724-730)
External calls sending eth:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#976)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#652)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#567)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#192-197) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#194)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

CoinToken.includeInReward(address) (#634-645) has costly operations inside a loop:
- _excluded.pop() (#641)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
CoinToken.addLiquidity(uint256,uint256) (#752-765) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#236) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#237) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#253) is not in mixedCase
Function IUniswapV2Router01.WETH() (#274) is not in mixedCase
Parameter CoinToken.calculateTaxFee(uint256)._amount (#876) is not in mixedCase
Parameter CoinToken.calculateLiquidityFee(uint256)._amount (#882) is not in mixedCase
Parameter CoinToken.setBuybackFee(uint256)._buybackFee (#925) is not in mixedCase
Parameter CoinToken.setMarketingFee(uint256)._marketingFee (#934) is not in mixedCase
Parameter CoinToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#939) is not in mixedCase
Parameter CoinToken.setMarketingAddress(address)._marketingAddress (#947) is not in mixedCase
Parameter CoinToken.setSwapAndLiquifyEnabled(bool)._enabled (#951) is not in mixedCase
Parameter CoinToken.setBuyBackEnabled(bool)._enabled (#956) is not in mixedCase
Parameter CoinToken.presale(bool)._presale (#961) is not in mixedCase
Variable CoinToken.lp_poolAddress (#415) is not in mixedCase
Variable CoinToken._taxFee (#437) is not in mixedCase
Variable CoinToken._maxTxAmount (#450) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#655-693):
External calls:
- swapTokens(contractTokenBalance) (#673)
- recipient.transfer(amount) (#976)
External calls sending eth:
- swapTokens(contractTokenBalance) (#673)
- recipient.transfer(amount) (#976)
- buyBackTokens(balance.div(100)) (#681)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _liquidityFee = _previousLiquidityFee (#904)
- _liquidityFee = 0 (#897)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _previousLiquidityFee = _liquidityFee (#892)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _previousTaxFee = _taxFee (#891)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#871)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#796)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#817)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#808)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#819)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _rTotal = _rTotal.sub(rFee) (#826)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _tFeeTotal = _tFeeTotal.add(tFee) (#827)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#873)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#806)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#816)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#797)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- _taxFee = _previousTaxFee (#903)
- _taxFee = 0 (#896)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- buybackFee = previousBuybackFee (#905)
- buybackFee = 0 (#898)
- buyBackTokens(balance.div(100)) (#681)
- inSwapAndLiquify = true (#483)
- inSwapAndLiquify = false (#485)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- marketingFee = previousMarketingFee (#906)
- marketingFee = 0 (#899)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- previousBuybackFee = buybackFee (#893)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- previousMarketingFee = marketingFee (#894)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#749)
- buyBackTokens(balance.div(100)) (#681)
- Transfer(sender,recipient,tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- Transfer(sender,recipient,tTransferAmount) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- Transfer(sender,recipient,tTransferAmount) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#692)
- Transfer(sender,recipient,tTransferAmount) (#822)
- _tokenTransfer(from,to,amount,takeFee) (#692)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-528):
External calls:
- address(_lp).transfer(msg.value) (#525)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#527)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#565-569):
External calls:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#976)
External calls sending eth:
- _transfer(sender,recipient,amount) (#566)
- recipient.transfer(amount) (#976)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#742-747)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#567)
- _allowances[owner][spender] = amount (#651)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#652)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#567)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#279) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#280)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#786) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#847) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken._getValues(uint256).rTransferAmount (#832) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#805) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#795) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Variable CoinToken._getValues(uint256).rTransferAmount (#832) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#805) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#847) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#795) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#805) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#786) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#613) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#795) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#805) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#795) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken._getValues(uint256).rTransferAmount (#832) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#805) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#795) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#847) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#805) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#613) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#613) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#795) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#786) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#815) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Variable CoinToken._getValues(uint256).rTransferAmount (#832) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#815) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#839)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#847) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#613) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#786) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#815) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#847) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#613) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#786) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken._getValues(uint256).rTransferAmount (#832) is too similar to CoinToken._getValues(uint256).tTransferAmount (#831)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#815) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#786) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#815) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#815)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#815) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#786)
Variable CoinToken._getValues(uint256).rTransferAmount (#832) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#805)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#847) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#613) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#795)
Prevent variables from having similar names.

Additional information: link

CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-528) uses literals with too many digits:
- buyBackUpperLimit = 100000 * 10 ** 18 (#511)
CoinToken.slitherConstructorVariables() (#411-982) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#417)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#177-179)
getTime() should be declared external:
- Ownable.getTime() (#181-183)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#185-190)
unlock() should be declared external:
- Ownable.unlock() (#192-197)
name() should be declared external:
- CoinToken.name() (#530-532)
symbol() should be declared external:
- CoinToken.symbol() (#534-536)
decimals() should be declared external:
- CoinToken.decimals() (#538-540)
transfer(address,uint256) should be declared external:
- CoinToken.transfer(address,uint256) (#551-554)
allowance(address,address) should be declared external:
- CoinToken.allowance(address,address) (#556-558)
approve(address,uint256) should be declared external:
- CoinToken.approve(address,uint256) (#560-563)
transferFrom(address,address,uint256) should be declared external:
- CoinToken.transferFrom(address,address,uint256) (#565-569)
increaseAllowance(address,uint256) should be declared external:
- CoinToken.increaseAllowance(address,uint256) (#571-574)
decreaseAllowance(address,uint256) should be declared external:
- CoinToken.decreaseAllowance(address,uint256) (#576-579)
isExcludedFromReward(address) should be declared external:
- CoinToken.isExcludedFromReward(address) (#581-583)
totalFees() should be declared external:
- CoinToken.totalFees() (#585-587)
minimumTokensBeforeSwapAmount() should be declared external:
- CoinToken.minimumTokensBeforeSwapAmount() (#589-591)
buyBackUpperLimitAmount() should be declared external:
- CoinToken.buyBackUpperLimitAmount() (#593-595)
deliver(uint256) should be declared external:
- CoinToken.deliver(uint256) (#597-604)
reflectionFromToken(uint256,bool) should be declared external:
- CoinToken.reflectionFromToken(uint256,bool) (#607-616)
excludeFromReward(address) should be declared external:
- CoinToken.excludeFromReward(address) (#624-632)
isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#909-911)
excludeFromFee(address) should be declared external:
- CoinToken.excludeFromFee(address) (#913-915)
includeInFee(address) should be declared external:
- CoinToken.includeInFee(address) (#917-919)
setBuyBackEnabled(bool) should be declared external:
- CoinToken.setBuyBackEnabled(bool) (#956-959)
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.


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


Token is deployed only at one blockchain


Token has only one trading pair

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


Unable to find Telegram and Twitter accounts


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


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 REWARDS