FLYING COLOURS works on an autonomous frictionless yield farming and liquidity generation protocol.
FLYING COLOURS is Hyper-deflationary with static reflection that rewards holders, so more $OURS are being automatically added to your wallet each transaction. Simply hold and earn passive rewards as 4% from each transaction is automatically redistributed to the holders.
Token.addLiquidity(uint256,uint256) (#781-794) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#696-728):
External calls:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _liquidityFee = 0 (#802)
- _liquidityFee = previousLiquidityFee (#823)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _rOwned[to] = _rOwned[to].add(rAmount) (#669)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#832)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#860)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#833)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#862)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#876)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#848)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _rTotal = _rTotal.sub(rFee) (#627)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _tOwned[to] = _tOwned[to].add(tAmount) (#671)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#874)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#845)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#861)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#847)
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.
Token.addLiquidity(uint256,uint256) (#781-794) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
Ensure that all the return values of the function calls are used.
Additional information: link
Token.allowance(address,address).owner (#492) shadows:
- Ownable.owner() (#172-174) (function)
Token._approve(address,address,uint256).owner (#688) shadows:
- Ownable.owner() (#172-174) (function)
Rename the local variables that shadow another component.
Additional information: link
Token.setTaxFeePercent(uint256) (#592-594) should emit an event for:
- _taxFee = taxFee (#593)
Token.setLiquidityFeePercent(uint256) (#596-598) should emit an event for:
- _liquidityFee = liquidityFee (#597)
Token.setMarketingFeePercent(uint256) (#600-602) should emit an event for:
- _marketingFee = marketingFee (#601)
Token.setSwapThreshold(uint256) (#609-611) should emit an event for:
- _swapThreshold = swapThreshold (#610)
Emit an event for critical parameter changes.
Additional information: link
Token.setMarketingWallet(address).marketingWallet (#584) lacks a zero-check on :
- _marketingWallet = marketingWallet (#585)
Token.setUniswapPair(address).p (#618) lacks a zero-check on :
- _uniswapV2Pair = p (#619)
Check that the address is not zero.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#696-728):
External calls:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _tFeeTotal = _tFeeTotal.add(tFee) (#628)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _taxFee = 0 (#801)
- _taxFee = previousTaxFee (#822)
Reentrancy in Token.constructor() (#444-464):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#452-453)
State variables written after the call(s):
- _isExcludedFromAutoLiquidity[_uniswapV2Pair] = true (#460)
- _isExcludedFromAutoLiquidity[address(_uniswapV2Router)] = true (#461)
- _isExcludedFromFee[owner()] = true (#456)
- _isExcludedFromFee[address(this)] = true (#457)
- _isExcludedFromFee[_marketingWallet] = true (#458)
Reentrancy in Token.swapAndLiquify(uint256) (#730-761):
External calls:
- swapTokensForBnb(half) (#744)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
External calls sending eth:
- address(_marketingWallet).transfer(marketingFee) (#753)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _allowances[owner][spender] = amount (#692)
Reentrancy in Token.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#692)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#696-728):
External calls:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#837)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- Transfer(sender,recipient,tTransferAmount) (#866)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- Transfer(sender,recipient,tTransferAmount) (#852)
- _tokenTransfer(from,to,amount,takeFee) (#727)
Reentrancy in Token.constructor() (#444-464):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#452-453)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#463)
Reentrancy in Token.swapAndLiquify(uint256) (#730-761):
External calls:
- swapTokensForBnb(half) (#744)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- address(_marketingWallet).transfer(marketingFee) (#753)
Event emitted after the call(s):
- MarketingFeeSent(_marketingWallet,marketingFee) (#754)
Reentrancy in Token.swapAndLiquify(uint256) (#730-761):
External calls:
- swapTokensForBnb(half) (#744)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
External calls sending eth:
- address(_marketingWallet).transfer(marketingFee) (#753)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#693)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#760)
Reentrancy in Token.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#693)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.
Additional information: link
Token.includeInReward(address) (#570-582) has costly operations inside a loop:
- _excluded.pop() (#578)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#139-141) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#155-158) is never used and should be removed
Remove unused functions.
Additional information: link
Token._rTotal (#410) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Token._swapThreshold (#420) is set pre-construction with a non-constant function or state variable:
- _tTotal * 5 / 1000
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#224) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#225) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#242) is not in mixedCase
Function IUniswapV2Router01.WETH() (#262) is not in mixedCase
Parameter Token.rescueToken(address,address)._token (#883) is not in mixedCase
Parameter Token.rescueToken(address,address)._to (#883) is not in mixedCase
Variable Token._isExcludedFromAutoLiquidity (#403) is not in mixedCase
Variable Token._marketingWallet (#406) is not in mixedCase
Variable Token._taxFee (#417) is not in mixedCase
Variable Token._marketingFee (#418) is not in mixedCase
Variable Token._liquidityFee (#419) is not in mixedCase
Variable Token._swapThreshold (#420) is not in mixedCase
Variable Token._swapAndLiquifyEnabled (#423) is not in mixedCase
Variable Token._inSwapAndLiquify (#424) is not in mixedCase
Variable Token._uniswapV2Router (#426) is not in mixedCase
Variable Token._uniswapV2Pair (#427) 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 Token._transfer(address,address,uint256) (#696-728):
External calls:
- swapAndLiquify(contractTokenBalance) (#720)
- address(_marketingWallet).transfer(marketingFee) (#753)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#720)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _liquidityFee = 0 (#802)
- _liquidityFee = previousLiquidityFee (#823)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _rOwned[to] = _rOwned[to].add(rAmount) (#669)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#832)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#860)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#833)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#862)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#876)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#848)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _rTotal = _rTotal.sub(rFee) (#627)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _tFeeTotal = _tFeeTotal.add(tFee) (#628)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _tOwned[to] = _tOwned[to].add(tAmount) (#671)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#874)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#845)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#861)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#847)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- _taxFee = 0 (#801)
- _taxFee = previousTaxFee (#822)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#837)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- Transfer(sender,recipient,tTransferAmount) (#866)
- _tokenTransfer(from,to,amount,takeFee) (#727)
- Transfer(sender,recipient,tTransferAmount) (#852)
- _tokenTransfer(from,to,amount,takeFee) (#727)
Reentrancy in Token.swapAndLiquify(uint256) (#730-761):
External calls:
- address(_marketingWallet).transfer(marketingFee) (#753)
Event emitted after the call(s):
- MarketingFeeSent(_marketingWallet,marketingFee) (#754)
Reentrancy in Token.swapAndLiquify(uint256) (#730-761):
External calls:
- address(_marketingWallet).transfer(marketingFee) (#753)
External calls sending eth:
- address(_marketingWallet).transfer(marketingFee) (#753)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- _allowances[owner][spender] = amount (#692)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#693)
- addLiquidity(otherHalf,bnbForLiquidity) (#758)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#760)
Reentrancy in Token.transferFrom(address,address,uint256) (#501-505):
External calls:
- _transfer(sender,recipient,amount) (#502)
- address(_marketingWallet).transfer(marketingFee) (#753)
External calls sending eth:
- _transfer(sender,recipient,amount) (#502)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#786-793)
- address(_marketingWallet).transfer(marketingFee) (#753)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#503)
- _allowances[owner][spender] = amount (#692)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#693)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#503)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#267) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#268)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (#858) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (#841)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (#858) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (#856)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (#858) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (#856)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (#858) is too similar to Token._getTValues(uint256).tTransferAmount (#634)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#830) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (#856)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (#843) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (#843) is too similar to Token._getTValues(uint256).tTransferAmount (#634)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (#843) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (#856)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (#870)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (#858) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (#870)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (#843) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (#870)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (#872) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (#856)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#830) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (#870)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (#872) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (#841)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#643) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (#841)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (#872) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (#841)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#643) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#830) is too similar to Token._getTValues(uint256).tTransferAmount (#634)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (#872) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (#870)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#643) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (#870)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#643) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (#856)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (#843) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (#841)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (#872) is too similar to Token._getTValues(uint256).tTransferAmount (#634)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#830) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (#841)
Variable Token._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#643) is too similar to Token._getTValues(uint256).tTransferAmount (#634)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (#830) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (#828)
Variable Token.reflectionFromToken(uint256,bool).rTransferAmount (#548) is too similar to Token._getTValues(uint256).tTransferAmount (#634)
Prevent variables from having similar names.
Additional information: link
Token._decimals (#415) should be constant
Token._name (#413) should be constant
Token._symbol (#414) should be constant
Token._tTotal (#409) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#181-184)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#186-190)
name() should be declared external:
- Token.name() (#466-468)
symbol() should be declared external:
- Token.symbol() (#470-472)
decimals() should be declared external:
- Token.decimals() (#474-476)
totalSupply() should be declared external:
- Token.totalSupply() (#478-480)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#487-490)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#492-494)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#496-499)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#501-505)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#507-510)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#512-515)
isExcludedFromReward(address) should be declared external:
- Token.isExcludedFromReward(address) (#517-519)
totalFees() should be declared external:
- Token.totalFees() (#521-523)
deliver(uint256) should be declared external:
- Token.deliver(uint256) (#525-536)
reflectionFromToken(uint256,bool) should be declared external:
- Token.reflectionFromToken(uint256,bool) (#538-551)
excludeFromReward(address) should be declared external:
- Token.excludeFromReward(address) (#560-568)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Token.setSwapAndLiquifyEnabled(bool) (#604-607)
isExcludedFromFee(address) should be declared external:
- Token.isExcludedFromFee(address) (#684-686)
rescueToken(address,address) should be declared external:
- Token.rescueToken(address,address) (#883-886)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 11% buy tax and 9% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Average 30d PancakeSwap volume is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
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 whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Alexa traffic rank is very low
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account