DOGEDI Token Logo

DOGEDI Token

ALERT: honeypot scam

About DOGEDI

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

DoGEDi is the first token that combines the Star Wars universe with the world of cryptocurrency. Created by a Star Wars fanbase, it has popular elements like the DoGE and the JEDi merging into a new, super catchy character that will make it easy for the community to spread the word and lead it to become the new trending, #1 viral token!

The project is new but has already moved on for everything related to security, the TEAM is officially DOXXED thanks to the DOUBLE KYC certification made by SOLID PROOF and PINKSALE, and AUDITED by TECHRATE and AUDITRATE and already verified contract (with green check) on the BSC (Binance Smart Chain).

Main blockchain features: BNB REWARDS with autoclaim fature, DEATHSTAR protocol (autoboost buyback).
Main gaming nft features: DOGEDI CARD GAME, nft collectibles card game
Short-term goal: staking vault
Mid term goal: DOGEDI WALLET
Long term goal: DOGEDI CARD GAME

Tokenomics facts:
Redistributions of 15% (+5% in case of selling transactions) on each buying or selling transaction:
Redistribution of 4% of each purchase or sale transaction directly in BNB to the holders’ wallets. This redistribution in BNB as well as occurring every hour, is totally automatic! So the holders will find their BNB directly in the wallet.
A 6% is immediately sent to our protocol DEATHSTAR which buys back the tokens on the market, to help maintain the price and a final 5% is sent to the marketing wallet (monitorable and of which we will publish all the activities and costs that will affect it).

Laser Scorebeta Last Audit: 10 June 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links

DOGEDI.swapAndLiquify(uint256) (#2156-2180) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DOGEDI._transfer(address,address,uint256) (#2087-2146):
External calls:
- swapAndLiquify(contractTokenBalance) (#2113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2195-2201)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2113)
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2128)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2131)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1420)
Apply the check-effects-interactions pattern.

Additional information: link

