We are creating a Covid-19(Delta, Omicron)-fighting community based on DAO 3.0 principles and giving them unique tools for community interaction, discussion, voting, and governance.
Join us, fight for safety, fight for life, fight for freedom!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
Reentrancy in DAOKing._transfer(address,address,uint256) (#1092-1148):
External calls:
- swapAndLiquify(contractTokenBalance) (#1116)
- uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
- uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1116)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1424)
- _tOwned[address(this)] = _tOwned[address(this)].add(tAmount) (#1270)
- _tOwned[address(this)] = _tOwned[address(this)].add(tAmount) (#1264)
- _tOwned[recipient] = _tOwned[recipient].add(tAmount.div(10000).mul(recipientRate)) (#1439-1441)
- _tOwned[address(0)] = _tOwned[address(0)].add(tAmount) (#1257)
- _tOwned[address(this)] = _tOwned[address(this)].add(tAmount.div(10000).mul(_inviterFee)) (#1286)
- _tOwned[cur] = _tOwned[cur].add(curTAmount) (#1308)
- _tOwned[address(this)] = _tOwned[address(this)].add(tAmount.div(10000).mul(_inviterFee.sub(accurRate))) (#1311)
- process(distributorGas) (#1145)
- _tOwned[address(this)] = _tOwned[address(this)].sub(amount) (#1205)
- _tOwned[shareholder] = _tOwned[shareholder].add(amount) (#1206)
Apply the check-effects-interactions pattern.
Additional information: link
DAOKing._transfer(address,address,uint256) (#1092-1148) uses a dangerous strict equality:
- shouldSetInviter = balanceOf(to) == 0 && inviter[to] == address(0) && from != uniswapV2Pair (#1127-1129)
DAOKing.setShare(address) (#1210-1219) uses a dangerous strict equality:
- IERC20(uniswapV2Pair).balanceOf(shareholder) == 0 (#1212)
DAOKing.setShare(address) (#1210-1219) uses a dangerous strict equality:
- IERC20(uniswapV2Pair).balanceOf(shareholder) == 0 (#1215)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
DAOKing.allowance(address,address).owner (#966) shadows:
- Ownable.owner() (#98-100) (function)
DAOKing._approve(address,address,uint256).owner (#1081) shadows:
- Ownable.owner() (#98-100) (function)
Rename the local variables that shadow another component.
Additional information: link
Ownable._previousOwner (#87) is never used in DAOKing (#834-1445)
Ownable._lockTime (#88) is never used in DAOKing (#834-1445)
Remove unused state variables.
Additional information: link
Address.functionCall(address,bytes) (#313-315) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-364) is never used and should be removed
Address.sendValue(address,uint256) (#287-293) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#457-467) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#448-455) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#416-423) is never used and should be removed
Remove unused functions.
Additional information: link
DAOKing._takeInviterFee(address,address,uint256) (#1274-1313) performs a multiplication on the result of a division:
-_tOwned[address(this)] = _tOwned[address(this)].add(tAmount.div(10000).mul(_inviterFee)) (#1286)
DAOKing._takeInviterFee(address,address,uint256) (#1274-1313) performs a multiplication on the result of a division:
-Transfer(sender,address(this),tAmount.div(10000).mul(_inviterFee)) (#1287)
DAOKing._takeInviterFee(address,address,uint256) (#1274-1313) performs a multiplication on the result of a division:
-_tOwned[address(this)] = _tOwned[address(this)].add(tAmount.div(10000).mul(_inviterFee.sub(accurRate))) (#1311)
DAOKing._takeInviterFee(address,address,uint256) (#1274-1313) performs a multiplication on the result of a division:
-Transfer(sender,address(this),tAmount.div(10000).mul(_inviterFee.sub(accurRate))) (#1312)
DAOKing._takeInviterFee(address,address,uint256) (#1274-1313) performs a multiplication on the result of a division:
-curTAmount = tAmount.div(10000).mul(rate) (#1307)
DAOKing._transferStandard(address,address,uint256) (#1419-1443) performs a multiplication on the result of a division:
-_takeburnFee(sender,tAmount.div(10000).mul(_burnFee)) (#1426)
DAOKing._transferStandard(address,address,uint256) (#1419-1443) performs a multiplication on the result of a division:
-_takeLPFee(sender,tAmount.div(10000).mul(_LPFee)) (#1428)
DAOKing._transferStandard(address,address,uint256) (#1419-1443) performs a multiplication on the result of a division:
-_takeTaxFee(sender,tAmount.div(10000).mul(_taxFee)) (#1430)
DAOKing._transferStandard(address,address,uint256) (#1419-1443) performs a multiplication on the result of a division:
-_tOwned[recipient] = _tOwned[recipient].add(tAmount.div(10000).mul(recipientRate)) (#1439-1441)
DAOKing._transferStandard(address,address,uint256) (#1419-1443) performs a multiplication on the result of a division:
-Transfer(sender,recipient,tAmount.div(10000).mul(recipientRate)) (#1442)
Consider ordering multiplication before division.
Additional information: link
DAOKing.swapThisTokenForToken(uint256) (#1315-1341) ignores return value by uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
DAOKing.swapThisTokenForToken(uint256) (#1315-1341) ignores return value by uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
DAOKing.addLiquidity(address,uint256,uint256) (#1343-1354) ignores return value by uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
Ensure that all the return values of the function calls are used.
Additional information: link
DAOKing.updateNumTokensSellToAddToLiquidity(uint256) (#1383-1385) should emit an event for:
- minTokenNumberToSell = _minTokenNumberToSell (#1384)
DAOKing.updateDistributorGas(uint256) (#1387-1389) should emit an event for:
- distributorGas = _distributorGas (#1388)
DAOKing.updateMinPeriod(uint256) (#1391-1393) should emit an event for:
- minPeriod = _minPeriod (#1392)
DAOKing.updateBurnFee(uint256) (#1395-1397) should emit an event for:
- _burnFee = burnFee (#1396)
DAOKing.updateLPFee(uint256) (#1399-1401) should emit an event for:
- _LPFee = LPFee (#1400)
DAOKing.updateTaxFee(uint256) (#1403-1405) should emit an event for:
- _taxFee = taxFee (#1404)
DAOKing.updateInviteFee(uint256) (#1407-1409) should emit an event for:
- _inviterFee = inviterFee (#1408)
DAOKing.updateDividendsMinAmount(uint256) (#1411-1413) should emit an event for:
- dividendsMinAmount = _dividendsMinAmount (#1412)
Emit an event for critical parameter changes.
Additional information: link
DAOKing.updateReceiver(address).__receiver (#1054) lacks a zero-check on :
- _receiver = __receiver (#1055)
Check that the address is not zero.
Additional information: link
Reentrancy in DAOKing._transfer(address,address,uint256) (#1092-1148):
External calls:
- swapAndLiquify(contractTokenBalance) (#1116)
- uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
- uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1116)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
State variables written after the call(s):
- LPFeeDividends = block.timestamp (#1146)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _LPFee = _previousLPFee (#1075)
- _LPFee = 0 (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _burnFee = _previousBurnFee (#1074)
- _burnFee = 0 (#1067)
- _burnFee = 0 (#1256)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _inviterFee = _previousInviterFee (#1076)
- _inviterFee = 0 (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousBurnFee = _burnFee (#1062)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousInviterFee = _inviterFee (#1065)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousLPFee = _LPFee (#1063)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousTaxFee = _taxFee (#1064)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _tFeeTotal = _tFeeTotal.add(tAmount) (#1258)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _taxFee = _previousTaxFee (#1077)
- _taxFee = 0 (#1070)
- setShare(fromAddress) (#1139)
- _updated[shareholder] = false (#1228)
- _updated[shareholder] = true (#1217)
- setShare(toAddress) (#1140)
- _updated[shareholder] = false (#1228)
- _updated[shareholder] = true (#1217)
- process(distributorGas) (#1145)
- currentIndex = 0 (#1183)
- currentIndex ++ (#1188)
- currentIndex ++ (#1197)
- fromAddress = from (#1137)
- fromAddress = from (#1142)
- inviter[to] = from (#1135)
- setShare(fromAddress) (#1139)
- shareholderIndexes[shareholder] = shareholders.length (#1222)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#1233)
- setShare(toAddress) (#1140)
- shareholderIndexes[shareholder] = shareholders.length (#1222)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#1233)
- setShare(fromAddress) (#1139)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#1232)
- shareholders.push(shareholder) (#1223)
- shareholders.pop() (#1234)
- setShare(toAddress) (#1140)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#1232)
- shareholders.push(shareholder) (#1223)
- shareholders.pop() (#1234)
- toAddress = to (#1138)
- toAddress = to (#1143)
Reentrancy in DAOKing.constructor() (#911-935):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),USDTAddress) (#919)
State variables written after the call(s):
- _approve(address(this),address(_uniswapV2Router),2 ** 256 - 1) (#921)
- _allowances[owner][spender] = amount (#1088)
Reentrancy in DAOKing.constructor() (#911-935):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),USDTAddress) (#919)
- IERC20(USDTAddress).safeApprove(address(_uniswapV2Router),2 ** 256 - 1) (#922)
State variables written after the call(s):
- _isExcludedFromFee[msg.sender] = true (#928)
- _isExcludedFromFee[address(this)] = true (#929)
- isDividendExempt[address(this)] = true (#931)
- isDividendExempt[address(0)] = true (#932)
- uniswapV2Router = _uniswapV2Router (#925)
Reentrancy in DAOKing.transferFrom(address,address,uint256) (#984-999):
External calls:
- _transfer(sender,recipient,amount) (#989)
- uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
- uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
External calls sending eth:
- _transfer(sender,recipient,amount) (#989)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#990-997)
- _allowances[owner][spender] = amount (#1088)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DAOKing._transfer(address,address,uint256) (#1092-1148):
External calls:
- swapAndLiquify(contractTokenBalance) (#1116)
- uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
- uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1116)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
Event emitted after the call(s):
- Transfer(address(this),shareholder,amount) (#1207)
- process(distributorGas) (#1145)
- Transfer(sender,address(this),tAmount) (#1265)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,address(this),tAmount) (#1271)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,recipient,tAmount.div(10000).mul(recipientRate)) (#1442)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,address(0),tAmount) (#1259)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,address(this),tAmount.div(10000).mul(_inviterFee)) (#1287)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,cur,curTAmount) (#1309)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,address(this),tAmount.div(10000).mul(_inviterFee.sub(accurRate))) (#1312)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
Reentrancy in DAOKing.constructor() (#911-935):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),USDTAddress) (#919)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1089)
- _approve(address(this),address(_uniswapV2Router),2 ** 256 - 1) (#921)
Reentrancy in DAOKing.constructor() (#911-935):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),USDTAddress) (#919)
- IERC20(USDTAddress).safeApprove(address(_uniswapV2Router),2 ** 256 - 1) (#922)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_tTotal) (#934)
Reentrancy in DAOKing.swapAndLiquify(uint256) (#1152-1168):
External calls:
- swapThisTokenForToken(tokenPiece) (#1161)
- uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
- addLiquidity(_receiver,contractTokenBalance,usdtToBeAddedToLiquidity) (#1165)
- uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
External calls sending eth:
- swapThisTokenForToken(tokenPiece) (#1161)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
Event emitted after the call(s):
- SwapAndLiquify(tokenPiece,usdtToBeAddedToLiquidity,tokenPiece) (#1167)
Reentrancy in DAOKing.transferFrom(address,address,uint256) (#984-999):
External calls:
- _transfer(sender,recipient,amount) (#989)
- uniswapV2Router.addLiquidity(address(this),USDTAddress,tokenAmount,tokenBAmount,0,0,receiver,block.timestamp + 360) (#1344-1353)
- uniswapV2Router.swapExactTokensForETH(thisTokenAmount,0,path,address(this),block.timestamp + 360) (#1322-1328)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
External calls sending eth:
- _transfer(sender,recipient,amount) (#989)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path_,address(this),block.timestamp + 360) (#1335-1340)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1089)
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#990-997)
Apply the check-effects-interactions pattern.
Additional information: link
DAOKing._transfer(address,address,uint256) (#1092-1148) uses timestamp for comparisons
Dangerous comparisons:
- _tOwned[address(this)] >= dividendsMinAmount && from != address(this) && LPFeeDividends.add(minPeriod) <= block.timestamp (#1144)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#258-269) uses assembly
- INLINE ASM (#265-267)
Address._functionCallWithValue(address,bytes,uint256,string) (#366-392) uses assembly
- INLINE ASM (#384-387)
Do not use evm assembly.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#287-293):
- (success) = recipient.call{value: amount}() (#291)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#366-392):
- (success,returndata) = target.call{value: weiValue}(data) (#375)
Low level call in DAOKing.emergencyBNBWithdraw() (#1368-1371):
- (success) = address(msg.sender).call{value: address(this).balance}() (#1369)
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() (#552) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#554) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#585) is not in mixedCase
Function IUniswapV2Router01.WETH() (#631) is not in mixedCase
Parameter DAOKing.updateReceiver(address).__receiver (#1054) is not in mixedCase
Parameter DAOKing.emergencyTokenWithdraw(uint256)._amount (#1356) is not in mixedCase
Parameter DAOKing.emergencyLPWithdraw(uint256)._amount (#1363) is not in mixedCase
Parameter DAOKing.emergencyUSDTWithdraw(uint256)._amount (#1373) is not in mixedCase
Parameter DAOKing.updateNumTokensSellToAddToLiquidity(uint256)._minTokenNumberToSell (#1383) is not in mixedCase
Parameter DAOKing.updateDistributorGas(uint256)._distributorGas (#1387) is not in mixedCase
Parameter DAOKing.updateMinPeriod(uint256)._minPeriod (#1391) is not in mixedCase
Parameter DAOKing.updateLPFee(uint256).LPFee (#1399) is not in mixedCase
Parameter DAOKing.updateDividendsMinAmount(uint256)._dividendsMinAmount (#1411) is not in mixedCase
Parameter DAOKing.setSwapAndLiquifyEnabled(bool)._enabled (#1415) is not in mixedCase
Constant DAOKing.USDTAddress (#848) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DAOKing._burnFee (#856) is not in mixedCase
Variable DAOKing._LPFee (#859) is not in mixedCase
Variable DAOKing._taxFee (#862) is not in mixedCase
Variable DAOKing._inviterFee (#865) is not in mixedCase
Variable DAOKing.LPFeeDividends (#878) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#636) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#637)
Prevent variables from having similar names.
Additional information: link
DAOKing.slitherConstructorVariables() (#834-1445) uses literals with too many digits:
- minTokenNumberToSell = 200000 * 10 ** 9 (#870)
DAOKing.slitherConstructorVariables() (#834-1445) uses literals with too many digits:
- distributorGas = 500000 (#874)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DAOKing._decimals (#854) should be constant
DAOKing._name (#852) should be constant
DAOKing._symbol (#853) should be constant
DAOKing._tTotal (#868) should be constant
Ownable._lockTime (#88) should be constant
Ownable._previousOwner (#87) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
owner() should be declared external:
- Ownable.owner() (#98-100)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#107-110)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#112-116)
name() should be declared external:
- DAOKing.name() (#937-939)
symbol() should be declared external:
- DAOKing.symbol() (#941-943)
decimals() should be declared external:
- DAOKing.decimals() (#945-947)
totalSupply() should be declared external:
- DAOKing.totalSupply() (#949-951)
transfer(address,uint256) should be declared external:
- DAOKing.transfer(address,uint256) (#957-964)
allowance(address,address) should be declared external:
- DAOKing.allowance(address,address) (#966-973)
approve(address,uint256) should be declared external:
- DAOKing.approve(address,uint256) (#975-982)
transferFrom(address,address,uint256) should be declared external:
- DAOKing.transferFrom(address,address,uint256) (#984-999)
increaseAllowance(address,uint256) should be declared external:
- DAOKing.increaseAllowance(address,uint256) (#1001-1012)
decreaseAllowance(address,uint256) should be declared external:
- DAOKing.decreaseAllowance(address,uint256) (#1014-1028)
totalFees() should be declared external:
- DAOKing.totalFees() (#1030-1032)
isExcludedFromFee(address) should be declared external:
- DAOKing.isExcludedFromFee(address) (#1034-1036)
excludeFromFee(address) should be declared external:
- DAOKing.excludeFromFee(address) (#1038-1040)
excludeReward(address) should be declared external:
- DAOKing.excludeReward(address) (#1042-1044)
includeReward(address) should be declared external:
- DAOKing.includeReward(address) (#1046-1048)
includeInFee(address) should be declared external:
- DAOKing.includeInFee(address) (#1050-1052)
updateReceiver(address) should be declared external:
- DAOKing.updateReceiver(address) (#1054-1056)
emergencyTokenWithdraw(uint256) should be declared external:
- DAOKing.emergencyTokenWithdraw(uint256) (#1356-1361)
emergencyLPWithdraw(uint256) should be declared external:
- DAOKing.emergencyLPWithdraw(uint256) (#1363-1366)
emergencyBNBWithdraw() should be declared external:
- DAOKing.emergencyBNBWithdraw() (#1368-1371)
emergencyUSDTWithdraw(uint256) should be declared external:
- DAOKing.emergencyUSDTWithdraw(uint256) (#1373-1376)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DAOKing.setSwapAndLiquifyEnabled(bool) (#1415-1417)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 20% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
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 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 that token and website are owned by the same team (no listings + unable to find contract on website)
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
Young tokens have high risks of scam / price dump / death
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
Unable to find Youtube account
Twitter account has few posts