A meme coin which has emphasised popular meme coin characteristics whilst rewarding ZillaKing holders USDT. TG: https://t.co/68cEDqGwqY… DC: https://t.co/dQfXIsbZhI
ZillaKing.swapAndDistributeBNB(uint256) (#1721-1741) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in ZillaKing._transfer(address,address,uint256) (#1662-1719):
External calls:
- swapAndDistributeBNB(swapTokensAtAmount) (#1684)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
External calls sending eth:
- swapAndDistributeBNB(swapTokensAtAmount) (#1684)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1696)
- _balances[sender] = senderBalance - amount (#358)
- _balances[recipient] += amount (#360)
- super._transfer(from,to,amount) (#1703)
- _balances[sender] = senderBalance - amount (#358)
- _balances[recipient] += amount (#360)
- swapping = false (#1685)
Apply the check-effects-interactions pattern.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#915-925) ignores return value by usdtTokenAddress.transfer(user,_withdrawableDividend) (#920)
ZillaKingDividendTracker.withdrawStuckTokens(address,address,uint256) (#1218-1220) ignores return value by IERC20(_token).transfer(_receiver,_amount) (#1219)
ZillaKing.withdrawStuckTokens(address,uint256) (#1763-1765) ignores return value by IERC20(_token).transfer(msg.sender,_amount) (#1764)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
ZillaKingDividendTracker.getAccount(address) (#1070-1111) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1108-1110)
ZillaKingDividendTracker.canAutoClaim(uint256) (#1132-1138) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1133)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1137)
Avoid relying on block.timestamp.
Additional information: link
Reentrancy in ZillaKing.constructor() (#1460-1485):
External calls:
- updatePancakeRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#1463)
- _pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#1491-1492)
- dividendTracker.excludeFromDividends(address(pancakeRouter)) (#1495)
- dividendTracker.excludeFromDividends(pancakePair) (#1496)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1466)
- dividendTracker.excludeFromDividends(address(this)) (#1467)
- dividendTracker.excludeFromDividends(address(0x000000000000000000000000000000000000dEaD)) (#1468)
State variables written after the call(s):
- excludeFromFees(owner(),true) (#1470)
- _isExcludedFromFees[account] = excluded (#1554)
- excludeFromFees(address(this),true) (#1471)
- _isExcludedFromFees[account] = excluded (#1554)
Reentrancy in ZillaKing.updateDividendTracker(address) (#1536-1550):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1543)
- newDividendTracker.excludeFromDividends(address(this)) (#1544)
- newDividendTracker.excludeFromDividends(address(pancakeRouter)) (#1545)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1549)
Apply the check-effects-interactions pattern.
Additional information: link
ZillaKing._transfer(address,address,uint256).iterations (#1712) is a local variable never initialized
ZillaKing._transfer(address,address,uint256).claims (#1712) is a local variable never initialized
ZillaKing._transfer(address,address,uint256).lastProcessedIndex (#1712) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
ZillaKing.claim() (#1645-1647) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1646)
ZillaKing._transfer(address,address,uint256) (#1662-1719) ignores return value by dividendTracker.process(gas) (#1712-1717)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (#852) shadows:
- ERC20._name (#166) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#852) shadows:
- ERC20._symbol (#167) (state variable)
Rename the local variables that shadow another component.
Additional information: link
ZillaKing.updatePancakeRouter(address)._pancakePair (#1491-1492) lacks a zero-check on :
- pancakePair = _pancakePair (#1493)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#915-925) has external calls inside a loop: usdtTokenAddress.transfer(user,_withdrawableDividend) (#920)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'ZillaKing._transfer(address,address,uint256).lastProcessedIndex (#1712)' in ZillaKing._transfer(address,address,uint256) (#1662-1719) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1713)
Variable 'ZillaKing._transfer(address,address,uint256).claims (#1712)' in ZillaKing._transfer(address,address,uint256) (#1662-1719) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1713)
Variable 'ZillaKing._transfer(address,address,uint256).iterations (#1712)' in ZillaKing._transfer(address,address,uint256) (#1662-1719) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1713)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in ZillaKing.constructor() (#1460-1485):
External calls:
- updatePancakeRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#1463)
- _pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#1491-1492)
- dividendTracker.excludeFromDividends(address(pancakeRouter)) (#1495)
- dividendTracker.excludeFromDividends(pancakePair) (#1496)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1466)
- dividendTracker.excludeFromDividends(address(this)) (#1467)
- dividendTracker.excludeFromDividends(address(0x000000000000000000000000000000000000dEaD)) (#1468)
State variables written after the call(s):
- _mint(owner(),10 ** 11 * (10 ** decimals())) (#1483)
- _balances[account] += amount (#382)
- _isExcludedFromMaxHoldLimit[address(0x000000000000000000000000000000000000dEaD)] = true (#1472)
- _isExcludedFromMaxHoldLimit[owner()] = true (#1473)
- _isExcludedFromMaxHoldLimit[address(this)] = true (#1474)
- _mint(owner(),10 ** 11 * (10 ** decimals())) (#1483)
- _totalSupply += amount (#381)
- marketingWallet = owner() (#1477)
- maxHoldingAmount = totalSupply().div(200) (#1484)
Reentrancy in DividendPayingToken.distributeDividends() (#875-890):
External calls:
- swapETHForTokens(msg.value) (#880)
- pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#899-904)
State variables written after the call(s):
- magnifiedDividendPerShare = magnifiedDividendPerShare.add((swapBalance).mul(magnitude) / totalSupply()) (#883-885)
- totalDividendsDistributed = totalDividendsDistributed.add(swapBalance) (#888)
Reentrancy in ZillaKingDividendTracker.processAccount(address,bool) (#1206-1216):
External calls:
- amount = _withdrawDividendOfUser(account) (#1207)
- usdtTokenAddress.transfer(user,_withdrawableDividend) (#920)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1210)
Reentrancy in ZillaKing.updatePancakeRouter(address) (#1487-1501):
External calls:
- _pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#1491-1492)
State variables written after the call(s):
- pancakePair = _pancakePair (#1493)
Reentrancy in ZillaKing.updatePancakeRouter(address) (#1487-1501):
External calls:
- _pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#1491-1492)
- dividendTracker.excludeFromDividends(address(pancakeRouter)) (#1495)
- dividendTracker.excludeFromDividends(pancakePair) (#1496)
State variables written after the call(s):
- excludeFromFees(newAddress,true) (#1500)
- _isExcludedFromFees[account] = excluded (#1554)
- _isExcludedFromMaxHoldLimit[pancakePair] = true (#1498)
- _isExcludedFromMaxHoldLimit[newAddress] = true (#1499)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ZillaKing._transfer(address,address,uint256) (#1662-1719):
External calls:
- swapAndDistributeBNB(swapTokensAtAmount) (#1684)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
External calls sending eth:
- swapAndDistributeBNB(swapTokensAtAmount) (#1684)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#362)
- super._transfer(from,to,amount) (#1703)
- Transfer(sender,recipient,amount) (#362)
- super._transfer(from,address(this),fees) (#1696)
Reentrancy in ZillaKing._transfer(address,address,uint256) (#1662-1719):
External calls:
- swapAndDistributeBNB(swapTokensAtAmount) (#1684)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1706)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1707)
- dividendTracker.process(gas) (#1712-1717)
External calls sending eth:
- swapAndDistributeBNB(swapTokensAtAmount) (#1684)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
Event emitted after the call(s):
- ErrorInProcess(msg.sender) (#1716)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1713)
Reentrancy in ZillaKing.constructor() (#1460-1485):
External calls:
- updatePancakeRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#1463)
- _pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#1491-1492)
- dividendTracker.excludeFromDividends(address(pancakeRouter)) (#1495)
- dividendTracker.excludeFromDividends(pancakePair) (#1496)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1466)
- dividendTracker.excludeFromDividends(address(this)) (#1467)
- dividendTracker.excludeFromDividends(address(0x000000000000000000000000000000000000dEaD)) (#1468)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1556)
- excludeFromFees(owner(),true) (#1470)
- ExcludeFromFees(account,excluded) (#1556)
- excludeFromFees(address(this),true) (#1471)
- Transfer(address(0),account,amount) (#383)
- _mint(owner(),10 ** 11 * (10 ** decimals())) (#1483)
Reentrancy in DividendPayingToken.distributeDividends() (#875-890):
External calls:
- swapETHForTokens(msg.value) (#880)
- pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#899-904)
Event emitted after the call(s):
- DividendsDistributed(msg.sender,swapBalance) (#886)
Reentrancy in ZillaKingDividendTracker.processAccount(address,bool) (#1206-1216):
External calls:
- amount = _withdrawDividendOfUser(account) (#1207)
- usdtTokenAddress.transfer(user,_withdrawableDividend) (#920)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1211)
Reentrancy in ZillaKing.processDividendTracker(uint256) (#1640-1643):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1641)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1642)
Reentrancy in ZillaKing.swapAndDistributeBNB(uint256) (#1721-1741):
External calls:
- swapTokensForEth(tokens) (#1722)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
Event emitted after the call(s):
- CalculatedBNBForEachRecipient(forMarketing,forDividends) (#1728)
Reentrancy in ZillaKing.swapAndDistributeBNB(uint256) (#1721-1741):
External calls:
- swapTokensForEth(tokens) (#1722)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
External calls sending eth:
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
Event emitted after the call(s):
- SwapAndSendTo(forMarketing,MARKETING) (#1733)
Reentrancy in ZillaKing.swapAndDistributeBNB(uint256) (#1721-1741):
External calls:
- swapTokensForEth(tokens) (#1722)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
External calls sending eth:
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
Event emitted after the call(s):
- SwapAndSendTo(forDividends,DIVIDENDS) (#1739)
Reentrancy in ZillaKing.swapTokensForEth(uint256) (#1743-1761):
External calls:
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1753-1759)
Event emitted after the call(s):
- FinishSwapTokensForEth(address(this).balance) (#1760)
Reentrancy in ZillaKing.updateDividendTracker(address) (#1536-1550):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1543)
- newDividendTracker.excludeFromDividends(address(this)) (#1544)
- newDividendTracker.excludeFromDividends(address(pancakeRouter)) (#1545)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1547)
Reentrancy in ZillaKing.updatePancakeRouter(address) (#1487-1501):
External calls:
- _pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#1491-1492)
- dividendTracker.excludeFromDividends(address(pancakeRouter)) (#1495)
- dividendTracker.excludeFromDividends(pancakePair) (#1496)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1556)
- excludeFromFees(newAddress,true) (#1500)
Apply the check-effects-interactions pattern.
Additional information: link
Context._msgData() (#10-12) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#965-971) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#702-711) is never used and should be removed
SafeMath.mod(uint256,uint256) (#662-664) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#728-737) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#679-688) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#533-539) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#575-580) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#587-592) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#558-568) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#546-551) is never used and should be removed
SafeMathInt.div(int256,int256) (#501-507) is never used and should be removed
SafeMathInt.mul(int256,int256) (#491-499) is never used and should be removed
Remove unused functions.
Additional information: link
ZillaKing.swapTokensAtAmount (#1432) is set pre-construction with a non-constant function or state variable:
- 10000 * (10 ** decimals())
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
Pragma version^0.8.0 (#3) allows old versions
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 ZillaKing.swapAndDistributeBNB(uint256) (#1721-1741):
- (success) = address(marketingWallet).call{value: forMarketing}() (#1730)
- (success,None) = address(dividendTracker).call{value: forDividends}() (#1736)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter DividendPayingToken.dividendOf(address)._owner (#931) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#938) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#945) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#955) is not in mixedCase
Constant DividendPayingToken.magnitude (#829) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter ZillaKingDividendTracker.getAccount(address)._account (#1070) is not in mixedCase
Parameter ZillaKingDividendTracker.withdrawStuckTokens(address,address,uint256)._token (#1218) is not in mixedCase
Parameter ZillaKingDividendTracker.withdrawStuckTokens(address,address,uint256)._receiver (#1218) is not in mixedCase
Parameter ZillaKingDividendTracker.withdrawStuckTokens(address,address,uint256)._amount (#1218) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#1254) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#1255) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#1272) is not in mixedCase
Function IPancakeRouter01.WETH() (#1292) is not in mixedCase
Parameter ZillaKing.setFees(uint256,uint256)._DividendFee (#1511) is not in mixedCase
Parameter ZillaKing.setFees(uint256,uint256)._MarketingFee (#1511) is not in mixedCase
Parameter ZillaKing.withdrawInDividend(address,uint256)._token (#1610) is not in mixedCase
Parameter ZillaKing.withdrawInDividend(address,uint256)._amount (#1610) is not in mixedCase
Parameter ZillaKing.withdrawStuckTokens(address,uint256)._token (#1763) is not in mixedCase
Parameter ZillaKing.withdrawStuckTokens(address,uint256)._amount (#1763) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#916) is too similar to ZillaKingDividendTracker.getAccount(address).withdrawableDividends (#1074)
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1297) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1298)
Prevent variables from having similar names.
Additional information: link
ZillaKingDividendTracker.getAccountAtIndex(uint256) (#1113-1130) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1124)
ZillaKing.constructor() (#1460-1485) uses literals with too many digits:
- dividendTracker.excludeFromDividends(address(0x000000000000000000000000000000000000dEaD)) (#1468)
ZillaKing.constructor() (#1460-1485) uses literals with too many digits:
- _isExcludedFromMaxHoldLimit[address(0x000000000000000000000000000000000000dEaD)] = true (#1472)
ZillaKing.updateGasForProcessing(uint256) (#1575-1580) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,ZillaKing: gasForProcessing must be between 200,000 and 500,000) (#1576)
ZillaKing.slitherConstructorVariables() (#1425-1767) uses literals with too many digits:
- gasForProcessing = 300000 (#1435)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#17) is never used in ZillaKingDividendTracker (#1008-1221)
Ownable._previousOwner (#17) is never used in ZillaKing (#1425-1767)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (#17) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#52-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#61-65)
name() should be declared external:
- ERC20.name() (#186-188)
symbol() should be declared external:
- ERC20.symbol() (#194-196)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#237-240)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#245-247)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#256-259)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#274-288)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#302-305)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#321-329)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#749-751)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#753-758)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#760-762)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#766-768)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#909-911)
- ZillaKingDividendTracker.withdrawDividend() (#1038-1040)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#931-933)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#945-947)
getAccountAtIndex(uint256) should be declared external:
- ZillaKingDividendTracker.getAccountAtIndex(uint256) (#1113-1130)
process(uint256) should be declared external:
- ZillaKingDividendTracker.process(uint256) (#1159-1204)
withdrawStuckTokens(address,address,uint256) should be declared external:
- ZillaKingDividendTracker.withdrawStuckTokens(address,address,uint256) (#1218-1220)
updateDividendTracker(address) should be declared external:
- ZillaKing.updateDividendTracker(address) (#1536-1550)
excludeFromMaxHoldLimit(address,bool) should be declared external:
- ZillaKing.excludeFromMaxHoldLimit(address,bool) (#1559-1561)
isExcludedFromMaxHoldLimit(address) should be declared external:
- ZillaKing.isExcludedFromMaxHoldLimit(address) (#1563-1565)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- ZillaKing.excludeMultipleAccountsFromFees(address[],bool) (#1567-1573)
updateGasForProcessing(uint256) should be declared external:
- ZillaKing.updateGasForProcessing(uint256) (#1575-1580)
isExcludedFromFees(address) should be declared external:
- ZillaKing.isExcludedFromFees(address) (#1598-1600)
withdrawableDividendOf(address) should be declared external:
- ZillaKing.withdrawableDividendOf(address) (#1602-1604)
dividendTokenBalanceOf(address) should be declared external:
- ZillaKing.dividendTokenBalanceOf(address) (#1606-1608)
withdrawInDividend(address,uint256) should be declared external:
- ZillaKing.withdrawInDividend(address,uint256) (#1610-1612)
withdrawStuckTokens(address,uint256) should be declared external:
- ZillaKing.withdrawStuckTokens(address,uint256) (#1763-1765)
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
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
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
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Twitter account has few posts