Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in kaiDHTv3._transfer(address,address,uint256) (#889-923):
External calls:
- swapAndLiquify(contractTokenBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#958-964)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#910)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#922)
- _rOwned[marketingAddress] = _rOwned[marketingAddress].add(rMarketing) (#1218)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1210)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1068)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1044)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1020)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1092)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1070)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1046)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1022)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1094)
- _tokenTransfer(from,to,amount,takeFee) (#922)
- _rTotal = _rTotal.sub(rFee) (#1102)
- _tokenTransfer(from,to,amount,takeFee) (#922)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1212)
- _tOwned[marketingAddress] = _tOwned[marketingAddress].add(tMarketing) (#1220)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1091)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1069)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1045)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1021)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1093)
Apply the check-effects-interactions pattern.
Additional information: link
kaiDHTv3.addLiquidity(uint256,uint256) (#970-983) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
Ensure that all the return values of the function calls are used.
Additional information: link
kaiDHTv3._approve(address,address,uint256).owner (#878) shadows:
- Ownable.owner() (#226-228) (function)
Rename the local variables that shadow another component.
Additional information: link
kaiDHTv3.setNumTokensSellToAddToLiquidity(uint256) (#1290-1295) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1294)
Emit an event for critical parameter changes.
Additional information: link
kaiDHTv3.setMarketingAddress(address)._marketingAddress (#1297) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1298)
Check that the address is not zero.
Additional information: link
Reentrancy in kaiDHTv3.transferFrom(address,address,uint256) (#756-771):
External calls:
- _transfer(sender,recipient,amount) (#761)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#958-964)
External calls sending eth:
- _transfer(sender,recipient,amount) (#761)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#762-769)
- _allowances[owner][spender] = amount (#885)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in kaiDHTv3.transferFrom(address,address,uint256) (#756-771):
External calls:
- _transfer(sender,recipient,amount) (#761)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#958-964)
External calls sending eth:
- _transfer(sender,recipient,amount) (#761)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#975-982)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#886)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#762-769)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#264-272) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#269)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#184-207) uses assembly
- INLINE ASM (#199-202)
Do not use evm assembly.
Additional information: link
kaiDHTv3.transferToAddressETH(address,uint256) (#1308-1312) is never used and should be removed
Remove unused functions.
Additional information: link
kaiDHTv3._previousMarketingFee (#658) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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
solc-0.8.7 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._functionCallWithValue(address,bytes,uint256,string) (#184-207):
- (success,returndata) = target.call{value: weiValue}(data) (#192-194)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable kaiDHTv3._maxTxAmount (#660) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#15)" inContext (#9-18)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable kaiDHTv3._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1181-1183) is too similar to kaiDHTv3._transferBothExcluded(address,address,uint256).tTransferAmount (#1086)
Prevent variables from having similar names.
Additional information: link
kaiDHTv3.slitherConstructorVariables() (#625-1317) uses literals with too many digits:
- _tTotal = 100000 * 10 ** 9 (#643)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
kaiDHTv3._tTotal (#643) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setSwapAndLiquifyEnabled(bool) should be declared external:
- kaiDHTv3.setSwapAndLiquifyEnabled(bool) (#1301-1304)
Use the external attribute for functions never called from the contract.
Additional information: link
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 on CoinGecko
Additional information: link
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 token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account