Kiradoge coin Token Logo

KIRADOGE [Kiradoge coin] Token

About KIRADOGE

Listings

Token 3 years
white paper

KIRADOGE is a revolutionary token based on Binance smartchain(BSC) which utilizes passive income and lottery to maximize your earnings for both now & the future. How does it work? - Simply let your soul hold $KIRADOGE tokens and get rewarded up to 8% BNB as reward. - The algorithm will run the lottery and select 15 lucky winners. The winners will be chosen on a random draw based on the tokens they hold in a logarithmic algorithm live every Friday on video chat. Lottery system? - Weekly lottery drawing KIRADoge lottery is with a strong use case specifically targeting the gambling industry. aiming for any long-term believers and holders to give them a chance to be eligible for the weekly lottery and win. With our unique lottery system, the core part of $KIRADOGE is that the chances of winning are relative to how many tokens investors hold, which means that all holders are incentivized to buy more tokens in the long term if they wish to increase their chances. The more the holder (soul) holds, the higher the % of winning the daily lottery. - How the chances of winning are calculated Chances of winning will be calculated in indirect proportion to how many tokens each holder has. This means that having more tokens does increase your chances of winning, but not in a linear fashion. Instead, a logarithmic function will be used to convert the proportion of holdings that each investor has, and calculate their chances of winning accordingly. This will lower the discrepancy in the probability of winning between a whale and a small investor while keeping our largest investors at an advantage. - Lottery drawing dapp The lottery platform will be visible in an interface, where all contract holders are visible with their wallet IDs and the number of tokens they hold. Holders (souls) can connect wallets and check the probability of winning against the rest of the holders (souls).

Laser Scorebeta Last Audit: 17 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

