Hulda Token is a crypto currency token that twists your virtual, digital currency
and brings about a whole new tangible experience. Throughout its welldeveloped, solid platform, Hulda Token will aid you to transfer your crypto assets
into materialistic products. Hulda Token will provide its investors with potentials
to gain and profit throughout its multiplayer, free game and low fees NFT
marketplace.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CoinToken.swapETHForTokens(uint256) (#734-749) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
CoinToken.addLiquidity(uint256,uint256) (#751-764) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#756-763)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#654-692):
External calls:
- swapTokens(contractTokenBalance) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
External calls sending eth:
- swapTokens(contractTokenBalance) (#672)
- recipient.transfer(amount) (#975)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _liquidityFee = _previousLiquidityFee (#903)
- _liquidityFee = 0 (#896)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#870)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#806)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#797)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _rTotal = _rTotal.sub(rFee) (#825)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#872)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#805)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#815)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#796)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#817)
- buyBackTokens(balance.div(100)) (#680)
- inSwapAndLiquify = true (#483)
- inSwapAndLiquify = false (#485)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- marketingFee = previousMarketingFee (#905)
- marketingFee = 0 (#898)
Apply the check-effects-interactions pattern.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Contract ticker ($HLD) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Ownable.constructor().msgSender (#152) lacks a zero-check on :
- _owner = msgSender (#153)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address)._ma (#488) lacks a zero-check on :
- marketingAddress = address(_ma) (#497)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address)._lp (#488) lacks a zero-check on :
- lp_poolAddress = address(_lp) (#498)
CoinToken.setMarketingAddress(address)._marketingAddress (#946) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#947)
Check that the address is not zero.
Additional information: link
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-527) performs a multiplication on the result of a division:
-_maxTxAmount = _tTotal.div(1000).mul(3) (#508)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-527) performs a multiplication on the result of a division:
-minimumTokensBeforeSwap = _tTotal.div(10000).mul(2) (#510)
CoinToken.swapTokens(uint256) (#694-705) performs a multiplication on the result of a division:
-transferToAddressETH(lp_poolAddress,transferredBalance.div(_liquidityFee).mul(25)) (#702)
CoinToken.swapTokens(uint256) (#694-705) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingFee.sub(25))) (#703)
Consider ordering multiplication before division.
Additional information: link
CoinToken.addLiquidity(uint256,uint256) (#751-764) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#756-763)
Ensure that all the return values of the function calls are used.
Additional information: link
CoinToken.allowance(address,address).owner (#555) shadows:
- Ownable.owner() (#157-159) (function)
CoinToken._approve(address,address,uint256).owner (#646) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.
Additional information: link
CoinToken.setTaxFee(uint256) (#920-922) should emit an event for:
- _taxFee = taxFee (#921)
CoinToken.setBuybackFee(uint256) (#924-927) should emit an event for:
- buybackFee = _buybackFee (#925)
- _liquidityFee = buybackFee.add(marketingFee) (#926)
CoinToken.setMaxTxAmount(uint256) (#929-931) should emit an event for:
- _maxTxAmount = maxTxAmount (#930)
CoinToken.setMarketingFee(uint256) (#933-936) should emit an event for:
- marketingFee = _marketingFee (#934)
- _liquidityFee = buybackFee.add(marketingFee) (#935)
CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#938-940) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#939)
CoinToken.setBuybackUpperLimit(uint256) (#942-944) should emit an event for:
- buyBackUpperLimit = buyBackLimit (#943)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#654-692):
External calls:
- swapTokens(contractTokenBalance) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
External calls sending eth:
- swapTokens(contractTokenBalance) (#672)
- recipient.transfer(amount) (#975)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _previousLiquidityFee = _liquidityFee (#891)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _previousTaxFee = _taxFee (#890)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _tFeeTotal = _tFeeTotal.add(tFee) (#826)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _taxFee = _previousTaxFee (#902)
- _taxFee = 0 (#895)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- buybackFee = previousBuybackFee (#904)
- buybackFee = 0 (#897)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- previousBuybackFee = buybackFee (#892)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- previousMarketingFee = marketingFee (#893)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-527):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#517-518)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#523)
- _isExcludedFromFee[address(this)] = true (#524)
- uniswapV2Router = _uniswapV2Router (#520)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#975)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
- _allowances[owner][spender] = amount (#650)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#654-692):
External calls:
- swapTokens(contractTokenBalance) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
External calls sending eth:
- swapTokens(contractTokenBalance) (#672)
- recipient.transfer(amount) (#975)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#748)
- buyBackTokens(balance.div(100)) (#680)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- Transfer(sender,recipient,tTransferAmount) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- Transfer(sender,recipient,tTransferAmount) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- Transfer(sender,recipient,tTransferAmount) (#821)
- _tokenTransfer(from,to,amount,takeFee) (#691)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-527):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#517-518)
Event emitted after the call(s):
- Transfer(address(0),address(tx.origin),_tTotal) (#526)
Reentrancy in CoinToken.swapETHForTokens(uint256) (#734-749):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#748)
Reentrancy in CoinToken.swapTokensForEth(uint256) (#714-732):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#731)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#723-729)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#975)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#651)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#192-197) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#194)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.
Additional information: link
CoinToken.includeInReward(address) (#633-644) has costly operations inside a loop:
- _excluded.pop() (#640)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
CoinToken.addLiquidity(uint256,uint256) (#751-764) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.
Additional information: link
solc-0.8.10 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) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#236) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#237) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#253) is not in mixedCase
Function IUniswapV2Router01.WETH() (#274) is not in mixedCase
Parameter CoinToken.calculateTaxFee(uint256)._amount (#875) is not in mixedCase
Parameter CoinToken.calculateLiquidityFee(uint256)._amount (#881) is not in mixedCase
Parameter CoinToken.setBuybackFee(uint256)._buybackFee (#924) is not in mixedCase
Parameter CoinToken.setMarketingFee(uint256)._marketingFee (#933) is not in mixedCase
Parameter CoinToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#938) is not in mixedCase
Parameter CoinToken.setMarketingAddress(address)._marketingAddress (#946) is not in mixedCase
Parameter CoinToken.setSwapAndLiquifyEnabled(bool)._enabled (#950) is not in mixedCase
Parameter CoinToken.setBuyBackEnabled(bool)._enabled (#955) is not in mixedCase
Parameter CoinToken.presale(bool)._presale (#960) is not in mixedCase
Variable CoinToken.lp_poolAddress (#415) is not in mixedCase
Variable CoinToken._taxFee (#437) is not in mixedCase
Variable CoinToken._maxTxAmount (#450) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CoinToken._transfer(address,address,uint256) (#654-692):
External calls:
- swapTokens(contractTokenBalance) (#672)
- recipient.transfer(amount) (#975)
External calls sending eth:
- swapTokens(contractTokenBalance) (#672)
- recipient.transfer(amount) (#975)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _liquidityFee = _previousLiquidityFee (#903)
- _liquidityFee = 0 (#896)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _previousLiquidityFee = _liquidityFee (#891)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _previousTaxFee = _taxFee (#890)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#870)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#806)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#797)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _rTotal = _rTotal.sub(rFee) (#825)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _tFeeTotal = _tFeeTotal.add(tFee) (#826)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#872)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#805)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#815)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#796)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#817)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _taxFee = _previousTaxFee (#902)
- _taxFee = 0 (#895)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- buybackFee = previousBuybackFee (#904)
- buybackFee = 0 (#897)
- buyBackTokens(balance.div(100)) (#680)
- inSwapAndLiquify = true (#483)
- inSwapAndLiquify = false (#485)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- marketingFee = previousMarketingFee (#905)
- marketingFee = 0 (#898)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- previousBuybackFee = buybackFee (#892)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- previousMarketingFee = marketingFee (#893)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#748)
- buyBackTokens(balance.div(100)) (#680)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- Transfer(sender,recipient,tTransferAmount) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- Transfer(sender,recipient,tTransferAmount) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- Transfer(sender,recipient,tTransferAmount) (#821)
- _tokenTransfer(from,to,amount,takeFee) (#691)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#975)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#975)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#741-746)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
- _allowances[owner][spender] = amount (#650)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#651)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#279) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#280)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#804) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#794) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#612) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#804) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#794) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#612) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#612) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#612) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#804) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#804) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#794) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#794) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#612) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#804) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken._getValues(uint256).rTransferAmount (#831) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#814) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#814) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#612) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#814) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#814) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._getValues(uint256).rTransferAmount (#831) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#785)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken._getValues(uint256).rTransferAmount (#831) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#794) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._getValues(uint256).rTransferAmount (#831) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#794)
Variable CoinToken._getValues(uint256).rTransferAmount (#831) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#814) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#804) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#814)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#794) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#814) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken._getValues(uint256).rTransferAmount (#831) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#838)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#846) is too similar to CoinToken._getValues(uint256).tTransferAmount (#830)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#785) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#804)
Prevent variables from having similar names.
Additional information: link
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,address,address,address) (#488-527) uses literals with too many digits:
- buyBackUpperLimit = 100000 * 10 ** 18 (#511)
CoinToken.slitherConstructorVariables() (#411-981) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#417)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#177-179)
getTime() should be declared external:
- Ownable.getTime() (#181-183)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#185-190)
unlock() should be declared external:
- Ownable.unlock() (#192-197)
name() should be declared external:
- CoinToken.name() (#529-531)
symbol() should be declared external:
- CoinToken.symbol() (#533-535)
decimals() should be declared external:
- CoinToken.decimals() (#537-539)
transfer(address,uint256) should be declared external:
- CoinToken.transfer(address,uint256) (#550-553)
allowance(address,address) should be declared external:
- CoinToken.allowance(address,address) (#555-557)
approve(address,uint256) should be declared external:
- CoinToken.approve(address,uint256) (#559-562)
transferFrom(address,address,uint256) should be declared external:
- CoinToken.transferFrom(address,address,uint256) (#564-568)
increaseAllowance(address,uint256) should be declared external:
- CoinToken.increaseAllowance(address,uint256) (#570-573)
decreaseAllowance(address,uint256) should be declared external:
- CoinToken.decreaseAllowance(address,uint256) (#575-578)
isExcludedFromReward(address) should be declared external:
- CoinToken.isExcludedFromReward(address) (#580-582)
totalFees() should be declared external:
- CoinToken.totalFees() (#584-586)
minimumTokensBeforeSwapAmount() should be declared external:
- CoinToken.minimumTokensBeforeSwapAmount() (#588-590)
buyBackUpperLimitAmount() should be declared external:
- CoinToken.buyBackUpperLimitAmount() (#592-594)
deliver(uint256) should be declared external:
- CoinToken.deliver(uint256) (#596-603)
reflectionFromToken(uint256,bool) should be declared external:
- CoinToken.reflectionFromToken(uint256,bool) (#606-615)
excludeFromReward(address) should be declared external:
- CoinToken.excludeFromReward(address) (#623-631)
isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#908-910)
excludeFromFee(address) should be declared external:
- CoinToken.excludeFromFee(address) (#912-914)
includeInFee(address) should be declared external:
- CoinToken.includeInFee(address) (#916-918)
setBuyBackEnabled(bool) should be declared external:
- CoinToken.setBuyBackEnabled(bool) (#955-958)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 10% buy tax and 10% sell tax.
Taxes are low and contract ownership is renounced.
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account