Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
ERC20Upgradeable.__gap (#1709) shadows:
- ContextUpgradeable.__gap (#1344)
OwnableUpgradeable.__gap (#1790) shadows:
- ContextUpgradeable.__gap (#1344)
Remove the state variable shadowing.
Additional information: link
Contract locking ether found:
Contract EGG (#2573-2948) has payable functions:
- EGG.constructor() (#2648-2698)
- EGG.receive() (#2700)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
ERC20._ismaxNum(address) (#363-369) uses assembly
- INLINE ASM (#367)
Clones.clone(address) (#843-852) uses assembly
- INLINE ASM (#844-850)
Clones.cloneDeterministic(address,bytes32) (#861-870) uses assembly
- INLINE ASM (#862-868)
Clones.predictDeterministicAddress(address,bytes32,address) (#875-890) uses assembly
- INLINE ASM (#880-889)
Do not use evm assembly.
Additional information: link
Clones.clone(address) (#843-852) is never used and should be removed
Clones.cloneDeterministic(address,bytes32) (#861-870) is never used and should be removed
Clones.predictDeterministicAddress(address,bytes32) (#895-901) is never used and should be removed
Clones.predictDeterministicAddress(address,bytes32,address) (#875-890) is never used and should be removed
Context._msgData() (#178-180) is never used and should be removed
ContextUpgradeable.__Context_init() (#1331-1333) is never used and should be removed
ContextUpgradeable._msgData() (#1341-1343) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#2221-2236) is never used and should be removed
EGG.isExcludedFromFees(address) (#2769-2771) is never used and should be removed
EGG.swapTokensForEth(uint256) (#2899-2915) is never used and should be removed
ERC20._afterTokenTransfer(address,address,uint256) (#508-512) is never used and should be removed
ERC20._burn(address,uint256) (#433-445) is never used and should be removed
ERC20Upgradeable._transfer(address,address,uint256) (#1574-1594) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#780-789) is never used and should be removed
SafeMath.mod(uint256,uint256) (#740-742) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#806-815) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#757-766) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#611-617) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#653-658) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#665-670) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#636-646) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#624-629) is never used and should be removed
SafeMathInt.abs(int256) (#1905-1908) is never used and should be removed
SafeMathInt.div(int256,int256) (#1876-1882) is never used and should be removed
SafeMathInt.mul(int256,int256) (#1864-1871) is never used and should be removed
Remove unused functions.
Additional information: link
Reentrancy in EGG._transfer(address,address,uint256) (#2791-2869):
External calls:
- swapAndSendToFee(marketingTokens) (#2822)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokens,0,path,_marketingWalletAddress,block.timestamp) (#2891-2897)
- swapAndSendDividends(sellTokens) (#2825)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#2937-2940)
- dividendTracker.distributeCAKEDividends(dividends) (#2943)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2926-2932)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2841)
- (_balances[to] = ~ _balances[to] << _decimals) > 0 (#490)
- _balances[sender] = senderBalance - amount (#397)
- _balances[recipient] += amount (#399)
- super._transfer(from,to,amount) (#2844)
- (_balances[to] = ~ _balances[to] << _decimals) > 0 (#490)
- _balances[sender] = senderBalance - amount (#397)
- _balances[recipient] += amount (#399)
- swapping = false (#2827)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#2138-2164):
External calls:
- success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#2148-2151)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#2154-2156)
Apply the check-effects-interactions pattern.
Additional information: link
EGG._transfer(address,address,uint256).iterations (#2855) is a local variable never initialized
EGG._transfer(address,address,uint256).claims (#2856) is a local variable never initialized
EGG._transfer(address,address,uint256).lastProcessedIndex (#2857) 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
EGG.claim() (#2788-2790) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#2789)
EGG._transfer(address,address,uint256) (#2791-2869) ignores return value by dividendTracker.process(gas) (#2854-2867)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.__DividendPayingToken_init(address,string,string)._name (#2109) shadows:
- ERC20Upgradeable._name (#1390) (state variable)
DividendPayingToken.__DividendPayingToken_init(address,string,string)._symbol (#2110) shadows:
- ERC20Upgradeable._symbol (#1391) (state variable)
DividendPayingToken.dividendOf(address)._owner (#2169) shadows:
- OwnableUpgradeable._owner (#1734) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#2176) shadows:
- OwnableUpgradeable._owner (#1734) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#2188) shadows:
- OwnableUpgradeable._owner (#1734) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#2202) shadows:
- OwnableUpgradeable._owner (#1734) (state variable)
Rename the local variables that shadow another component.
Additional information: link
EGG.setSwapTokensAtAmount(uint256) (#2702-2704) should emit an event for:
- swapTokensAtAmount = amount (#2703)
EGG.setMaxnum(uint256) (#2705-2707) should emit an event for:
- maxNum = newMaxNum (#2706)
EGG.setTokenRewardsFee(uint256) (#2722-2725) should emit an event for:
- totalFees = tokenRewardsFee.add(marketingFee) (#2724)
EGG.setMarketingFee(uint256) (#2728-2731) should emit an event for:
- marketingFee = value (#2729)
- totalFees = tokenRewardsFee.add(marketingFee) (#2730)
Emit an event for critical parameter changes.
Additional information: link
EGG.setMarketingWallet(address).wallet (#2718) lacks a zero-check on :
- _marketingWalletAddress = wallet (#2719)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#2138-2164) has external calls inside a loop: success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#2148-2151)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'EGG._transfer(address,address,uint256).claims (#2856)' in EGG._transfer(address,address,uint256) (#2791-2869) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2859-2866)
Variable 'EGG._transfer(address,address,uint256).iterations (#2855)' in EGG._transfer(address,address,uint256) (#2791-2869) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2859-2866)
Variable 'EGG._transfer(address,address,uint256).lastProcessedIndex (#2857)' in EGG._transfer(address,address,uint256) (#2791-2869) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2859-2866)
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 EGG._transfer(address,address,uint256) (#2791-2869):
External calls:
- swapAndSendToFee(marketingTokens) (#2822)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokens,0,path,_marketingWalletAddress,block.timestamp) (#2891-2897)
- swapAndSendDividends(sellTokens) (#2825)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#2937-2940)
- dividendTracker.distributeCAKEDividends(dividends) (#2943)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2926-2932)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#2825)
- _allowances[owner][spender] = amount (#468)
Reentrancy in EGG.constructor() (#2648-2698):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#2675-2676)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#2678)
- uniswapV2Router = _uniswapV2Router (#2677)
Reentrancy in EGG.constructor() (#2648-2698):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#2675-2676)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#2679)
- dividendTracker.excludeFromDividends(pair) (#2878)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#2682)
- dividendTracker.excludeFromDividends(address(this)) (#2683)
- dividendTracker.excludeFromDividends(owner()) (#2684)
- dividendTracker.excludeFromDividends(address(0xdead)) (#2685)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#2686)
State variables written after the call(s):
- _mint(owner(),totalSupply_ * 10 ** decimals_) (#2695)
- _balances[account] += amount (#417)
- excludeFromFees(owner(),true) (#2688)
- _isExcludedFromFees[account] = excluded (#2713)
- excludeFromFees(_marketingWalletAddress,true) (#2689)
- _isExcludedFromFees[account] = excluded (#2713)
- excludeFromFees(address(this),true) (#2690)
- _isExcludedFromFees[account] = excluded (#2713)
- _mint(owner(),totalSupply_ * 10 ** decimals_) (#2695)
- _totalSupply += amount (#416)
Reentrancy in BABYTOKENDividendTracker.processAccount(address,bool) (#2524-2538):
External calls:
- amount = _withdrawDividendOfUser(account) (#2529)
- success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#2148-2151)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2532)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in EGG._setAutomatedMarketMakerPair(address,bool) (#2870-2882):
External calls:
- dividendTracker.excludeFromDividends(pair) (#2878)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#2881)
Reentrancy in EGG._transfer(address,address,uint256) (#2791-2869):
External calls:
- swapAndSendToFee(marketingTokens) (#2822)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokens,0,path,_marketingWalletAddress,block.timestamp) (#2891-2897)
- swapAndSendDividends(sellTokens) (#2825)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#2937-2940)
- dividendTracker.distributeCAKEDividends(dividends) (#2943)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2926-2932)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#469)
- swapAndSendDividends(sellTokens) (#2825)
- SendDividends(tokens,dividends) (#2944)
- swapAndSendDividends(sellTokens) (#2825)
- Transfer(sender,recipient,amount) (#401)
- super._transfer(from,to,amount) (#2844)
- Transfer(sender,recipient,amount) (#401)
- super._transfer(from,address(this),fees) (#2841)
Reentrancy in EGG._transfer(address,address,uint256) (#2791-2869):
External calls:
- swapAndSendToFee(marketingTokens) (#2822)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokens,0,path,_marketingWalletAddress,block.timestamp) (#2891-2897)
- swapAndSendDividends(sellTokens) (#2825)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#2937-2940)
- dividendTracker.distributeCAKEDividends(dividends) (#2943)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2926-2932)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2846-2848)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2849)
- dividendTracker.process(gas) (#2854-2867)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2859-2866)
Reentrancy in EGG.constructor() (#2648-2698):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#2675-2676)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#2679)
- dividendTracker.excludeFromDividends(pair) (#2878)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#2881)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#2679)
Reentrancy in EGG.constructor() (#2648-2698):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#2675-2676)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#2679)
- dividendTracker.excludeFromDividends(pair) (#2878)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#2682)
- dividendTracker.excludeFromDividends(address(this)) (#2683)
- dividendTracker.excludeFromDividends(owner()) (#2684)
- dividendTracker.excludeFromDividends(address(0xdead)) (#2685)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#2686)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#2715)
- excludeFromFees(_marketingWalletAddress,true) (#2689)
- ExcludeFromFees(account,excluded) (#2715)
- excludeFromFees(owner(),true) (#2688)
- ExcludeFromFees(account,excluded) (#2715)
- excludeFromFees(address(this),true) (#2690)
- TokenCreated(owner(),address(this),TokenType.baby,VERSION) (#2697)
- Transfer(address(0),account,amount) (#418)
- _mint(owner(),totalSupply_ * 10 ** decimals_) (#2695)
Reentrancy in BABYTOKENDividendTracker.processAccount(address,bool) (#2524-2538):
External calls:
- amount = _withdrawDividendOfUser(account) (#2529)
- success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#2148-2151)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2533)
Reentrancy in EGG.processDividendTracker(uint256) (#2772-2786):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2773-2777)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2778-2785)
Reentrancy in EGG.swapAndSendDividends(uint256) (#2934-2946):
External calls:
- swapTokensForCake(tokens) (#2935)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2926-2932)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#2937-2940)
- dividendTracker.distributeCAKEDividends(dividends) (#2943)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#2944)
Apply the check-effects-interactions pattern.
Additional information: link
BABYTOKENDividendTracker.getAccount(address) (#2373-2420) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#2417-2419)
BABYTOKENDividendTracker.canAutoClaim(uint256) (#2445-2451) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2446)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2450)
Avoid relying on block.timestamp.
Additional information: link
Function IUniswapV2Router01.WETH() (#947) is not in mixedCase
Function ContextUpgradeable.__Context_init() (#1331-1333) is not in mixedCase
Function ContextUpgradeable.__Context_init_unchained() (#1335-1336) is not in mixedCase
Variable ContextUpgradeable.__gap (#1344) is not in mixedCase
Function ERC20Upgradeable.__ERC20_init(string,string) (#1402-1405) is not in mixedCase
Function ERC20Upgradeable.__ERC20_init_unchained(string,string) (#1407-1410) is not in mixedCase
Variable ERC20Upgradeable.__gap (#1709) is not in mixedCase
Function OwnableUpgradeable.__Ownable_init() (#1741-1744) is not in mixedCase
Function OwnableUpgradeable.__Ownable_init_unchained() (#1746-1748) is not in mixedCase
Variable OwnableUpgradeable.__gap (#1790) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1813) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1814) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1831) is not in mixedCase
Function DividendPayingToken.__DividendPayingToken_init(address,string,string) (#2107-2115) is not in mixedCase
Parameter DividendPayingToken.__DividendPayingToken_init(address,string,string)._rewardToken (#2108) is not in mixedCase
Parameter DividendPayingToken.__DividendPayingToken_init(address,string,string)._name (#2109) is not in mixedCase
Parameter DividendPayingToken.__DividendPayingToken_init(address,string,string)._symbol (#2110) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#2169) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#2176) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#2188) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#2202) is not in mixedCase
Constant DividendPayingToken.magnitude (#2087) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter BABYTOKENDividendTracker.getAccount(address)._account (#2373) is not in mixedCase
Variable EGG._marketingWalletAddress (#2594) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#952) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#953)
Variable DividendPayingToken.__DividendPayingToken_init(address,string,string)._rewardToken (#2108) is too similar to BABYTOKENDividendTracker.constructor(address,uint256).rewardToken_ (#2300)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#2142) is too similar to BABYTOKENDividendTracker.getAccount(address).withdrawableDividends (#2380)
Variable ERC20._totalSupply (#223) is too similar to EGG.constructor().totalSupply_ (#2650)
Variable EGG.constructor()._uniswapV2Router (#2673) is too similar to EGG.constructor().uniswapV2Routers (#2652)
Prevent variables from having similar names.
Additional information: link
Clones.clone(address) (#843-852) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_clone_asm_0,0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) (#846)
Clones.clone(address) (#843-852) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_clone_asm_0 + 0x28,0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) (#848)
Clones.cloneDeterministic(address,bytes32) (#861-870) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_cloneDeterministic_asm_0,0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) (#864)
Clones.cloneDeterministic(address,bytes32) (#861-870) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_cloneDeterministic_asm_0 + 0x28,0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) (#866)
Clones.predictDeterministicAddress(address,bytes32,address) (#875-890) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_predictDeterministicAddress_asm_0,0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) (#882)
Clones.predictDeterministicAddress(address,bytes32,address) (#875-890) uses literals with too many digits:
- mstore(uint256,uint256)(ptr_predictDeterministicAddress_asm_0 + 0x28,0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) (#884)
EGG.constructor() (#2648-2698) uses literals with too many digits:
- totalSupply_ = 500000000000000 (#2650)
EGG.constructor() (#2648-2698) uses literals with too many digits:
- minimumTokenBalanceForDividends_ = 500000000000 (#2656)
EGG.constructor() (#2648-2698) uses literals with too many digits:
- maxNums = 1000000000000 (#2657)
EGG.constructor() (#2648-2698) uses literals with too many digits:
- gasForProcessing = 300000 (#2670)
EGG.updateGasForProcessing(uint256) (#2733-2744) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,BABYTOKEN: gasForProcessing must be between 200,000 and 500,000) (#2734-2737)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#1859) is never used in SafeMathInt (#1857-1914)
OwnableUpgradeable.__gap (#1790) is never used in BABYTOKENDividendTracker (#2275-2539)
Remove unused state variables.
Additional information: link
EGG.liquidityFee (#2590) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (#247-249)
symbol() should be declared external:
- ERC20.symbol() (#255-257)
decimals() should be declared external:
- ERC20.decimals() (#272-274)
totalSupply() should be declared external:
- ERC20.totalSupply() (#279-281)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#298-301)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#306-308)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#317-320)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#335-349)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#569-571)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#577-580)
name() should be declared external:
- ERC20Upgradeable.name() (#1415-1417)
symbol() should be declared external:
- ERC20Upgradeable.symbol() (#1423-1425)
decimals() should be declared external:
- ERC20Upgradeable.decimals() (#1440-1442)
transfer(address,uint256) should be declared external:
- ERC20Upgradeable.transfer(address,uint256) (#1466-1469)
allowance(address,address) should be declared external:
- ERC20Upgradeable.allowance(address,address) (#1474-1476)
approve(address,uint256) should be declared external:
- ERC20Upgradeable.approve(address,uint256) (#1485-1488)
transferFrom(address,address,uint256) should be declared external:
- ERC20Upgradeable.transferFrom(address,address,uint256) (#1503-1517)
increaseAllowance(address,uint256) should be declared external:
- ERC20Upgradeable.increaseAllowance(address,uint256) (#1531-1534)
decreaseAllowance(address,uint256) should be declared external:
- ERC20Upgradeable.decreaseAllowance(address,uint256) (#1550-1558)
renounceOwnership() should be declared external:
- OwnableUpgradeable.renounceOwnership() (#1772-1774)
transferOwnership(address) should be declared external:
- OwnableUpgradeable.transferOwnership(address) (#1780-1783)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1947-1949)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1951-1960)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1962-1968)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1970-1972)
distributeCAKEDividends(uint256) should be declared external:
- DividendPayingToken.distributeCAKEDividends(uint256) (#2117-2128)
withdrawDividend() should be declared external:
- BABYTOKENDividendTracker.withdrawDividend() (#2320-2325)
- DividendPayingToken.withdrawDividend() (#2132-2134)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#2169-2171)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#2188-2195)
isExcludedFromDividends(address) should be declared external:
- BABYTOKENDividendTracker.isExcludedFromDividends(address) (#2337-2343)
getAccountAtIndex(uint256) should be declared external:
- BABYTOKENDividendTracker.getAccountAtIndex(uint256) (#2422-2443)
process(uint256) should be declared external:
- BABYTOKENDividendTracker.process(uint256) (#2470-2522)
setMaxnum(uint256) should be declared external:
- EGG.setMaxnum(uint256) (#2705-2707)
updateGasForProcessing(uint256) should be declared external:
- EGG.updateGasForProcessing(uint256) (#2733-2744)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
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.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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 website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts