The Kraken is a fully customized fork of the popular “EverRise” smart contract that we took one step further - we added x3 leverage and a practical use case.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in TheKraken._transfer(address,address,uint256) (#621-659):
External calls:
- swapTokens(contractTokenBalance) (#639)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#688-694)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
External calls sending eth:
- swapTokens(contractTokenBalance) (#639)
- recipient.transfer(amount) (#932)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _liquidityFee = _previousLiquidityFee (#864)
- _liquidityFee = 0 (#859)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#835)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#751)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#760)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#771)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#781)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#752)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#762)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#783)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rTotal = _rTotal.sub(rFee) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#837)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#780)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#770)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#761)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#782)
- buyBackTokens(balance.div(100)) (#647)
- inSwapAndLiquify = true (#475)
- inSwapAndLiquify = false (#477)
Apply the check-effects-interactions pattern.
Additional information: link
TheKraken.swapTokens(uint256) (#661-670) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#668)
Consider ordering multiplication before division.
Additional information: link
TheKraken.addLiquidity(uint256,uint256) (#716-729) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#721-728)
Ensure that all the return values of the function calls are used.
Additional information: link
TheKraken.allowance(address,address).owner (#522) shadows:
- Ownable.owner() (#156-158) (function)
TheKraken._approve(address,address,uint256).owner (#613) shadows:
- Ownable.owner() (#156-158) (function)
Rename the local variables that shadow another component.
Additional information: link
TheKraken.setTaxFeePercent(uint256) (#879-881) should emit an event for:
- _taxFee = taxFee (#880)
TheKraken.setLiquidityFeePercent(uint256) (#883-885) should emit an event for:
- _liquidityFee = liquidityFee (#884)
TheKraken.setMaxTxAmount(uint256) (#887-889) should emit an event for:
- _maxTxAmount = maxTxAmount (#888)
TheKraken.setMarketingDivisor(uint256) (#891-893) should emit an event for:
- marketingDivisor = divisor (#892)
TheKraken.setNumTokensSellToAddToLiquidity(uint256) (#895-897) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#896)
TheKraken.setBuybackUpperLimit(uint256) (#899-901) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#900)
Emit an event for critical parameter changes.
Additional information: link
TheKraken.setMarketingAddress(address)._marketingAddress (#903) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#904)
Check that the address is not zero.
Additional information: link
Reentrancy in TheKraken._transfer(address,address,uint256) (#621-659):
External calls:
- swapTokens(contractTokenBalance) (#639)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#688-694)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
External calls sending eth:
- swapTokens(contractTokenBalance) (#639)
- recipient.transfer(amount) (#932)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousLiquidityFee = _liquidityFee (#856)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousTaxFee = _taxFee (#855)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tFeeTotal = _tFeeTotal.add(tFee) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _taxFee = _previousTaxFee (#863)
- _taxFee = 0 (#858)
Reentrancy in TheKraken.constructor() (#480-494):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#484-485)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#490)
- _isExcludedFromFee[address(this)] = true (#491)
- uniswapV2Router = _uniswapV2Router (#487)
Reentrancy in TheKraken.transferFrom(address,address,uint256) (#531-535):
External calls:
- _transfer(sender,recipient,amount) (#532)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#688-694)
External calls sending eth:
- _transfer(sender,recipient,amount) (#532)
- recipient.transfer(amount) (#932)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#533)
- _allowances[owner][spender] = amount (#617)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TheKraken._transfer(address,address,uint256) (#621-659):
External calls:
- swapTokens(contractTokenBalance) (#639)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#688-694)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
External calls sending eth:
- swapTokens(contractTokenBalance) (#639)
- recipient.transfer(amount) (#932)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#713)
- buyBackTokens(balance.div(100)) (#647)
- Transfer(sender,recipient,tTransferAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#658)
Reentrancy in TheKraken.constructor() (#480-494):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#484-485)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#493)
Reentrancy in TheKraken.swapETHForTokens(uint256) (#699-714):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#713)
Reentrancy in TheKraken.swapTokensForEth(uint256) (#679-697):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#688-694)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#696)
Reentrancy in TheKraken.transferFrom(address,address,uint256) (#531-535):
External calls:
- _transfer(sender,recipient,amount) (#532)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#688-694)
External calls sending eth:
- _transfer(sender,recipient,amount) (#532)
- recipient.transfer(amount) (#932)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#618)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#533)
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
TheKraken.includeInReward(address) (#600-611) has costly operations inside a loop:
- _excluded.pop() (#607)
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
Context._msgData() (#9-12) 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
TheKraken.addLiquidity(uint256,uint256) (#716-729) is never used and should be removed
Remove unused functions.
Additional information: link
TheKraken._rTotal (#427) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TheKraken._previousTaxFee (#436) is set pre-construction with a non-constant function or state variable:
- _taxFee
TheKraken._previousLiquidityFee (#439) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#235) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#236) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#252) is not in mixedCase
Function IUniswapV2Router01.WETH() (#273) is not in mixedCase
Parameter TheKraken.calculateTaxFee(uint256)._amount (#840) is not in mixedCase
Parameter TheKraken.calculateLiquidityFee(uint256)._amount (#846) is not in mixedCase
Parameter TheKraken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#895) is not in mixedCase
Parameter TheKraken.setMarketingAddress(address)._marketingAddress (#903) is not in mixedCase
Parameter TheKraken.setSwapAndLiquifyEnabled(bool)._enabled (#907) is not in mixedCase
Parameter TheKraken.setBuyBackEnabled(bool)._enabled (#912) is not in mixedCase
Variable TheKraken._taxFee (#435) is not in mixedCase
Variable TheKraken._liquidityFee (#438) is not in mixedCase
Variable TheKraken._maxTxAmount (#443) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in TheKraken._transfer(address,address,uint256) (#621-659):
External calls:
- swapTokens(contractTokenBalance) (#639)
- recipient.transfer(amount) (#932)
External calls sending eth:
- swapTokens(contractTokenBalance) (#639)
- recipient.transfer(amount) (#932)
- buyBackTokens(balance.div(100)) (#647)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _liquidityFee = _previousLiquidityFee (#864)
- _liquidityFee = 0 (#859)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousLiquidityFee = _liquidityFee (#856)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _previousTaxFee = _taxFee (#855)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#835)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#751)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#760)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#771)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#781)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#752)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#762)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#783)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _rTotal = _rTotal.sub(rFee) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tFeeTotal = _tFeeTotal.add(tFee) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#837)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#780)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#770)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#761)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#782)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- _taxFee = _previousTaxFee (#863)
- _taxFee = 0 (#858)
- buyBackTokens(balance.div(100)) (#647)
- inSwapAndLiquify = true (#475)
- inSwapAndLiquify = false (#477)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#713)
- buyBackTokens(balance.div(100)) (#647)
- Transfer(sender,recipient,tTransferAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#658)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#658)
Reentrancy in TheKraken.transferFrom(address,address,uint256) (#531-535):
External calls:
- _transfer(sender,recipient,amount) (#532)
- recipient.transfer(amount) (#932)
External calls sending eth:
- _transfer(sender,recipient,amount) (#532)
- recipient.transfer(amount) (#932)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#706-711)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#533)
- _allowances[owner][spender] = amount (#617)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#618)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#533)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#278) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#279)
Variable TheKraken._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken._transferToExcluded(address,address,uint256).rTransferAmount (#759) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#811) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._transferBothExcluded(address,address,uint256).rTransferAmount (#779) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken._getValues(uint256).rTransferAmount (#796) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken._transferFromExcluded(address,address,uint256).rTransferAmount (#769) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken._transferStandard(address,address,uint256).rTransferAmount (#750) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Variable TheKraken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._transferToExcluded(address,address,uint256).rTransferAmount (#759) is too similar to TheKraken._transferBothExcluded(address,address,uint256).tTransferAmount (#779)
Variable TheKraken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#811) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken._transferBothExcluded(address,address,uint256).rTransferAmount (#779) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken._getValues(uint256).rTransferAmount (#796) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken._transferFromExcluded(address,address,uint256).rTransferAmount (#769) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken._transferToExcluded(address,address,uint256).rTransferAmount (#759) is too similar to TheKraken._transferFromExcluded(address,address,uint256).tTransferAmount (#769)
Variable TheKraken._transferToExcluded(address,address,uint256).rTransferAmount (#759) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._transferFromExcluded(address,address,uint256).rTransferAmount (#769) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._transferToExcluded(address,address,uint256).rTransferAmount (#759) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Variable TheKraken._transferFromExcluded(address,address,uint256).rTransferAmount (#769) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Variable TheKraken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Variable TheKraken._transferBothExcluded(address,address,uint256).rTransferAmount (#779) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._getValues(uint256).rTransferAmount (#796) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#811) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._getValues(uint256).rTransferAmount (#796) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken._transferBothExcluded(address,address,uint256).rTransferAmount (#779) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken._transferFromExcluded(address,address,uint256).rTransferAmount (#769) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._transferToExcluded(address,address,uint256).rTransferAmount (#759) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#811) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to TheKraken._transferStandard(address,address,uint256).tTransferAmount (#750)
Variable TheKraken._transferBothExcluded(address,address,uint256).rTransferAmount (#779) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._getValues(uint256).rTransferAmount (#796) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._getValues(uint256).rTransferAmount (#796) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Variable TheKraken._transferBothExcluded(address,address,uint256).rTransferAmount (#779) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Variable TheKraken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#811) is too similar to TheKraken._transferToExcluded(address,address,uint256).tTransferAmount (#759)
Variable TheKraken._transferFromExcluded(address,address,uint256).rTransferAmount (#769) is too similar to TheKraken._getValues(uint256).tTransferAmount (#795)
Variable TheKraken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#811) is too similar to TheKraken._getTValues(uint256).tTransferAmount (#803)
Prevent variables from having similar names.
Additional information: link
TheKraken.prepareForPreSale() (#917-922) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 3 * 10 ** 9 (#921)
TheKraken.afterPreSale() (#924-929) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 3 * 10 ** 9 (#928)
TheKraken.slitherConstructorVariables() (#410-938) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#415)
TheKraken.slitherConstructorVariables() (#410-938) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 3 * 10 ** 9 (#426)
TheKraken.slitherConstructorVariables() (#410-938) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 3 * 10 ** 9 (#443)
TheKraken.slitherConstructorVariables() (#410-938) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 3 * 10 ** 9 (#444)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TheKraken._decimals (#432) should be constant
TheKraken._name (#430) should be constant
TheKraken._symbol (#431) should be constant
TheKraken._tTotal (#426) 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:
- TheKraken.name() (#496-498)
symbol() should be declared external:
- TheKraken.symbol() (#500-502)
decimals() should be declared external:
- TheKraken.decimals() (#504-506)
totalSupply() should be declared external:
- TheKraken.totalSupply() (#508-510)
transfer(address,uint256) should be declared external:
- TheKraken.transfer(address,uint256) (#517-520)
allowance(address,address) should be declared external:
- TheKraken.allowance(address,address) (#522-524)
approve(address,uint256) should be declared external:
- TheKraken.approve(address,uint256) (#526-529)
transferFrom(address,address,uint256) should be declared external:
- TheKraken.transferFrom(address,address,uint256) (#531-535)
increaseAllowance(address,uint256) should be declared external:
- TheKraken.increaseAllowance(address,uint256) (#537-540)
decreaseAllowance(address,uint256) should be declared external:
- TheKraken.decreaseAllowance(address,uint256) (#542-545)
isExcludedFromReward(address) should be declared external:
- TheKraken.isExcludedFromReward(address) (#547-549)
totalFees() should be declared external:
- TheKraken.totalFees() (#551-553)
minimumTokensBeforeSwapAmount() should be declared external:
- TheKraken.minimumTokensBeforeSwapAmount() (#555-557)
buyBackUpperLimitAmount() should be declared external:
- TheKraken.buyBackUpperLimitAmount() (#559-561)
deliver(uint256) should be declared external:
- TheKraken.deliver(uint256) (#563-570)
reflectionFromToken(uint256,bool) should be declared external:
- TheKraken.reflectionFromToken(uint256,bool) (#573-582)
excludeFromReward(address) should be declared external:
- TheKraken.excludeFromReward(address) (#590-598)
isExcludedFromFee(address) should be declared external:
- TheKraken.isExcludedFromFee(address) (#867-869)
excludeFromFee(address) should be declared external:
- TheKraken.excludeFromFee(address) (#871-873)
includeInFee(address) should be declared external:
- TheKraken.includeInFee(address) (#875-877)
setBuyBackEnabled(bool) should be declared external:
- TheKraken.setBuyBackEnabled(bool) (#912-915)
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
Token was delisted from CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
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 Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Twitter account link seems to be invalid
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account