miniBABYDOGE Token Logo

miniBABYDOGE Token

About miniBABYDOGE

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinGecko] alert: Kindly note that there are multiple, distinct projects that share variations of the moniker "Baby Doge". Users are advised to DYOR.

The FIRST and ONLY member of Doge Family that pays you BNB just for holding!
miniBABYDOGE is a BEP20 project focused on the entire cryptocurrency community. We plan to build a strong community by being approachable and through constant interaction with anyone on our social media channels, hereby enabling the mainstream use of decentralized blockchain technology in the most user friendly way.

Social

Laser Scorebeta Last Audit: 6 August 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

miniBABYDOGE.addLiquidity(uint256,uint256) (#1263-1278) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in miniBABYDOGE._transfer(address,address,uint256) (#1124-1218):
External calls:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1194)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#502)
- _balances[recipient] = _balances[recipient].add(amount) (#503)
- super._transfer(from,marketingWallet,fees_scope_0) (#1200)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#502)
- _balances[recipient] = _balances[recipient].add(amount) (#503)
- super._transfer(from,to,amount) (#1203)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#502)
- _balances[recipient] = _balances[recipient].add(amount) (#503)
- swapping = false (#1175)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1428-1444):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1433)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1436)
Apply the check-effects-interactions pattern.

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.


Contract ownership is not renounced (belongs to a wallet)

miniBABYDOGE.swapAndSendDividends(uint256) (#1280-1284) ignores return value by address(dividendTracker).call{value: dividends}() (#1283)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

miniBABYDOGE.processDividendTracker(uint256) (#1104-1106) ignores return value by dividendTracker.process(gas) (#1105)
miniBABYDOGE.claim() (#1108-1110) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1109)
miniBABYDOGE._transfer(address,address,uint256) (#1124-1218) ignores return value by dividendTracker.process(gas) (#1211-1216)
miniBABYDOGE.addLiquidity(uint256,uint256) (#1263-1278) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

miniBABYDOGE.changeFees(uint256,uint256) (#977-984) should emit an event for:
- liquidityFee = liquidity (#982)
- totalFees = liquidityFee.add(BNBRewardsFee) (#983)
miniBABYDOGE.setMaxTxAmount(uint256) (#1002-1004) should emit an event for:
- maxSellTransactionAmount = newAmount * (10 ** 18) (#1003)
miniBABYDOGE.SetFirstFewBlocksF(uint256) (#1044-1046) should emit an event for:
- firstFewBlocksF = amt (#1045)
miniBABYDOGE.updateGasForProcessing(uint256) (#1061-1065) should emit an event for:
- gasForProcessing = newValue (#1064)
minibabydogeDividendTracker.setMinimumBalanceToReceiveDividends(uint256) (#1559-1561) should emit an event for:
- minimumTokenBalanceForDividends = newValue * (10 ** 18) (#1560)
Emit an event for critical parameter changes.

Additional information: link

miniBABYDOGE.sendContractBalance(address).to (#1056) lacks a zero-check on :
- to.transfer(address(this).balance) (#1058)
Check that the address is not zero.

Additional information: link

Variable 'miniBABYDOGE._transfer(address,address,uint256).lastProcessedIndex (#1211)' in miniBABYDOGE._transfer(address,address,uint256) (#1124-1218) potentially used before declaration: ProcessedRewardsTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1212)
Variable 'miniBABYDOGE._transfer(address,address,uint256).claims (#1211)' in miniBABYDOGE._transfer(address,address,uint256) (#1124-1218) potentially used before declaration: ProcessedRewardsTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1212)
Variable 'miniBABYDOGE._transfer(address,address,uint256).iterations (#1211)' in miniBABYDOGE._transfer(address,address,uint256) (#1124-1218) potentially used before declaration: ProcessedRewardsTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1212)
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 miniBABYDOGE._transfer(address,address,uint256) (#1124-1218):
External calls:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1173)
- _allowances[owner][spender] = amount (#568)
Reentrancy in miniBABYDOGE.constructor() (#933-971):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#944-945)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#948)
- uniswapV2Router = _uniswapV2Router (#947)
Reentrancy in miniBABYDOGE.constructor() (#933-971):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#944-945)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#950)
- dividendTracker.excludeFromDividends(pair) (#1017)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#953)
- dividendTracker.excludeFromDividends(address(this)) (#954)
- dividendTracker.excludeFromDividends(owner()) (#955)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#956)
State variables written after the call(s):
- _mint(owner(),1000000000 * (10 ** 18)) (#970)
- _balances[account] = _balances[account].add(amount) (#522)
- excludeFromFees(liquidityWallet,true) (#959)
- _isExcludedFromFees[account] = excluded (#998)
- excludeFromFees(address(this),true) (#960)
- _isExcludedFromFees[account] = excluded (#998)
- excludeFromFees(marketingWallet,true) (#961)
- _isExcludedFromFees[account] = excluded (#998)
- _mint(owner(),1000000000 * (10 ** 18)) (#970)
- _totalSupply = _totalSupply.add(amount) (#521)
- canTransferBeforeTradingIsEnabled[owner()] = true (#964)
Reentrancy in minibabydogeDividendTracker.processAccount(address,bool) (#1734-1744):
External calls:
- amount = _withdrawDividendOfUser(account) (#1735)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1433)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1738)
Reentrancy in miniBABYDOGE.setPresaleWalletandRouter(address,address) (#1022-1034):
External calls:
- dividendTracker.excludeFromDividends(_presaleWallet) (#1028)
State variables written after the call(s):
- _isExcludedFromFees[_presaleWallet] = true (#1030)
- canTransferBeforeTradingIsEnabled[_presaleWallet] = true (#1029)
Reentrancy in miniBABYDOGE.setPresaleWalletandRouter(address,address) (#1022-1034):
External calls:
- dividendTracker.excludeFromDividends(_presaleWallet) (#1028)
- dividendTracker.excludeFromDividends(_presaleRouter) (#1031)
State variables written after the call(s):
- _isExcludedFromFees[presaleWallet] = true (#1033)
- canTransferBeforeTradingIsEnabled[_presaleRouter] = true (#1032)
Reentrancy in miniBABYDOGE.swapAndLiquify(uint256) (#1220-1241):
External calls:
- swapTokensForEth(half) (#1232)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- addLiquidity(otherHalf,newBalance) (#1238)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1238)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1238)
- _allowances[owner][spender] = amount (#568)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

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

Reentrancy in miniBABYDOGE._transfer(address,address,uint256) (#1124-1218):
External calls:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#569)
- swapAndSendDividends(sellTokens) (#1173)
- Transfer(sender,recipient,amount) (#504)
- super._transfer(from,marketingWallet,fees_scope_0) (#1200)
- Transfer(sender,recipient,amount) (#504)
- super._transfer(from,to,amount) (#1203)
- Transfer(sender,recipient,amount) (#504)
- super._transfer(from,address(this),fees) (#1194)
Reentrancy in miniBABYDOGE._transfer(address,address,uint256) (#1124-1218):
External calls:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1205)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1206)
- dividendTracker.process(gas) (#1211-1216)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
- swapAndSendDividends(sellTokens) (#1173)
- address(dividendTracker).call{value: dividends}() (#1283)
Event emitted after the call(s):
- ProcessedRewardsTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1212)
Reentrancy in miniBABYDOGE.constructor() (#933-971):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#944-945)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#950)
- dividendTracker.excludeFromDividends(pair) (#1017)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#953)
- dividendTracker.excludeFromDividends(address(this)) (#954)
- dividendTracker.excludeFromDividends(owner()) (#955)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#956)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#523)
- _mint(owner(),1000000000 * (10 ** 18)) (#970)
Reentrancy in minibabydogeDividendTracker.processAccount(address,bool) (#1734-1744):
External calls:
- amount = _withdrawDividendOfUser(account) (#1735)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1433)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1739)
Reentrancy in miniBABYDOGE.swapAndLiquify(uint256) (#1220-1241):
External calls:
- swapTokensForEth(half) (#1232)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- addLiquidity(otherHalf,newBalance) (#1238)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1238)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1269-1276)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#569)
- addLiquidity(otherHalf,newBalance) (#1238)
- SwapAndLiquify(half,newBalance,otherHalf) (#1240)
Apply the check-effects-interactions pattern.

Additional information: link

minibabydogeDividendTracker.getAccount(address) (#1598-1641) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1638-1640)
minibabydogeDividendTracker.canAutoClaim(uint256) (#1662-1668) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1663)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1667)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1484-1490) is never used and should be removed
SafeMath.mod(uint256,uint256) (#127-129) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#131-134) is never used and should be removed
SafeMathInt.abs(int256) (#191-194) is never used and should be removed
SafeMathInt.div(int256,int256) (#162-168) is never used and should be removed
SafeMathInt.mul(int256,int256) (#150-157) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in miniBABYDOGE.swapAndSendDividends(uint256) (#1280-1284):
- address(dividendTracker).call{value: dividends}() (#1283)
Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#1428-1444):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1433)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#692) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#693) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#710) is not in mixedCase
Function IUniswapV2Router01.WETH() (#733) is not in mixedCase
Contract miniBABYDOGE (#873-1285) is not in CapWords
Parameter miniBABYDOGE.setPresaleWalletandRouter(address,address)._presaleWallet (#1022) is not in mixedCase
Parameter miniBABYDOGE.setPresaleWalletandRouter(address,address)._presaleRouter (#1022) is not in mixedCase
Function miniBABYDOGE.SetFirstFewBlocksF(uint256) (#1044-1046) is not in mixedCase
Variable miniBABYDOGE.BNBRewardsFee (#901) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1450) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1457) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1464) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1474) is not in mixedCase
Constant DividendPayingToken.magnitude (#1365) is not in UPPER_CASE_WITH_UNDERSCORES
Contract minibabydogeDividendTracker (#1530-1746) is not in CapWords
Parameter minibabydogeDividendTracker.getAccount(address)._account (#1598) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#21)" inContext (#15-24)
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 (#738) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#739)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1429) is too similar to minibabydogeDividendTracker.getAccount(address).withdrawableDividends (#1603)
Prevent variables from having similar names.

Additional information: link

miniBABYDOGE.constructor() (#933-971) uses literals with too many digits:
- _mint(owner(),1000000000 * (10 ** 18)) (#970)
miniBABYDOGE.updateGasForProcessing(uint256) (#1061-1065) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 1000000,miniBABYDOGE: gasForProcessing must be between 200,000 and 1,000,000) (#1062)
miniBABYDOGE.slitherConstructorVariables() (#873-1285) uses literals with too many digits:
- swapTokensAtAmount = 200000 * (10 ** 18) (#898)
miniBABYDOGE.slitherConstructorVariables() (#873-1285) uses literals with too many digits:
- gasForProcessing = 400000 (#905)
minibabydogeDividendTracker.getAccountAtIndex(uint256) (#1643-1660) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1654)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#145) is never used in SafeMathInt (#143-201)
Remove unused state variables.

Additional information: link

miniBABYDOGE.marketingWallet (#896) should be constant
miniBABYDOGE.swapTokensAtAmount (#898) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#66-69)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#75-79)
name() should be declared external:
- ERC20.name() (#344-346)
symbol() should be declared external:
- ERC20.symbol() (#352-354)
decimals() should be declared external:
- ERC20.decimals() (#369-371)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#395-398)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#403-405)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#414-417)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#432-440)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#454-457)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#473-476)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#605-607)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#609-614)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#616-618)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#622-624)
changeFees(uint256,uint256) should be declared external:
- miniBABYDOGE.changeFees(uint256,uint256) (#977-984)
updateUniswapV2Router(address) should be declared external:
- miniBABYDOGE.updateUniswapV2Router(address) (#991-994)
setMaxTxAmount(uint256) should be declared external:
- miniBABYDOGE.setMaxTxAmount(uint256) (#1002-1004)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- miniBABYDOGE.setAutomatedMarketMakerPair(address,bool) (#1006-1010)
changeMinimumBalanceToReceiveRewards(uint256) should be declared external:
- miniBABYDOGE.changeMinimumBalanceToReceiveRewards(uint256) (#1052-1054)
sendContractBalance(address) should be declared external:
- miniBABYDOGE.sendContractBalance(address) (#1056-1059)
updateGasForProcessing(uint256) should be declared external:
- miniBABYDOGE.updateGasForProcessing(uint256) (#1061-1065)
isExcludedFromFees(address) should be declared external:
- miniBABYDOGE.isExcludedFromFees(address) (#1079-1081)
withdrawableDividendOf(address) should be declared external:
- miniBABYDOGE.withdrawableDividendOf(address) (#1083-1085)
dividendTokenBalanceOf(address) should be declared external:
- miniBABYDOGE.dividendTokenBalanceOf(address) (#1087-1089)
getTradingIsEnabled() should be declared external:
- miniBABYDOGE.getTradingIsEnabled() (#1120-1122)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1422-1424)
- minibabydogeDividendTracker.withdrawDividend() (#1567-1569)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1450-1452)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1464-1466)
getMinimumBalanceToReceiveDividends() should be declared external:
- minibabydogeDividendTracker.getMinimumBalanceToReceiveDividends() (#1563-1565)
getAccountAtIndex(uint256) should be declared external:
- minibabydogeDividendTracker.getAccountAtIndex(uint256) (#1643-1660)
process(uint256) should be declared external:
- minibabydogeDividendTracker.process(uint256) (#1687-1732)
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.

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


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain


Twitter account seems to be suspended

Additional information: link


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to crawl data from the website


Unable to find token contract audit


Unable to find code repository for the project


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find audit link on the website


Token has a considerable age, but we're still unable to find its website


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has relatively low CoinGecko rank

Price for miniBABYDOGE