Crypto Service for Airdrop, ICO , Audit, Promotions, Coin Developments. GET your FREE COIN NOW!
CoinNetwork.airdrop(address) (#1076-1089) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1085)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CoinNetwork._transfer(address,address,uint256) (#607-659):
External calls:
- swapTokens(contractTokenBalance) (#630)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- swapTokens(contractTokenBalance) (#630)
- recipient.transfer(amount) (#1001)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#841)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#766)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#755)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#756)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rTotal = _rTotal.sub(rFee) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#843)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#776)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#786)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#767)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#788)
Apply the check-effects-interactions pattern.
Additional information: link
CoinNetwork.swapTokenForTokens(address,address,uint256) (#710-713) ignores return value by tokenC.transfer(account,amount) (#712)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Contract ownership is not renounced (belongs to a wallet)
CoinNetwork._transferStandard(address,address,uint256) (#748-762) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#751)
Consider ordering multiplication before division.
Additional information: link
CoinNetwork.addLiquidity(uint256,uint256) (#715-728) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#720-727)
Ensure that all the return values of the function calls are used.
Additional information: link
CoinNetwork.allowance(address,address).owner (#503) shadows:
- Ownable.owner() (#156-158) (function)
CoinNetwork._approve(address,address,uint256).owner (#599) shadows:
- Ownable.owner() (#156-158) (function)
CoinNetwork.increaseSpenderAllowance(address,address,uint256).owner (#846) shadows:
- Ownable.owner() (#156-158) (function)
Rename the local variables that shadow another component.
Additional information: link
CoinNetwork.setTaxFeePercent(uint256) (#911-913) should emit an event for:
- _taxFee = taxFee (#912)
CoinNetwork.setLiquidityFeePercent(uint256) (#915-917) should emit an event for:
- _liquidityFee = liquidityFee (#916)
CoinNetwork.setBuyTaxFeePercent(uint256) (#919-921) should emit an event for:
- _buyTaxFee = buyTaxFee (#920)
CoinNetwork.setBuyLiquidityFeePercent(uint256) (#923-925) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#924)
CoinNetwork.setSellTaxFeePercent(uint256) (#927-929) should emit an event for:
- _sellTaxFee = sellTaxFee (#928)
CoinNetwork.setSellLiquidityFeePercent(uint256) (#931-933) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#932)
CoinNetwork.setBurnFeePercent(uint256) (#935-937) should emit an event for:
- _burnFee = burnTaxFee (#936)
CoinNetwork.setMaxTxAmount(uint256) (#939-941) should emit an event for:
- _maxTxAmount = maxTxAmount (#940)
CoinNetwork.setMarketingFeePercent(uint256) (#943-945) should emit an event for:
- marketingDivisor = divisor (#944)
CoinNetwork.setCharityFeePercent(uint256) (#947-949) should emit an event for:
- charityDivisor = divisor (#948)
CoinNetwork.setNumTokensSellToAddToLiquidity(uint256) (#951-953) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#952)
CoinNetwork.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#955-965) should emit an event for:
- charityDivisor = charity (#956)
- marketingDivisor = marketting (#957)
- _burnFee = burnTaxFee (#958)
- _sellLiquidityFee = sellLiquidityFee (#959)
- _sellTaxFee = sellTaxFee (#960)
- _buyLiquidityFee = buyLiquidityFee (#961)
- _buyTaxFee = buyTaxFee (#962)
- _liquidityFee = liquidityFee (#963)
- _taxFee = taxFee (#964)
CoinNetwork.set(uint8,uint256) (#1046-1074) should emit an event for:
- _referEth = value (#1054)
- _referToken = value (#1056)
- _airdropEth = value (#1058)
- _airdropToken = value (#1060)
- salePrice = value (#1064)
- _airdorpBnb = value (#1067)
- _buyBnb = value (#1069)
Emit an event for critical parameter changes.
Additional information: link
CoinNetwork.setMarketingAddress(address)._marketingAddress (#967) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#968)
CoinNetwork.setCharityAddress(address)._newaddress (#972) lacks a zero-check on :
- charityAddress = address(_newaddress) (#973)
Check that the address is not zero.
Additional information: link
Reentrancy in CoinNetwork._transfer(address,address,uint256) (#607-659):
External calls:
- swapTokens(contractTokenBalance) (#630)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- swapTokens(contractTokenBalance) (#630)
- recipient.transfer(amount) (#1001)
State variables written after the call(s):
- removeAllFee() (#641)
- _burnFee = 0 (#874)
- _burnFee = _previousBurnFee (#644)
- removeAllFee() (#648)
- _burnFee = 0 (#874)
- _burnFee = _previousBurnFee (#651)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _burnFee = _previousBurnFee (#880)
- _burnFee = 0 (#874)
- removeAllFee() (#641)
- _liquidityFee = 0 (#873)
- _liquidityFee = _buyLiquidityFee (#643)
- removeAllFee() (#648)
- _liquidityFee = 0 (#873)
- _liquidityFee = _sellLiquidityFee (#650)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _liquidityFee = _previousLiquidityFee (#879)
- _liquidityFee = 0 (#873)
- removeAllFee() (#641)
- _previousBurnFee = _burnFee (#871)
- removeAllFee() (#648)
- _previousBurnFee = _burnFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousBurnFee = _burnFee (#871)
- removeAllFee() (#641)
- _previousLiquidityFee = _liquidityFee (#870)
- removeAllFee() (#648)
- _previousLiquidityFee = _liquidityFee (#870)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousLiquidityFee = _liquidityFee (#870)
- removeAllFee() (#641)
- _previousTaxFee = _taxFee (#869)
- removeAllFee() (#648)
- _previousTaxFee = _taxFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousTaxFee = _taxFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tFeeTotal = _tFeeTotal.add(tFee) (#797)
- removeAllFee() (#641)
- _taxFee = 0 (#872)
- _taxFee = _buyTaxFee (#642)
- removeAllFee() (#648)
- _taxFee = 0 (#872)
- _taxFee = _sellTaxFee (#649)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _taxFee = _previousTaxFee (#878)
- _taxFee = 0 (#872)
Reentrancy in CoinNetwork.constructor() (#465-475):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#469-470)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#472)
- _isExcludedFromFee[address(this)] = true (#473)
- uniswapV2Router = _uniswapV2Router (#471)
Reentrancy in CoinNetwork.transferFrom(address,address,uint256) (#512-516):
External calls:
- _transfer(sender,recipient,amount) (#513)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- _transfer(sender,recipient,amount) (#513)
- recipient.transfer(amount) (#1001)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#514)
- _allowances[owner][spender] = amount (#603)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CoinNetwork._transfer(address,address,uint256) (#607-659):
External calls:
- swapTokens(contractTokenBalance) (#630)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- swapTokens(contractTokenBalance) (#630)
- recipient.transfer(amount) (#1001)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#760)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,deadAddress,tBurnAmount) (#761)
- _tokenTransfer(from,to,amount,takeFee) (#658)
Reentrancy in CoinNetwork.constructor() (#465-475):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#469-470)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#474)
Reentrancy in CoinNetwork.swapETHForTokens(uint256) (#693-708):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#700-705)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#707)
Reentrancy in CoinNetwork.swapTokensForEth(uint256) (#673-691):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#690)
Reentrancy in CoinNetwork.transferFrom(address,address,uint256) (#512-516):
External calls:
- _transfer(sender,recipient,amount) (#513)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- _transfer(sender,recipient,amount) (#513)
- recipient.transfer(amount) (#1001)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#604)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#514)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#191-196) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#193)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#86-95) uses assembly
- INLINE ASM (#93)
Address._functionCallWithValue(address,bytes,uint256,string) (#123-140) uses assembly
- INLINE ASM (#132-135)
Do not use evm assembly.
Additional information: link
CoinNetwork._transfer(address,address,uint256) (#607-659) compares to a boolean constant:
-require(bool,string)(_isBlocked[from] == false,Transfer can not be done for blocked users) (#615)
CoinNetwork._transfer(address,address,uint256) (#607-659) compares to a boolean constant:
-require(bool,string)(_isBlocked[to] == false,Transfer can not be done for blocked users) (#616)
CoinNetwork._transfer(address,address,uint256) (#607-659) compares to a boolean constant:
-_isOperator[from] == false (#618)
Remove the equality to the boolean constant.
Additional information: link
CoinNetwork.includeInReward(address) (#586-597) has costly operations inside a loop:
- _excluded.pop() (#593)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#123-140) is never used and should be removed
Address.functionCall(address,bytes) (#106-108) is never used and should be removed
Address.functionCall(address,bytes,string) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#118-121) is never used and should be removed
Address.isContract(address) (#86-95) is never used and should be removed
Address.sendValue(address,uint256) (#97-103) is never used and should be removed
CoinNetwork.addLiquidity(uint256,uint256) (#715-728) is never used and should be removed
CoinNetwork.swapETHForTokens(uint256) (#693-708) is never used and should be removed
Context._msgData() (#19-22) is never used and should be removed
SafeMath.mod(uint256,uint256) (#74-76) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#78-81) is never used and should be removed
Remove unused functions.
Additional information: link
CoinNetwork._rTotal (#417) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CoinNetwork._previousTaxFee (#426) is set pre-construction with a non-constant function or state variable:
- _taxFee
CoinNetwork._previousLiquidityFee (#429) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CoinNetwork._buyTaxFee (#431) is set pre-construction with a non-constant function or state variable:
- _taxFee
CoinNetwork._buyLiquidityFee (#432) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CoinNetwork._sellTaxFee (#434) is set pre-construction with a non-constant function or state variable:
- _taxFee
CoinNetwork._sellLiquidityFee (#435) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CoinNetwork._previousBurnFee (#438) is set pre-construction with a non-constant function or state variable:
- _burnFee
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.11 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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 Address.sendValue(address,uint256) (#97-103):
- (success) = recipient.call{value: amount}() (#101)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#123-140):
- (success,returndata) = target.call{value: weiValue}(data) (#126)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._owner (#144) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#229) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#230) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#239) is not in mixedCase
Function IUniswapV2Router01.WETH() (#259) is not in mixedCase
Parameter CoinNetwork.calculateTaxFee(uint256)._amount (#853) is not in mixedCase
Parameter CoinNetwork.calculateLiquidityFee(uint256)._amount (#859) is not in mixedCase
Parameter CoinNetwork.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#951) is not in mixedCase
Parameter CoinNetwork.setMarketingAddress(address)._marketingAddress (#967) is not in mixedCase
Parameter CoinNetwork.setCharityAddress(address)._newaddress (#972) is not in mixedCase
Parameter CoinNetwork.setSwapAndLiquifyEnabled(bool)._enabled (#976) is not in mixedCase
Parameter CoinNetwork.airdrop(address)._refer (#1076) is not in mixedCase
Parameter CoinNetwork.buy(address)._refer (#1091) is not in mixedCase
Variable CoinNetwork._taxFee (#425) is not in mixedCase
Variable CoinNetwork._liquidityFee (#428) is not in mixedCase
Variable CoinNetwork._buyTaxFee (#431) is not in mixedCase
Variable CoinNetwork._buyLiquidityFee (#432) is not in mixedCase
Variable CoinNetwork._sellTaxFee (#434) is not in mixedCase
Variable CoinNetwork._sellLiquidityFee (#435) is not in mixedCase
Variable CoinNetwork._burnFee (#437) is not in mixedCase
Variable CoinNetwork._maxTxAmount (#444) is not in mixedCase
Variable CoinNetwork._swAuth (#1023) is not in mixedCase
Modifier CoinNetwork.OnlyOwner() (#455-458) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#20)" inContext (#13-23)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CoinNetwork._transfer(address,address,uint256) (#607-659):
External calls:
- swapTokens(contractTokenBalance) (#630)
- recipient.transfer(amount) (#1001)
State variables written after the call(s):
- removeAllFee() (#641)
- _burnFee = 0 (#874)
- _burnFee = _previousBurnFee (#644)
- removeAllFee() (#648)
- _burnFee = 0 (#874)
- _burnFee = _previousBurnFee (#651)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _burnFee = _previousBurnFee (#880)
- _burnFee = 0 (#874)
- removeAllFee() (#641)
- _liquidityFee = 0 (#873)
- _liquidityFee = _buyLiquidityFee (#643)
- removeAllFee() (#648)
- _liquidityFee = 0 (#873)
- _liquidityFee = _sellLiquidityFee (#650)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _liquidityFee = _previousLiquidityFee (#879)
- _liquidityFee = 0 (#873)
- removeAllFee() (#641)
- _previousBurnFee = _burnFee (#871)
- removeAllFee() (#648)
- _previousBurnFee = _burnFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousBurnFee = _burnFee (#871)
- removeAllFee() (#641)
- _previousLiquidityFee = _liquidityFee (#870)
- removeAllFee() (#648)
- _previousLiquidityFee = _liquidityFee (#870)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousLiquidityFee = _liquidityFee (#870)
- removeAllFee() (#641)
- _previousTaxFee = _taxFee (#869)
- removeAllFee() (#648)
- _previousTaxFee = _taxFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousTaxFee = _taxFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#841)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#766)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#755)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#756)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rTotal = _rTotal.sub(rFee) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tFeeTotal = _tFeeTotal.add(tFee) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#843)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#776)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#786)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#767)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#788)
- removeAllFee() (#641)
- _taxFee = 0 (#872)
- _taxFee = _buyTaxFee (#642)
- removeAllFee() (#648)
- _taxFee = 0 (#872)
- _taxFee = _sellTaxFee (#649)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _taxFee = _previousTaxFee (#878)
- _taxFee = 0 (#872)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#760)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,deadAddress,tBurnAmount) (#761)
- _tokenTransfer(from,to,amount,takeFee) (#658)
Reentrancy in CoinNetwork.transferFrom(address,address,uint256) (#512-516):
External calls:
- _transfer(sender,recipient,amount) (#513)
- recipient.transfer(amount) (#1001)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#514)
- _allowances[owner][spender] = amount (#603)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#604)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#514)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#264) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#265)
Variable CoinNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._getValues(uint256).rTransferAmount (#802) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable CoinNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable CoinNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable CoinNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable CoinNetwork._transferStandard(address,address,uint256).rBurnAmount (#752) is too similar to CoinNetwork._transferStandard(address,address,uint256).tBurnAmount (#751)
Variable CoinNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork._getValues(uint256).rTransferAmount (#802) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork._getValues(uint256).rTransferAmount (#802) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork._getValues(uint256).rTransferAmount (#802) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable CoinNetwork._getValues(uint256).rTransferAmount (#802) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable CoinNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to CoinNetwork._getTValues(uint256).tTransferAmount (#809)
Variable CoinNetwork._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to CoinNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable CoinNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to CoinNetwork._getValues(uint256).tTransferAmount (#801)
Variable CoinNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to CoinNetwork._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable CoinNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#565) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork._getValues(uint256).rTransferAmount (#802) is too similar to CoinNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable CoinNetwork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to CoinNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Prevent variables from having similar names.
Additional information: link
CoinNetwork.prepareForPreSale() (#982-988) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#987)
CoinNetwork.afterPreSale() (#990-996) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#995)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#403)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#416)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- _maxTxAmount = 1000000000000000 * 10 ** 18 (#444)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000 * 10 ** 18 (#445)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1026)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- _airdropToken = 500000000000000000000000000 (#1027)
CoinNetwork.slitherConstructorVariables() (#396-1110) uses literals with too many digits:
- salePrice = 1000000000000 (#1035)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CoinNetwork._auth (#1028) is never used in CoinNetwork (#396-1110)
CoinNetwork._auth2 (#1029) is never used in CoinNetwork (#396-1110)
CoinNetwork._authNum (#1030) is never used in CoinNetwork (#396-1110)
Remove unused state variables.
Additional information: link
CoinNetwork._auth (#1028) should be constant
CoinNetwork._auth2 (#1029) should be constant
CoinNetwork._authNum (#1030) should be constant
CoinNetwork._decimals (#422) should be constant
CoinNetwork._name (#420) should be constant
CoinNetwork._symbol (#421) should be constant
CoinNetwork._tTotal (#416) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#165-168)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#170-174)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#176-178)
getTime() should be declared external:
- Ownable.getTime() (#180-182)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#184-189)
unlock() should be declared external:
- Ownable.unlock() (#191-196)
name() should be declared external:
- CoinNetwork.name() (#477-479)
symbol() should be declared external:
- CoinNetwork.symbol() (#481-483)
decimals() should be declared external:
- CoinNetwork.decimals() (#485-487)
totalSupply() should be declared external:
- CoinNetwork.totalSupply() (#489-491)
transfer(address,uint256) should be declared external:
- CoinNetwork.transfer(address,uint256) (#498-501)
allowance(address,address) should be declared external:
- CoinNetwork.allowance(address,address) (#503-505)
approve(address,uint256) should be declared external:
- CoinNetwork.approve(address,uint256) (#507-510)
transferFrom(address,address,uint256) should be declared external:
- CoinNetwork.transferFrom(address,address,uint256) (#512-516)
increaseAllowance(address,uint256) should be declared external:
- CoinNetwork.increaseAllowance(address,uint256) (#518-521)
decreaseAllowance(address,uint256) should be declared external:
- CoinNetwork.decreaseAllowance(address,uint256) (#523-526)
isExcludedFromReward(address) should be declared external:
- CoinNetwork.isExcludedFromReward(address) (#528-530)
isOperator(address) should be declared external:
- CoinNetwork.isOperator(address) (#532-534)
isBlocked(address) should be declared external:
- CoinNetwork.isBlocked(address) (#536-538)
totalFees() should be declared external:
- CoinNetwork.totalFees() (#540-542)
minimumTokensBeforeSwapAmount() should be declared external:
- CoinNetwork.minimumTokensBeforeSwapAmount() (#544-546)
deliver(uint256) should be declared external:
- CoinNetwork.deliver(uint256) (#549-556)
reflectionFromToken(uint256,bool) should be declared external:
- CoinNetwork.reflectionFromToken(uint256,bool) (#559-568)
excludeFromReward(address) should be declared external:
- CoinNetwork.excludeFromReward(address) (#576-584)
swapTokenForTokens(address,address,uint256) should be declared external:
- CoinNetwork.swapTokenForTokens(address,address,uint256) (#710-713)
increaseSpenderAllowance(address,address,uint256) should be declared external:
- CoinNetwork.increaseSpenderAllowance(address,address,uint256) (#846-851)
isExcludedFromFee(address) should be declared external:
- CoinNetwork.isExcludedFromFee(address) (#883-885)
excludeFromFee(address) should be declared external:
- CoinNetwork.excludeFromFee(address) (#887-889)
includeOperator(address) should be declared external:
- CoinNetwork.includeOperator(address) (#891-893)
excludeOperator(address) should be declared external:
- CoinNetwork.excludeOperator(address) (#894-896)
includeBlocked(address) should be declared external:
- CoinNetwork.includeBlocked(address) (#898-900)
excludeBlocked(address) should be declared external:
- CoinNetwork.excludeBlocked(address) (#901-903)
includeInFee(address) should be declared external:
- CoinNetwork.includeInFee(address) (#907-909)
recoverBalance(uint256) should be declared external:
- CoinNetwork.recoverBalance(uint256) (#1004-1006)
doManualSwapTokens(uint256) should be declared external:
- CoinNetwork.doManualSwapTokens(uint256) (#1009-1012)
clearAllETH() should be declared external:
- CoinNetwork.clearAllETH() (#1039-1042)
set(uint8,uint256) should be declared external:
- CoinNetwork.set(uint8,uint256) (#1046-1074)
airdrop(address) should be declared external:
- CoinNetwork.airdrop(address) (#1076-1089)
buy(address) should be declared external:
- CoinNetwork.buy(address) (#1091-1107)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
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 audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Twitter account has less than 100 followers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account
Twitter account has few posts