If you have
Telegram
, you can contact
@DogeGeneral100X
right away.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract locking ether found:
Contract DogeGeneral (#919-1099) has payable functions:
- DogeGeneral.receive() (#1097)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
Function IUniswapV2Router01.WETH() (#782) is not in mixedCase
Parameter DogeGeneral.setBotAddresses(address[])._addresses (#982) is not in mixedCase
Parameter DogeGeneral.addBotAddress(address)._address (#990) is not in mixedCase
Function DogeGeneral.SetMintContract(address) (#1024-1027) is not in mixedCase
Parameter DogeGeneral.SetMintContract(address).contrat_addr (#1024) is not in mixedCase
Variable DogeGeneral.MAX_TOTAL_SUPPLY (#922) is not in mixedCase
Variable DogeGeneral.MAX_TOKENS_FOR_REWARDS (#923) is not in mixedCase
Variable DogeGeneral.MAX_LOCK (#924) is not in mixedCase
Variable DogeGeneral.BurnAddr (#928) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#787) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#788)
Prevent variables from having similar names.
Additional information: link
DogeGeneral.slitherConstructorVariables() (#919-1099) uses literals with too many digits:
- MAX_TOTAL_SUPPLY = 100000000000 * 10 ** 9 (#922)
DogeGeneral.slitherConstructorVariables() (#919-1099) uses literals with too many digits:
- MAX_LOCK = 100000000000 * 10 ** 9 (#924)
DogeGeneral.slitherConstructorVariables() (#919-1099) uses literals with too many digits:
- BurnAddr = 0x000000000000000000000000000000000000dEaD (#928)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DogeGeneral.BurnAddr (#928) should be constant
DogeGeneral.MAX_LOCK (#924) should be constant
DogeGeneral.MAX_TOKENS_FOR_REWARDS (#923) should be constant
DogeGeneral.MAX_TOTAL_SUPPLY (#922) should be constant
DogeGeneral.antiBotDuration (#944) should be constant
DogeGeneral.buyFeeRate (#950) should be constant
DogeGeneral.sellFeeRate (#949) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
DogeGeneral.antiBot(uint256) (#999-1006) should emit an event for:
- antiBotAmount = amount (#1003)
Emit an event for critical parameter changes.
Additional information: link
DogeGeneral.tokensForRewards (#940) is set pre-construction with a non-constant function or state variable:
- MAX_TOKENS_FOR_REWARDS
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
DogeGeneral._transfer(address,address,uint256) (#1039-1094) performs a multiplication on the result of a division:
-_fee = amount.mul(sellFeeRate).div(100) (#1074)
-super._transfer(sender,mintContract,_fee.mul(30).div(100)) (#1075)
DogeGeneral._transfer(address,address,uint256) (#1039-1094) performs a multiplication on the result of a division:
-_fee = amount.mul(sellFeeRate).div(100) (#1074)
-super._transfer(sender,addressForMarketing,_fee.mul(500).div(1000)) (#1076)
DogeGeneral._transfer(address,address,uint256) (#1039-1094) performs a multiplication on the result of a division:
-_fee = amount.mul(sellFeeRate).div(100) (#1074)
-super._transfer(sender,BurnAddr,_fee.mul(200).div(1000)) (#1077)
DogeGeneral._transfer(address,address,uint256) (#1039-1094) performs a multiplication on the result of a division:
-_fee_scope_0 = amount.mul(buyFeeRate).div(100) (#1086)
-super._transfer(sender,mintContract,_fee_scope_0.mul(60).div(100)) (#1087)
DogeGeneral._transfer(address,address,uint256) (#1039-1094) performs a multiplication on the result of a division:
-_fee_scope_0 = amount.mul(buyFeeRate).div(100) (#1086)
-super._transfer(sender,addressForMarketing,_fee_scope_0.sub(_fee_scope_0.mul(60).div(100))) (#1088)
Consider ordering multiplication before division.
Additional information: link
DogeGeneral.SetMintContract(address).contrat_addr (#1024) lacks a zero-check on :
- mintContract = contrat_addr (#1026)
Check that the address is not zero.
Additional information: link
DogeGeneral._transfer(address,address,uint256) (#1039-1094) uses timestamp for comparisons
Dangerous comparisons:
- botAddresses[sender] && amount > antiBotAmount && antiBotTime > block.timestamp (#1045-1047)
- unlockTime > block.timestamp (#1054)
Avoid relying on block.timestamp.
Additional information: link
DogeGeneral.isContractaddr(address) (#1029-1033) uses assembly
- INLINE ASM (#1031)
Do not use evm assembly.
Additional information: link
Context._msgData() (#233-235) is never used and should be removed
SafeMath.add(uint256,uint256) (#82-84) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#180-189) is never used and should be removed
SafeMath.mod(uint256,uint256) (#140-142) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#206-215) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#157-166) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#11-17) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#53-58) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#65-70) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#36-46) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#24-29) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.2 (#2) allows old versions
solc-0.8.2 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
name() should be declared external:
- ERC20.name() (#364-366)
symbol() should be declared external:
- ERC20.symbol() (#372-374)
decimals() should be declared external:
- DogeGeneral.decimals() (#969-971)
- ERC20.decimals() (#389-391)
totalSupply() should be declared external:
- ERC20.totalSupply() (#396-398)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#415-418)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#434-437)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#452-466)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#480-483)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#499-507)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#670-672)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#685-692)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#742-744)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#750-753)
getUnlockTime() should be declared external:
- DogeGeneral.getUnlockTime() (#973-975)
getvalue() should be declared external:
- DogeGeneral.getvalue() (#1011-1013)
excludeFromFee(address) should be declared external:
- DogeGeneral.excludeFromFee(address) (#1016-1018)
includeInFee(address) should be declared external:
- DogeGeneral.includeInFee(address) (#1020-1022)
Use the external attribute for functions never called from the contract.
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 8% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account