KIRADOGE.addLiquidity(uint256,uint256) (#2246-2259) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
KIRADOGE.swapAndSendDividends(uint256) (#2261-2298) sends eth to arbitrary user
Dangerous calls:
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in KIRADOGE._transfer(address,address,uint256) (#2062-2203):
External calls:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- swapAndSendDividends(swapTokenAmount) (#2131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- swapAndSendDividends(swapTokenAmount) (#2131)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
State variables written after the call(s):
- super._transfer(address(this),deadAddress,burnAmount) (#2157)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565-568)
- _balances[recipient] = _balances[recipient].add(amount) (#569)
- super._transfer(address(this),deadAddress,burnAmount_scope_0) (#2167)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565-568)
- _balances[recipient] = _balances[recipient].add(amount) (#569)
- super._transfer(from,address(this),fees) (#2175)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565-568)
- _balances[recipient] = _balances[recipient].add(amount) (#569)
- super._transfer(from,to,amount) (#2178)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565-568)
- _balances[recipient] = _balances[recipient].add(amount) (#569)
- swapping = false (#2133)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#926-952):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#942-944)
Apply the check-effects-interactions pattern.

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.

KIRADOGE._transfer(address,address,uint256).iterations (#2189) is a local variable never initialized
KIRADOGE._transfer(address,address,uint256).lastProcessedIndex (#2191) is a local variable never initialized
KIRADOGE._transfer(address,address,uint256).claims (#2190) 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

DividendPayingToken._withdrawDividendOfUser(address) (#926-952) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
Favor pull over push strategy for external calls.

Additional information: link

KIRADOGE._transfer(address,address,uint256) (#2062-2203) performs a multiplication on the result of a division:
-fees = amount.mul(totalSellFees).div(100) (#2150)
-burnAmount_scope_0 = fees.mul(buyBurnFee).div(totalBuyFees) (#2165)
KIRADOGE._transfer(address,address,uint256) (#2062-2203) performs a multiplication on the result of a division:
-fees = amount.mul(totalSellFees).div(100) (#2150)
-burnAmount = fees.mul(sellBurnFee).div(totalSellFees) (#2153-2155)
KIRADOGE.swapAndSendDividends(uint256) (#2261-2298) performs a multiplication on the result of a division:
-forDevelopers = dividends.mul(marketingPrecentage).div(otherFee) (#2270-2272)
-devAmount = forDevelopers.mul(30).div(100) (#2276)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in KIRADOGE.updateDividendTracker(address) (#1723-1746):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1738)
- newDividendTracker.excludeFromDividends(address(this)) (#1739)
- newDividendTracker.excludeFromDividends(owner()) (#1740)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1741)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1745)
Apply the check-effects-interactions pattern.

Additional information: link

KIRADOGE.claim() (#2042-2044) ignores return value by dividendTracker.processAccount(msg.sender,false) (#2043)
KIRADOGE._transfer(address,address,uint256) (#2062-2203) ignores return value by dividendTracker.process(gas) (#2188-2201)
KIRADOGE.addLiquidity(uint256,uint256) (#2246-2259) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#880) shadows:
- ERC20._name (#339) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#880) shadows:
- ERC20._symbol (#340) (state variable)
Rename the local variables that shadow another component.

Additional information: link

KIRADOGE.updateBuyFees(uint256,uint256,uint256,uint256,uint256) (#1908-1927) should emit an event for:
- buyBurnFee = burnFee (#1918)
- totalBuyFees = buyRewardFee.add(buyLiquidityFee).add(buyMarketingFee).add(buyBurnFee).add(buyLotteryFee) (#1922-1926)
KIRADOGE.updateSellFees(uint256,uint256,uint256,uint256,uint256) (#1930-1949) should emit an event for:
- sellBurnFee = burnFee (#1940)
- totalSellFees = sellRewardFee.add(sellLiquidityFee).add(sellMarketingFee).add(sellBurnFee).add(sellLotteryFee) (#1944-1948)
KIRADOGE.updateSwapPrecentage(uint256,uint256,uint256,uint256) (#1952-1962) should emit an event for:
- rewardPrecentage = newRewardPrecentage (#1958)
- lotteryPrecentage = newLiquidityPrecentage (#1959)
- marketingPrecentage = newMarketingPrecentage (#1960)
- liquidityPrecentage = newLotteryPrecentage (#1961)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#1154) lacks a zero-check on :
- _owner = msgSender (#1155)
KIRADOGE.updateDevWallet(address).newDevWallet (#1895) lacks a zero-check on :
- devWallet = newDevWallet (#1896)
KIRADOGE.updateLotteryFeeReceiver(address).newLotteryFeeReceiver (#1900) lacks a zero-check on :
- lotteryFeeReceiver = newLotteryFeeReceiver (#1904)
Check that the address is not zero.

Additional information: link

Variable 'KIRADOGE._transfer(address,address,uint256).iterations (#2189)' in KIRADOGE._transfer(address,address,uint256) (#2062-2203) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2193-2200)
Variable 'KIRADOGE._transfer(address,address,uint256).lastProcessedIndex (#2191)' in KIRADOGE._transfer(address,address,uint256) (#2062-2203) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2193-2200)
Variable 'KIRADOGE._transfer(address,address,uint256).claims (#2190)' in KIRADOGE._transfer(address,address,uint256) (#2062-2203) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2193-2200)
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 KIRADOGE._transfer(address,address,uint256) (#2062-2203):
External calls:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- swapAndSendDividends(swapTokenAmount) (#2131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- swapAndSendDividends(swapTokenAmount) (#2131)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
State variables written after the call(s):
- swapAndSendDividends(swapTokenAmount) (#2131)
- _allowances[owner][spender] = amount (#637)
- lastBuyBlockNum[to] = block.number (#2137)
Reentrancy in KIRADOGE.constructor(address) (#1676-1719):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1691-1692)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1695)
- uniswapV2Router = _uniswapV2Router (#1694)
Reentrancy in KIRADOGE.constructor(address) (#1676-1719):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1691-1692)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1697)
- dividendTracker.excludeFromDividends(pair) (#1798)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1700)
- dividendTracker.excludeFromDividends(address(this)) (#1701)
- dividendTracker.excludeFromDividends(owner()) (#1702)
- dividendTracker.excludeFromDividends(ownerWallet) (#1703)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1704)
State variables written after the call(s):
- _mint(ownerWallet,1000 * 10 ** 12 * (10 ** 9)) (#1718)
- _balances[account] = _balances[account].add(amount) (#588)
- excludeFromFees(owner(),true) (#1707)
- _isExcludedFromFees[account] = excluded (#1762)
- excludeFromFees(address(this),true) (#1708)
- _isExcludedFromFees[account] = excluded (#1762)
- _mint(ownerWallet,1000 * 10 ** 12 * (10 ** 9)) (#1718)
- _totalSupply = _totalSupply.add(amount) (#587)
- canTransferBeforeLiquidityIsEnabled[owner()] = true (#1711)
- canTransferBeforeLiquidityIsEnabled[ownerWallet] = true (#1712)
Reentrancy in KIRADOGEDividendTracker.processAccount(address,bool) (#2544-2558):
External calls:
- amount = _withdrawDividendOfUser(account) (#2549)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2552)
Reentrancy in KIRADOGE.swapAndLiquify(uint256) (#2205-2226):
External calls:
- swapTokensForEth(half) (#2217)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- addLiquidity(otherHalf,newBalance) (#2223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#2223)
- _allowances[owner][spender] = amount (#637)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KIRADOGE._setAutomatedMarketMakerPair(address,bool) (#1790-1802):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1798)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1801)
Reentrancy in KIRADOGE._transfer(address,address,uint256) (#2062-2203):
External calls:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- swapAndSendDividends(swapTokenAmount) (#2131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- swapAndSendDividends(swapTokenAmount) (#2131)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- swapAndSendDividends(swapTokenAmount) (#2131)
- SendDividends(tokens,dividends) (#2296)
- swapAndSendDividends(swapTokenAmount) (#2131)
- Transfer(sender,recipient,amount) (#570)
- super._transfer(address(this),deadAddress,burnAmount) (#2157)
- Transfer(sender,recipient,amount) (#570)
- super._transfer(from,to,amount) (#2178)
- Transfer(sender,recipient,amount) (#570)
- super._transfer(address(this),deadAddress,burnAmount_scope_0) (#2167)
- Transfer(sender,recipient,amount) (#570)
- super._transfer(from,address(this),fees) (#2175)
Reentrancy in KIRADOGE._transfer(address,address,uint256) (#2062-2203):
External calls:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- swapAndSendDividends(swapTokenAmount) (#2131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2180-2182)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2183)
- dividendTracker.process(gas) (#2188-2201)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2128)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
- swapAndSendDividends(swapTokenAmount) (#2131)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2193-2200)
Reentrancy in KIRADOGE.constructor(address) (#1676-1719):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1691-1692)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1697)
- dividendTracker.excludeFromDividends(pair) (#1798)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1801)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1697)
Reentrancy in KIRADOGE.constructor(address) (#1676-1719):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1691-1692)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1697)
- dividendTracker.excludeFromDividends(pair) (#1798)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1700)
- dividendTracker.excludeFromDividends(address(this)) (#1701)
- dividendTracker.excludeFromDividends(owner()) (#1702)
- dividendTracker.excludeFromDividends(ownerWallet) (#1703)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1704)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1764)
- excludeFromFees(address(this),true) (#1708)
- ExcludeFromFees(account,excluded) (#1764)
- excludeFromFees(owner(),true) (#1707)
- Transfer(address(0),account,amount) (#589)
- _mint(ownerWallet,1000 * 10 ** 12 * (10 ** 9)) (#1718)
Reentrancy in KIRADOGEDividendTracker.processAccount(address,bool) (#2544-2558):
External calls:
- amount = _withdrawDividendOfUser(account) (#2549)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2553)
Reentrancy in KIRADOGE.processDividendTracker(uint256) (#2026-2040):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2027-2031)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2032-2039)
Reentrancy in KIRADOGE.swapAndLiquify(uint256) (#2205-2226):
External calls:
- swapTokensForEth(half) (#2217)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- addLiquidity(otherHalf,newBalance) (#2223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#2251-2258)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- addLiquidity(otherHalf,newBalance) (#2223)
- SwapAndLiquify(half,newBalance,otherHalf) (#2225)
Reentrancy in KIRADOGE.swapAndSendDividends(uint256) (#2261-2298):
External calls:
- swapTokensForEth(tokens) (#2262)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2237-2243)
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
External calls sending eth:
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#2296)
Reentrancy in KIRADOGE.updateDividendTracker(address) (#1723-1746):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1738)
- newDividendTracker.excludeFromDividends(address(this)) (#1739)
- newDividendTracker.excludeFromDividends(owner()) (#1740)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1741)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1743)
Apply the check-effects-interactions pattern.

Additional information: link

KIRADOGEDividendTracker.getAccount(address) (#2382-2429) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#2426-2428)
KIRADOGEDividendTracker.canAutoClaim(uint256) (#2463-2469) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2464)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2468)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#137-140) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1009-1024) is never used and should be removed
SafeMath.mod(uint256,uint256) (#276-278) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#292-299) is never used and should be removed
SafeMathInt.abs(int256) (#759-762) is never used and should be removed
SafeMathInt.div(int256,int256) (#730-736) is never used and should be removed
SafeMathInt.mul(int256,int256) (#718-725) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#3) allows old versions
Pragma version^0.6.2 (#94) allows old versions
Pragma version^0.6.2 (#120) allows old versions
Pragma version^0.6.2 (#145) allows old versions
Pragma version^0.6.2 (#304) allows old versions
Pragma version^0.6.2 (#664) allows old versions
Pragma version^0.6.2 (#705) allows old versions
Pragma version^0.6.2 (#772) allows old versions
Pragma version^0.6.2 (#807) allows old versions
Pragma version^0.6.2 (#841) allows old versions
Pragma version^0.6.2 (#1065) allows old versions
Pragma version^0.6.2 (#1140) allows old versions
Pragma version^0.6.2 (#1202) allows old versions
Pragma version^0.6.2 (#1315) allows old versions
Pragma version^0.6.2 (#1349) allows old versions
Pragma version^0.6.2 (#1561) 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 DividendPayingToken._withdrawDividendOfUser(address) (#926-952):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#936-939)
Low level call in KIRADOGE.swapAndSendDividends(uint256) (#2261-2298):
- (distributeSuccess) = address(dividendTracker).call{value: distributeAmount}() (#2279-2281)
- (marketingSuccess) = address(marketingWallet).call{value: marketingAmount}() (#2282-2284)
- (devSuccess) = address(devWallet).call{value: devAmount}() (#2285)
- (lotteryFeeSuccess) = address(lotteryFeeReceiver).call{value: lotteryAmount}() (#2286-2288)
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 (#957) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#964) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#976) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#990) is not in mixedCase
Constant DividendPayingToken.magnitude (#860) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1237) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1239) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1270) is not in mixedCase
Function IUniswapV2Router01.WETH() (#1354) is not in mixedCase
Event KIRADOGEmaxBuyTransactionAmountUpdated(uint256,uint256) (#1641-1644) is not in CapWords
Event KIRADOGEmaxSellTransactionAmountUpdated(uint256,uint256) (#1645-1648) is not in CapWords
Event KIRADOGEmaxWalletTokenUpdated(uint256,uint256) (#1649-1652) is not in CapWords
Event KIRADOGEsetswapTokensAtAmount(uint256,uint256) (#1653-1656) is not in CapWords
Parameter KIRADOGE.startTrading(bool)._status (#1868) is not in mixedCase
Parameter KIRADOGEDividendTracker.getAccount(address)._account (#2382) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#138)" inContext (#132-141)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1359) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1360)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#930) is too similar to KIRADOGEDividendTracker.getAccount(address).withdrawableDividends (#2389)
Prevent variables from having similar names.

Additional information: link

KIRADOGE.liftAllLimits() (#1872-1875) uses literals with too many digits:
- maxSellTransactionAmount = 1000000000000 * (10 ** 9) (#1873)
KIRADOGE.liftAllLimits() (#1872-1875) uses literals with too many digits:
- maxBuyTransactionAmount = 1000000000000 * (10 ** 9) (#1874)
KIRADOGE.updateGasForProcessing(uint256) (#1877-1888) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,KIRADOGE: gasForProcessing must be between 200,000 and 500,000) (#1878-1881)
KIRADOGE.slitherConstructorVariables() (#1563-2299) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#1577-1578)
KIRADOGE.slitherConstructorVariables() (#1563-2299) uses literals with too many digits:
- gasForProcessing = 300000 (#1607)
KIRADOGEDividendTracker.constructor() (#2325-2334) uses literals with too many digits:
- minimumTokenBalanceForDividends = 100000 * (10 ** 9) (#2333)
KIRADOGEDividendTracker.getAccountAtIndex(uint256) (#2431-2461) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2446-2455)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#713) is never used in SafeMathInt (#711-768)
Remove unused state variables.

Additional information: link

name() should be declared external:
- ERC20.name() (#359-361)
symbol() should be declared external:
- ERC20.symbol() (#367-369)
decimals() should be declared external:
- ERC20.decimals() (#384-386)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#416-424)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#429-437)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#446-454)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#469-484)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#498-509)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#525-539)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#920-922)
- KIRADOGEDividendTracker.withdrawDividend() (#2344-2349)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#957-959)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#976-983)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1076-1078)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1080-1089)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1091-1097)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1099-1101)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1181-1184)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1190-1197)
updateDividendTracker(address) should be declared external:
- KIRADOGE.updateDividendTracker(address) (#1723-1746)
updateUniswapV2Router(address) should be declared external:
- KIRADOGE.updateUniswapV2Router(address) (#1748-1755)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- KIRADOGE.excludeMultipleAccountsFromFees(address[],bool) (#1767-1776)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- KIRADOGE.setAutomatedMarketMakerPair(address,bool) (#1778-1788)
updatemaxBuyTransactionAmount(uint256) should be declared external:
- KIRADOGE.updatemaxBuyTransactionAmount(uint256) (#1804-1817)
updatemaxSellTransactionAmount(uint256) should be declared external:
- KIRADOGE.updatemaxSellTransactionAmount(uint256) (#1819-1832)
updatemaxWalletToken(uint256) should be declared external:
- KIRADOGE.updatemaxWalletToken(uint256) (#1834-1841)
updateswapTokensAtAmount(uint256) should be declared external:
- KIRADOGE.updateswapTokensAtAmount(uint256) (#1843-1853)
updateMarketingWallet(address) should be declared external:
- KIRADOGE.updateMarketingWallet(address) (#1855-1866)
startTrading(bool) should be declared external:
- KIRADOGE.startTrading(bool) (#1868-1870)
liftAllLimits() should be declared external:
- KIRADOGE.liftAllLimits() (#1872-1875)
updateGasForProcessing(uint256) should be declared external:
- KIRADOGE.updateGasForProcessing(uint256) (#1877-1888)
isExcludedFromFees(address) should be declared external:
- KIRADOGE.isExcludedFromFees(address) (#1972-1974)
withdrawableDividendOf(address) should be declared external:
- KIRADOGE.withdrawableDividendOf(address) (#1976-1982)
dividendTokenBalanceOf(address) should be declared external:
- KIRADOGE.dividendTokenBalanceOf(address) (#1984-1990)
getLiquidityIsAdded() should be declared external:
- KIRADOGE.getLiquidityIsAdded() (#2054-2056)
getAccountAtIndex(uint256) should be declared external:
- KIRADOGEDividendTracker.getAccountAtIndex(uint256) (#2431-2461)
process(uint256) should be declared external:
- KIRADOGEDividendTracker.process(uint256) (#2490-2542)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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 volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


Unable to find Discord account


Unable to find token on CoinHunt

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for KIRADOGE

News for KIRADOGE