SafeToken.withdraw(address,uint256) (#1732-1735) ignores return value by IERC20(_token).transfer(safeManager,_amount) (#1734)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


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.


Contract ownership is not renounced (belongs to a wallet)

DOGEDI.swapAndLiquify(uint256) (#2156-2180) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.div(totalFees).mul(marketingFee) (#2168)
DOGEDI.swapAndLiquify(uint256) (#2156-2180) performs a multiplication on the result of a division:
-buybackAmount = deltaBalance.div(totalFees).mul(buybackFee) (#2171)
DOGEDI.buyToken(uint256) (#2224-2237) performs a multiplication on the result of a division:
-require(bool,string)(amount >= pricePrivate * (tokens / (10 ** uint256(12))),Wrong Token Price) (#2228)
Consider ordering multiplication before division.

Additional information: link

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

DOGEDI.claim() (#2042-2044) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#2043)
DOGEDI._transfer(address,address,uint256) (#2087-2146) ignores return value by dividendTracker.process(gas) (#2139-2144)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

DOGEDI.setFee(uint256,uint256,uint256) (#1839-1845) should emit an event for:
- buybackFee = _buybackFee (#1841)
- marketingFee = _marketingFee (#1842)
- totalFees = BNBRewardsFee.add(buybackFee).add(marketingFee) (#1844)
DOGEDI.setExtraFeeOnSell(uint256) (#1872-1874) should emit an event for:
- extraFeeOnSell = _extraFeeOnSell (#1873)
DOGEDI.setSwapTokensAtAmount(uint256) (#2075-2078) should emit an event for:
- swapTokensAtAmount = newAmount (#2077)
DOGEDI.setMaxSellTransactionAmount(uint256) (#2081-2084) should emit an event for:
- maxSellTransactionAmount = newAmount (#2083)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#1728) lacks a zero-check on :
- safeManager = _safeManager (#1729)
DOGEDI.setMarketingWallet(address).newAccount (#2065) lacks a zero-check on :
- marketingWallet = address(newAccount) (#2066)
DOGEDI.setBuybackWallet(address).newAccount (#2070) lacks a zero-check on :
- buybackWallet = address(newAccount) (#2071)
Check that the address is not zero.

Additional information: link

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

Additional information: link

Variable 'DOGEDI._transfer(address,address,uint256).iterations (#2139)' in DOGEDI._transfer(address,address,uint256) (#2087-2146) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2140)
Variable 'DOGEDI._transfer(address,address,uint256).lastProcessedIndex (#2139)' in DOGEDI._transfer(address,address,uint256) (#2087-2146) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2140)
Variable 'DOGEDI._transfer(address,address,uint256).claims (#2139)' in DOGEDI._transfer(address,address,uint256) (#2087-2146) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2140)
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 DOGEDI.constructor() (#1876-1923):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1891-1892)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1895)
- uniswapV2Router = _uniswapV2Router (#1894)
Reentrancy in DOGEDI.constructor() (#1876-1923):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1891-1892)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1897)
- dividendTracker.excludeFromDividends(pair) (#1970)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1900)
- dividendTracker.excludeFromDividends(address(this)) (#1901)
- dividendTracker.excludeFromDividends(owner()) (#1902)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1903)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1904)
State variables written after the call(s):
- _mint(owner(),1_000_000_000_000_000 * 10 ** 12) (#1922)
- _balances[account] += amount (#1047)
- excludeFromFees(owner(),true) (#1907)
- _isExcludedFromFees[account] = excluded (#1937)
- excludeFromFees(marketingWallet,true) (#1908)
- _isExcludedFromFees[account] = excluded (#1937)
- excludeFromFees(buybackWallet,true) (#1909)
- _isExcludedFromFees[account] = excluded (#1937)
- excludeFromFees(address(this),true) (#1910)
- _isExcludedFromFees[account] = excluded (#1937)
- _isExcludedFromMaxTx[owner()] = true (#1913)
- _isExcludedFromMaxTx[address(this)] = true (#1914)
- _isExcludedFromMaxTx[marketingWallet] = true (#1915)
- _isExcludedFromMaxTx[buybackWallet] = true (#1916)
- _mint(owner(),1_000_000_000_000_000 * 10 ** 12) (#1922)
- _totalSupply += amount (#1046)
Reentrancy in DOGEDIDividendTracker.processAccount(address,bool) (#1708-1718):
External calls:
- amount = _withdrawDividendOfUser(account) (#1709)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1712)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DOGEDI._setAutomatedMarketMakerPair(address,bool) (#1965-1974):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1970)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1973)
Reentrancy in DOGEDI._transfer(address,address,uint256) (#2087-2146):
External calls:
- swapAndLiquify(contractTokenBalance) (#2113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2195-2201)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2113)
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2131)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2128)
Reentrancy in DOGEDI._transfer(address,address,uint256) (#2087-2146):
External calls:
- swapAndLiquify(contractTokenBalance) (#2113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2195-2201)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2133)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2134)
- dividendTracker.process(gas) (#2139-2144)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2113)
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2140)
Reentrancy in DOGEDI.constructor() (#1876-1923):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1891-1892)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1897)
- dividendTracker.excludeFromDividends(pair) (#1970)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1973)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1897)
Reentrancy in DOGEDI.constructor() (#1876-1923):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1891-1892)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1897)
- dividendTracker.excludeFromDividends(pair) (#1970)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1900)
- dividendTracker.excludeFromDividends(address(this)) (#1901)
- dividendTracker.excludeFromDividends(owner()) (#1902)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1903)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1904)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1939)
- excludeFromFees(address(this),true) (#1910)
- ExcludeFromFees(account,excluded) (#1939)
- excludeFromFees(buybackWallet,true) (#1909)
- ExcludeFromFees(account,excluded) (#1939)
- excludeFromFees(owner(),true) (#1907)
- ExcludeFromFees(account,excluded) (#1939)
- excludeFromFees(marketingWallet,true) (#1908)
- Transfer(address(0),account,amount) (#1048)
- _mint(owner(),1_000_000_000_000_000 * 10 ** 12) (#1922)
Reentrancy in DOGEDIDividendTracker.processAccount(address,bool) (#1708-1718):
External calls:
- amount = _withdrawDividendOfUser(account) (#1709)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1713)
Reentrancy in DOGEDI.processDividendTracker(uint256) (#2037-2040):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2038)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2039)
Reentrancy in DOGEDI.swapAndLiquify(uint256) (#2156-2180):
External calls:
- swapTokensForBnb(contractTokenBalance,address(this)) (#2164)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2195-2201)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
External calls sending eth:
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
Event emitted after the call(s):
- SendDividends(contractTokenBalance,dividends) (#2178)
Apply the check-effects-interactions pattern.

Additional information: link

DOGEDIDividendTracker.getAccount(address) (#1572-1615) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1612-1614)
DOGEDIDividendTracker.canAutoClaim(uint256) (#1636-1642) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1637)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1641)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#695-697) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1468-1474) is never used and should be removed
SafeCast.toInt128(int256) (#589-592) is never used and should be removed
SafeCast.toInt16(int256) (#643-646) is never used and should be removed
SafeCast.toInt32(int256) (#625-628) is never used and should be removed
SafeCast.toInt64(int256) (#607-610) is never used and should be removed
SafeCast.toInt8(int256) (#661-664) is never used and should be removed
SafeCast.toUint128(uint256) (#484-487) is never used and should be removed
SafeCast.toUint16(uint256) (#544-547) is never used and should be removed
SafeCast.toUint224(uint256) (#469-472) is never used and should be removed
SafeCast.toUint32(uint256) (#529-532) is never used and should be removed
SafeCast.toUint64(uint256) (#514-517) is never used and should be removed
SafeCast.toUint8(uint256) (#559-562) is never used and should be removed
SafeCast.toUint96(uint256) (#499-502) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#405-414) is never used and should be removed
SafeMath.mod(uint256,uint256) (#365-367) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#431-440) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#382-391) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#236-242) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#278-283) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#290-295) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#261-271) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#249-254) is never used and should be removed
SignedSafeMath.div(int256,int256) (#187-189) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#173-175) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#1412-1428):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1417)
Low level call in DOGEDI.swapAndLiquify(uint256) (#2156-2180):
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#7) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1434) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1441) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1448) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1458) is not in mixedCase
Constant DividendPayingToken.magnitude (#1349) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter DOGEDIDividendTracker.setMinimumTokenBalanceForDividends(uint256)._minimumTokenBalanceWei (#1568) is not in mixedCase
Parameter DOGEDIDividendTracker.getAccount(address)._account (#1572) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#1728) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#1732) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#1732) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#1737) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#1760) is not in mixedCase
Parameter DOGEDI.setFee(uint256,uint256,uint256)._bnbRewardFee (#1839) is not in mixedCase
Parameter DOGEDI.setFee(uint256,uint256,uint256)._buybackFee (#1839) is not in mixedCase
Parameter DOGEDI.setFee(uint256,uint256,uint256)._marketingFee (#1839) is not in mixedCase
Parameter DOGEDI.setExtraFeeOnSell(uint256)._extraFeeOnSell (#1872) is not in mixedCase
Parameter DOGEDI.setExcludeFromMaxTx(address,bool)._address (#1942) is not in mixedCase
Parameter DOGEDI.setExcludeFromAll(address)._address (#1946) is not in mixedCase
Parameter DOGEDI.setSwapAndLiquifyEnabled(bool)._enabled (#2059) is not in mixedCase
Parameter DOGEDI.manualBurn(uint256).burn_amount (#2149) is not in mixedCase
Parameter DOGEDI.swapTokensForBnb(uint256,address)._to (#2183) is not in mixedCase
Parameter DOGEDI.includeToPrivateWhiteList(address[])._users (#2243) is not in mixedCase
Variable DOGEDI.BNBRewardsFee (#1782) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DOGEDI._transfer(address,address,uint256) (#2087-2146):
External calls:
- swapAndLiquify(contractTokenBalance) (#2113)
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2113)
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2128)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
- super._transfer(from,to,amount) (#2131)
- _balances[sender] = senderBalance - amount (#1023)
- _balances[recipient] += amount (#1025)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2140)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,address(this),fees) (#2128)
- Transfer(sender,recipient,amount) (#1027)
- super._transfer(from,to,amount) (#2131)
Reentrancy in DOGEDI.swapAndLiquify(uint256) (#2156-2180):
External calls:
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
External calls sending eth:
- marketingWallet.transfer(marketingAmount) (#2169)
- buybackWallet.transfer(buybackAmount) (#2172)
- (success) = address(dividendTracker).call{value: dividends}() (#2175)
Event emitted after the call(s):
- SendDividends(contractTokenBalance,dividends) (#2178)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#13)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1413) is too similar to DOGEDIDividendTracker.getAccount(address).withdrawableDividends (#1577)
Variable DOGEDI.BNBRewardsFee (#1782) is too similar to DOGEDI.setFee(uint256,uint256,uint256)._bnbRewardFee (#1839)
Prevent variables from having similar names.

Additional information: link

DOGEDIDividendTracker.getAccountAtIndex(uint256) (#1617-1634) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1628)
DOGEDI.constructor() (#1876-1923) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1904)
DOGEDI.updateGasForProcessing(uint256) (#1976-1981) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,DOGEDI: gasForProcessing must be between 200,000 and 500,000) (#1977)
DOGEDI.slitherConstructorVariables() (#1767-2256) uses literals with too many digits:
- deadWallet = address(0x000000000000000000000000000000000000dEaD) (#1789)
DOGEDI.slitherConstructorVariables() (#1767-2256) uses literals with too many digits:
- gasForProcessing = 300000 (#1792)
DOGEDI.slitherConstructorVariables() (#1767-2256) uses literals with too many digits:
- pricePrivate = 1000000 (#2205)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DOGEDI.deadWallet (#1789) should be constant
DOGEDI.maxPrivateSale (#2207) should be constant
DOGEDI.minPrivateSale (#2206) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#851-853)
symbol() should be declared external:
- ERC20.symbol() (#859-861)
decimals() should be declared external:
- ERC20.decimals() (#876-878)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#902-905)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#921-924)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#939-953)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#967-970)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#986-994)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1193-1195)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1201-1204)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1222-1224)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1226-1231)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1233-1235)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1239-1241)
withdrawDividend() should be declared external:
- DOGEDIDividendTracker.withdrawDividend() (#1539-1541)
- DividendPayingToken.withdrawDividend() (#1406-1408)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1434-1436)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1448-1450)
setMinimumTokenBalanceForDividends(uint256) should be declared external:
- DOGEDIDividendTracker.setMinimumTokenBalanceForDividends(uint256) (#1568-1570)
getAccountAtIndex(uint256) should be declared external:
- DOGEDIDividendTracker.getAccountAtIndex(uint256) (#1617-1634)
process(uint256) should be declared external:
- DOGEDIDividendTracker.process(uint256) (#1661-1706)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#1728-1730)
setFee(uint256,uint256,uint256) should be declared external:
- DOGEDI.setFee(uint256,uint256,uint256) (#1839-1845)
prepareForPresale() should be declared external:
- DOGEDI.prepareForPresale() (#1848-1857)
afterPresale() should be declared external:
- DOGEDI.afterPresale() (#1860-1869)
setExtraFeeOnSell(uint256) should be declared external:
- DOGEDI.setExtraFeeOnSell(uint256) (#1872-1874)
updateUniswapV2Router(address) should be declared external:
- DOGEDI.updateUniswapV2Router(address) (#1929-1933)
setExcludeFromMaxTx(address,bool) should be declared external:
- DOGEDI.setExcludeFromMaxTx(address,bool) (#1942-1944)
setExcludeFromAll(address) should be declared external:
- DOGEDI.setExcludeFromAll(address) (#1946-1950)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- DOGEDI.excludeMultipleAccountsFromFees(address[],bool) (#1952-1958)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- DOGEDI.setAutomatedMarketMakerPair(address,bool) (#1960-1963)
updateGasForProcessing(uint256) should be declared external:
- DOGEDI.updateGasForProcessing(uint256) (#1976-1981)
isExcludedFromFees(address) should be declared external:
- DOGEDI.isExcludedFromFees(address) (#1995-1997)
isExcludedFromMaxTx(address) should be declared external:
- DOGEDI.isExcludedFromMaxTx(address) (#1999-2001)
withdrawableDividendOf(address) should be declared external:
- DOGEDI.withdrawableDividendOf(address) (#2003-2005)
dividendTokenBalanceOf(address) should be declared external:
- DOGEDI.dividendTokenBalanceOf(address) (#2007-2009)
setMarketingWallet(address) should be declared external:
- DOGEDI.setMarketingWallet(address) (#2065-2067)
setBuybackWallet(address) should be declared external:
- DOGEDI.setBuybackWallet(address) (#2070-2072)
setSwapTokensAtAmount(uint256) should be declared external:
- DOGEDI.setSwapTokensAtAmount(uint256) (#2075-2078)
setMaxSellTransactionAmount(uint256) should be declared external:
- DOGEDI.setMaxSellTransactionAmount(uint256) (#2081-2084)
manualBurn(uint256) should be declared external:
- DOGEDI.manualBurn(uint256) (#2149-2153)
setPrivateTokenPrice(uint256) should be declared external:
- DOGEDI.setPrivateTokenPrice(uint256) (#2214-2217)
setPrivateSaleEnabled(bool) should be declared external:
- DOGEDI.setPrivateSaleEnabled(bool) (#2218-2221)
buyToken(uint256) should be declared external:
- DOGEDI.buyToken(uint256) (#2224-2237)
withdrawPrivateSale() should be declared external:
- DOGEDI.withdrawPrivateSale() (#2239-2241)
includeToPrivateWhiteList(address[]) should be declared external:
- DOGEDI.includeToPrivateWhiteList(address[]) (#2243-2248)
getWhiteListPrivateAddress(address) should be declared external:
- DOGEDI.getWhiteListPrivateAddress(address) (#2249-2251)
getWhiteListPrivate() should be declared external:
- DOGEDI.getWhiteListPrivate() (#2252-2254)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 15% buy tax and 20% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.

No disclosed threats


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Token is not listed at Mobula.Finance

Additional information: link


Unable to find audit link on the website


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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for DOGEDI

News for DOGEDI