Nano DogeCoin is truly a BSC Gem, combining USD-T dividends with the ability to save dogs world-wide.
Our community earns passive USD-Tether for simply holding our token. So you can hold your Nano DogeCoin with the knowledge that every week, while we're making donations to small animal shelters in need of help & support, you're continuing to be a part of something life changing!
We, as a team, have a vision for Nano DogeCoin and will not stop until we make that vision a reality. We are passionate about improving animal welfare all over the globe and, with Nano DogeCoin, we plan to make a huge impact.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
NanoDogeCoin._addLiquidity(uint256,uint256) (#3329-3342) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityWallet,block.timestamp) (#3334-3341)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in NanoDogeCoin._transfer(address,address,uint256) (#3160-3217):
External calls:
- _swapAndLiquify(swapForLiq) (#3193)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityWallet,block.timestamp) (#3334-3341)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#3251-3257)
- _swapAndSendTokenDividends(swapForDividends) (#3196)
- success = IERC20(_dividendRewardToken).transfer(address(dividendTracker),dividends) (#3492)
- dividendTracker.distributeRewardDividends(dividends) (#3495)
- pancakeswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#3307-3313)
- _swapTokensForMarketing(swapForMarketing) (#3199)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_marketingWallet,block.timestamp) (#3269-3275)
- _tokenTransfer(from,to,amount,takeFee) (#3216)
- dividendTracker.setBalance(address(sender),balanceOf(sender)) (#3394)
- dividendTracker.setBalance(address(recipient),balanceOf(recipient)) (#3395)
- dividendTracker.process(gas) (#3400-3413)
External calls sending eth:
- _swapAndLiquify(swapForLiq) (#3193)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityWallet,block.timestamp) (#3334-3341)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#3216)
- _balances[sender] -= amount (#3426)
- _balances[recipient] += transferAmount (#3431)
- _balances[address(this)] += liquidityAmount (#3438)
- _tokenTransfer(from,to,amount,takeFee) (#3216)
- _totalFee = _previousTotalFee (#3096)
- _totalFee = 0 (#3092)
- _tokenTransfer(from,to,amount,takeFee) (#3216)
- _tradingEnabled = true (#3350)
Apply the check-effects-interactions pattern.
Additional information: link
NanoDogeCoin.withdrawLockedTokens(address,address) (#3317-3327) ignores return value by IERC20(_token).transfer(address(recipient),amountToWithdraw) (#3326)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Contract locking ether found:
Contract DividendTracker (#2075-2332) has payable functions:
- DividendPayingToken.receive() (#1991)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
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.
Low level call in NanoDogeCoin.withdrawLockedETH(address) (#3278-3295):
- (success) = address(recipient).call{value: amount}() (#3290)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable NanoDogeCoin._liquidityWallet (#2549) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable INanoDogeCoin.setMaxTxPercent(uint256)._maxTxPercent (#2420) is too similar to NanoDogeCoin.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,uint256,address[3],address).maxTxPercent_ (#2587)
Prevent variables from having similar names.
Additional information: link
NanoDogeCoin.slitherConstructorVariables() (#2503-3524) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#2546)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
NanoDogeCoin._perviousMaxWalletAmount (#2564) is never used in NanoDogeCoin (#2503-3524)
Remove unused state variables.
Additional information: link
NanoDogeCoin.swapping (#2551) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromMaxWallet(address) should be declared external:
- NanoDogeCoin.isExcludedFromMaxWallet(address) (#3117-3124)
Use the external attribute for functions never called from the contract.
Additional information: link
NanoDogeCoin._takeLiquidityAndTransfer(address,address,uint256) (#3421-3442) performs a multiplication on the result of a division:
-liquidityAmount = (amount / 100) * _totalFee (#3428)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in NanoDogeCoin.updateDividendTracker(address) (#3462-3487):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#3479)
- newDividendTracker.excludeFromDividends(address(this)) (#3480)
- newDividendTracker.excludeFromDividends(msg.sender) (#3481)
- newDividendTracker.excludeFromDividends(address(pancakeswapV2Router)) (#3482)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#3486)
Apply the check-effects-interactions pattern.
Additional information: link
NanoDogeCoin._tokenTransfer(address,address,uint256,bool).lastProcessedIndex (#3403) 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
NanoDogeCoin._tokenTransfer(address,address,uint256,bool) (#3356-3419) ignores return value by dividendTracker.process(gas) (#3400-3413)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.accumulativeDividendOf(address)._owner (#1915) shadows:
- Ownable._owner (#1304) (state variable)
Rename the local variables that shadow another component.
Additional information: link
DividendPayingToken.constructor(string,string,address).dividendToken_ (#1815) lacks a zero-check on :
- _dividendToken = dividendToken_ (#1817)
Check that the address is not zero.
Additional information: link
Variable 'NanoDogeCoin._tokenTransfer(address,address,uint256,bool).claims (#3402)' in NanoDogeCoin._tokenTransfer(address,address,uint256,bool) (#3356-3419) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#3405-3412)
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 NanoDogeCoin.transferFrom(address,address,uint256) (#2741-2753):
External calls:
- _transfer(sender,recipient,amount) (#2750)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityWallet,block.timestamp) (#3334-3341)
- success = IERC20(_dividendRewardToken).transfer(address(dividendTracker),dividends) (#3492)
- dividendTracker.distributeRewardDividends(dividends) (#3495)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#3251-3257)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_marketingWallet,block.timestamp) (#3269-3275)
- pancakeswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#3307-3313)
- dividendTracker.setBalance(address(sender),balanceOf(sender)) (#3394)
- dividendTracker.setBalance(address(recipient),balanceOf(recipient)) (#3395)
- dividendTracker.process(gas) (#3400-3413)
External calls sending eth:
- _transfer(sender,recipient,amount) (#2750)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityWallet,block.timestamp) (#3334-3341)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#2751)
- _allowances[owner][spender] = amount (#3156)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in NanoDogeCoin.updateDividendTracker(address) (#3462-3487):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#3479)
- newDividendTracker.excludeFromDividends(address(this)) (#3480)
- newDividendTracker.excludeFromDividends(msg.sender) (#3481)
- newDividendTracker.excludeFromDividends(address(pancakeswapV2Router)) (#3482)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#3484)
Apply the check-effects-interactions pattern.
Additional information: link
DividendTracker.canAutoClaim(uint256) (#2233-2243) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2238)
- (block.timestamp - lastClaimTime) >= claimWait (#2242)
Avoid relying on block.timestamp.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#191-211) uses assembly
- INLINE ASM (#203-206)
Do not use evm assembly.
Additional information: link
NanoDogeCoin.setDxSaleAddress(address,address) (#2921-2937) compares to a boolean constant:
-require(bool,string)(setPresaleAddresses == true,You can only set the presale addresses once!) (#2926)
Remove the equality to the boolean constant.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.8.4', '^0.8.0']
- ^0.8.0 (#5)
- ^0.8.0 (#217)
- ^0.8.0 (#242)
- ^0.8.0 (#306)
- ^0.8.0 (#374)
- ^0.8.0 (#400)
- ^0.8.0 (#429)
- ^0.8.0 (#680)
- ^0.8.0 (#976)
- 0.8.4 (#1063)
- 0.8.4 (#1083)
- 0.8.4 (#1109)
- 0.8.4 (#1143)
- 0.8.4 (#1241)
- ^0.8.0 (#1288)
- 0.8.4 (#1359)
- 0.8.4 (#1372)
- ^0.8.0 (#1383)
- ^0.8.0 (#1466)
- ^0.8.0 (#1494)
- 0.8.4 (#1774)
- 0.8.4 (#1996)
- 0.8.4 (#2336)
- 0.8.4 (#2492)
Use one Solidity version.
Additional information: link
Strings.toString(uint256) (#317-337) is never used and should be removed
Remove unused functions.
Additional information: link
solc-0.8.4 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
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.
Unable to find website, listings and other project-related information
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account