Magic Beasties is a upcoming blockchain game about cute Beasties running on the Binance Smart Chain.
Collect Rare digital monsters, play with them, experience an adventure, trade and earn.
CoinToken.addLiquidity(uint256,uint256) (#841-851) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#780-815):
External calls:
- swapAndLiquify(contractTokenBalance) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#721)
- _rOwned[_devWalletAddress] = _rOwned[_devWalletAddress].add(rDev) (#729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#885)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#876)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#897)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#627)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#898)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#887)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _rTotal = _rTotal.sub(rFee) (#674)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#723)
- _tOwned[_devWalletAddress] = _tOwned[_devWalletAddress].add(tDev) (#731)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#896)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#626)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#886)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#628)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#480-516) performs a multiplication on the result of a division:
-_maxTxAmount = (_tTotal * 5 / 1000) * 10 ** _decimals (#493)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#480-516) performs a multiplication on the result of a division:
-numTokensSellToAddToLiquidity = (_tTotal * 5 / 10000) * 10 ** _decimals (#494)
Consider ordering multiplication before division.
Additional information: link
CoinToken.addLiquidity(uint256,uint256) (#841-851) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
Ensure that all the return values of the function calls are used.
Additional information: link
CoinToken.allowance(address,address).owner (#544) shadows:
- Ownable.owner() (#208-210) (function)
CoinToken._approve(address,address,uint256).owner (#772) shadows:
- Ownable.owner() (#208-210) (function)
Rename the local variables that shadow another component.
Additional information: link
CoinToken.setTaxFeePercent(uint256) (#644-646) should emit an event for:
- _taxFee = taxFee (#645)
CoinToken.setDevFeePercent(uint256) (#648-650) should emit an event for:
- _devFee = devFee (#649)
CoinToken.setLiquidityFeePercent(uint256) (#652-654) should emit an event for:
- _liquidityFee = liquidityFee (#653)
CoinToken.setMaxTxPercent(uint256) (#656-658) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#657)
CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#912-914) should emit an event for:
- numTokensSellToAddToLiquidity = amountToUpdate (#913)
Emit an event for critical parameter changes.
Additional information: link
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).feeaddress (#480) lacks a zero-check on :
- _devWalletAddress = feeaddress (#495)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).tokenOwner (#480) lacks a zero-check on :
- _owner = tokenOwner (#511)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).service (#480) lacks a zero-check on :
- address(service).transfer(msg.value) (#512)
CoinToken.setDevWalletAddress(address)._addr (#660) lacks a zero-check on :
- _devWalletAddress = _addr (#661)
Check that the address is not zero.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#780-815):
External calls:
- swapAndLiquify(contractTokenBalance) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _devFee = _previousDevFee (#764)
- _devFee = 0 (#758)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _liquidityFee = _previousLiquidityFee (#765)
- _liquidityFee = 0 (#759)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _previousDevFee = _devFee (#754)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _previousLiquidityFee = _liquidityFee (#755)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _previousTaxFee = _taxFee (#753)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _tFeeTotal = _tFeeTotal.add(tFee) (#675)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- _taxFee = _previousTaxFee (#763)
- _taxFee = 0 (#757)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#480-516):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#501-502)
State variables written after the call(s):
- _isExcludedFromFee[tokenOwner] = true (#508)
- _isExcludedFromFee[address(this)] = true (#509)
- _owner = tokenOwner (#511)
- uniswapV2Router = _uniswapV2Router (#505)
Reentrancy in CoinToken.setRouterAddress(address) (#906-910):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#908)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#909)
Reentrancy in CoinToken.swapAndLiquify(uint256) (#817-825):
External calls:
- swapTokensForEth(half) (#821)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
- addLiquidity(otherHalf,newBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#823)
- _allowances[owner][spender] = amount (#776)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#553-557):
External calls:
- _transfer(sender,recipient,amount) (#554)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
External calls sending eth:
- _transfer(sender,recipient,amount) (#554)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#555)
- _allowances[owner][spender] = amount (#776)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#780-815):
External calls:
- swapAndLiquify(contractTokenBalance) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- Transfer(sender,recipient,tTransferAmount) (#891)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- Transfer(sender,recipient,tTransferAmount) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#814)
- Transfer(sender,recipient,tTransferAmount) (#633)
- _tokenTransfer(from,to,amount,takeFee) (#814)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#480-516):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#501-502)
External calls sending eth:
- address(service).transfer(msg.value) (#512)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#513)
Reentrancy in CoinToken.swapAndLiquify(uint256) (#817-825):
External calls:
- swapTokensForEth(half) (#821)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
- addLiquidity(otherHalf,newBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#777)
- addLiquidity(otherHalf,newBalance) (#823)
- SwapAndLiquify(half,newBalance,otherHalf) (#824)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#553-557):
External calls:
- _transfer(sender,recipient,amount) (#554)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#832-838)
External calls sending eth:
- _transfer(sender,recipient,amount) (#554)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#843-850)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#777)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#555)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#239-244) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked.) (#241)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#127-131) uses assembly
- INLINE ASM (#129)
Address._verifyCallResult(bool,bytes,string) (#179-192) uses assembly
- INLINE ASM (#184-187)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#179-192) is never used and should be removed
Address.functionCall(address,bytes) (#139-141) is never used and should be removed
Address.functionCall(address,bytes,string) (#143-145) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#147-149) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#151-156) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#169-171) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#173-177) is never used and should be removed
Address.functionStaticCall(address,bytes) (#158-160) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#162-166) is never used and should be removed
Address.isContract(address) (#127-131) is never used and should be removed
Address.sendValue(address,uint256) (#133-137) is never used and should be removed
Context._msgData() (#118-121) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#95-100) is never used and should be removed
SafeMath.mod(uint256,uint256) (#84-86) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#102-107) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#24-30) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#51-56) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#58-63) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#39-49) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#32-37) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#133-137):
- (success) = recipient.call{value: amount}() (#135)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#151-156):
- (success,returndata) = target.call{value: value}(data) (#154)
Low level call in Address.functionStaticCall(address,bytes,string) (#162-166):
- (success,returndata) = target.staticcall(data) (#164)
Low level call in Address.functionDelegateCall(address,bytes,string) (#173-177):
- (success,returndata) = target.delegatecall(data) (#175)
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 (#198) is not in mixedCase
Variable Ownable._lockTime (#200) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#271) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#272) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#286) is not in mixedCase
Function IUniswapV2Router01.WETH() (#304) is not in mixedCase
Parameter CoinToken.setDevWalletAddress(address)._addr (#660) is not in mixedCase
Parameter CoinToken.setSwapAndLiquifyEnabled(bool)._enabled (#665) is not in mixedCase
Parameter CoinToken.calculateTaxFee(uint256)._amount (#734) is not in mixedCase
Parameter CoinToken.calculateDevFee(uint256)._amount (#740) is not in mixedCase
Parameter CoinToken.calculateLiquidityFee(uint256)._amount (#746) is not in mixedCase
Variable CoinToken._devWalletAddress (#446) is not in mixedCase
Variable CoinToken._taxFee (#454) is not in mixedCase
Variable CoinToken._devFee (#456) is not in mixedCase
Variable CoinToken._liquidityFee (#458) is not in mixedCase
Variable CoinToken._maxTxAmount (#464) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#119)" inContext (#113-122)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#480-516):
External calls:
- address(service).transfer(msg.value) (#512)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#513)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#308) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#309)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#895) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#895) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken._getValues(uint256).rTransferAmount (#680) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#884) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken._getValues(uint256).rTransferAmount (#680) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#884) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#895) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#884) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#895) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#884) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#884) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#884) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#697) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#697) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#592) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#697) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#625) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#697) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#697) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#697) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#874) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#874)
Variable CoinToken._getValues(uint256).rTransferAmount (#680) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._getValues(uint256).rTransferAmount (#680) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#874) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._getValues(uint256).rTransferAmount (#680) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#874) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#895) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#895) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#874) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#592) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#884)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#874) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#592) is too similar to CoinToken._getValues(uint256).tTransferAmount (#679)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#592) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#895)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#592) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#688)
Variable CoinToken._getValues(uint256).rTransferAmount (#680) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#874) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#592) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#625)
Prevent variables from having similar names.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#217-220)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#223-227)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#231-236)
unlock() should be declared external:
- Ownable.unlock() (#239-244)
name() should be declared external:
- CoinToken.name() (#518-520)
symbol() should be declared external:
- CoinToken.symbol() (#522-524)
decimals() should be declared external:
- CoinToken.decimals() (#526-528)
totalSupply() should be declared external:
- CoinToken.totalSupply() (#530-532)
transfer(address,uint256) should be declared external:
- CoinToken.transfer(address,uint256) (#539-542)
allowance(address,address) should be declared external:
- CoinToken.allowance(address,address) (#544-546)
approve(address,uint256) should be declared external:
- CoinToken.approve(address,uint256) (#548-551)
transferFrom(address,address,uint256) should be declared external:
- CoinToken.transferFrom(address,address,uint256) (#553-557)
increaseAllowance(address,uint256) should be declared external:
- CoinToken.increaseAllowance(address,uint256) (#559-562)
decreaseAllowance(address,uint256) should be declared external:
- CoinToken.decreaseAllowance(address,uint256) (#564-567)
isExcludedFromReward(address) should be declared external:
- CoinToken.isExcludedFromReward(address) (#569-571)
totalFees() should be declared external:
- CoinToken.totalFees() (#573-575)
deliver(uint256) should be declared external:
- CoinToken.deliver(uint256) (#577-584)
reflectionFromToken(uint256,bool) should be declared external:
- CoinToken.reflectionFromToken(uint256,bool) (#586-595)
excludeFromReward(address) should be declared external:
- CoinToken.excludeFromReward(address) (#603-610)
excludeFromFee(address) should be declared external:
- CoinToken.excludeFromFee(address) (#636-638)
includeInFee(address) should be declared external:
- CoinToken.includeInFee(address) (#640-642)
setMaxTxPercent(uint256) should be declared external:
- CoinToken.setMaxTxPercent(uint256) (#656-658)
setDevWalletAddress(address) should be declared external:
- CoinToken.setDevWalletAddress(address) (#660-662)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CoinToken.setSwapAndLiquifyEnabled(bool) (#665-668)
isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#768-770)
Use the external attribute for functions never called from the contract.
Additional information: link
CoinToken.includeInReward(address) (#612-623) has costly operations inside a loop:
- _excluded.pop() (#619)
Use a local variable to hold the loop computation result.
Additional information: link
Unable to find whitepaper link on the website
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account