Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TIMMYINUMEMECOIN.clearBalance() (#399-402) sends eth to arbitrary user
Dangerous calls:
- (success) = address(autoLiquidityReceiver).call{gas: 30000,value: address(this).balance}() (#400)
TIMMYINUMEMECOIN.swapBack() (#411-458) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TIMMYINUMEMECOIN._transferFrom(address,address,uint256) (#345-362):
External calls:
- swapBack() (#353)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#422-428)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
External calls sending eth:
- swapBack() (#353)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#355)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#358)
- amountReceived = takeFee(sender,recipient,amount) (#357)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#382)
Reentrancy in TIMMYINUMEMECOIN.swapBack() (#411-458):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#422-428)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
External calls sending eth:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
State variables written after the call(s):
- swapThreshold = swapThreshold (#457)
- swapThreshold = largeSwapThreshold (#457)
- swapThreshold = smallSwapThreshold (#457)
Apply the check-effects-interactions pattern.
Additional information: link
Token is flagged by TokenSniffer due to presence of exploit in contract code
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.
TIMMYINUMEMECOIN.swapBack().success_scope_0 (#440) 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
TIMMYINUMEMECOIN.swapBack() (#411-458) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
Ensure that all the return values of the function calls are used.
Additional information: link
TIMMYINUMEMECOIN.setTargetLiquidity(uint256,uint256) (#388-391) should emit an event for:
- targetLiquidity = _target (#389)
- targetLiquidityDenominator = _denominator (#390)
TIMMYINUMEMECOIN.setSwapBackSettings(bool,uint256,uint256,bool) (#468-474) should emit an event for:
- smallSwapThreshold = _amountS (#471)
- largeSwapThreshold = _amountL (#472)
- swapThreshold = smallSwapThreshold (#473)
Emit an event for critical parameter changes.
Additional information: link
TIMMYINUMEMECOIN.constructor().deployer (#289) lacks a zero-check on :
- autoLiquidityReceiver = deployer (#299)
TIMMYINUMEMECOIN.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#494) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#495)
TIMMYINUMEMECOIN.setFeeReceivers(address,address,address)._giveawayFeeReceiver (#494) lacks a zero-check on :
- giveawayFeeReceiver = _giveawayFeeReceiver (#496)
TIMMYINUMEMECOIN.setFeeReceivers(address,address,address)._marketingFeeReceiver (#494) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#497)
Check that the address is not zero.
Additional information: link
TIMMYINUMEMECOIN.swapBack() (#411-458) has external calls inside a loop: router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#422-428)
TIMMYINUMEMECOIN.swapBack() (#411-458) has external calls inside a loop: (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
TIMMYINUMEMECOIN.swapBack() (#411-458) has external calls inside a loop: router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
TIMMYINUMEMECOIN.swapBack() (#411-458) has external calls inside a loop: (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
TIMMYINUMEMECOIN.swapBack() (#411-458) has external calls inside a loop: (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'TIMMYINUMEMECOIN.swapBack().success (#437)' in TIMMYINUMEMECOIN.swapBack() (#411-458) potentially used before declaration: (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
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 TIMMYINUMEMECOIN.constructor() (#287-303):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#291)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#292)
- _allowances[address(this)][deployer] = type()(uint256).max (#293)
- _balances[deployer] = _totalSupply (#301)
- autoLiquidityReceiver = deployer (#299)
- isFeeExempt[deployer] = true (#298)
- isTxLimitExempt[address(this)] = true (#295)
- isTxLimitExempt[address(router)] = true (#296)
- isTxLimitExempt[deployer] = true (#297)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TIMMYINUMEMECOIN._transferFrom(address,address,uint256) (#345-362):
External calls:
- swapBack() (#353)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#422-428)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
External calls sending eth:
- swapBack() (#353)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#383)
- amountReceived = takeFee(sender,recipient,amount) (#357)
- Transfer(sender,recipient,amountReceived) (#360)
Reentrancy in TIMMYINUMEMECOIN.constructor() (#287-303):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#291)
Event emitted after the call(s):
- Transfer(address(0),deployer,_totalSupply) (#302)
Reentrancy in TIMMYINUMEMECOIN.swapBack() (#411-458):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#422-428)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
External calls sending eth:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#446-453)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#454)
Apply the check-effects-interactions pattern.
Additional information: link
TIMMYINUMEMECOIN.swapping() (#285) has costly operations inside a loop:
- inSwap = true (#285)
TIMMYINUMEMECOIN.swapping() (#285) has costly operations inside a loop:
- inSwap = false (#285)
TIMMYINUMEMECOIN.swapBack() (#411-458) has costly operations inside a loop:
- swapThreshold = swapThreshold (#457)
TIMMYINUMEMECOIN.swapBack() (#411-458) has costly operations inside a loop:
- swapThreshold = largeSwapThreshold (#457)
TIMMYINUMEMECOIN.swapBack() (#411-458) has costly operations inside a loop:
- swapThreshold = smallSwapThreshold (#457)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#125-128) is never used and should be removed
Remove unused functions.
Additional information: link
TIMMYINUMEMECOIN._transferLimit (#252) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 45) / 100
TIMMYINUMEMECOIN._maxWalletSize (#253) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 5) / 100
TIMMYINUMEMECOIN.smallSwapThreshold (#280) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(413945130).div(100000000000)
TIMMYINUMEMECOIN.largeSwapThreshold (#281) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(469493726).div(100000000000)
TIMMYINUMEMECOIN.swapThreshold (#283) is set pre-construction with a non-constant function or state variable:
- smallSwapThreshold
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
Pragma version^0.8.11 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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
Low level call in TIMMYINUMEMECOIN.clearBalance() (#399-402):
- (success) = address(autoLiquidityReceiver).call{gas: 30000,value: address(this).balance}() (#400)
Low level call in TIMMYINUMEMECOIN.swapBack() (#411-458):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing.add(amountBNBGiveaway)}() (#437)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#440)
- (success2) = address(giveawayFeeReceiver).call{gas: 30000,value: amountBNBGiveaway}() (#441)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#142) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setTargetLiquidity(uint256,uint256)._target (#388) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setTargetLiquidity(uint256,uint256)._denominator (#388) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setSwapBackSettings(bool,uint256,uint256,bool)._enabled (#468) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setSwapBackSettings(bool,uint256,uint256,bool)._amountS (#468) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setSwapBackSettings(bool,uint256,uint256,bool)._amountL (#468) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setSwapBackSettings(bool,uint256,uint256,bool)._alternate (#468) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#494) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setFeeReceivers(address,address,address)._marketingFeeReceiver (#494) is not in mixedCase
Parameter TIMMYINUMEMECOIN.setFeeReceivers(address,address,address)._giveawayFeeReceiver (#494) is not in mixedCase
Variable TIMMYINUMEMECOIN._name (#247) is not in mixedCase
Variable TIMMYINUMEMECOIN._symbol (#248) is not in mixedCase
Constant TIMMYINUMEMECOIN._decimals (#249) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TIMMYINUMEMECOIN._totalSupply (#251) is not in mixedCase
Variable TIMMYINUMEMECOIN._transferLimit (#252) is not in mixedCase
Variable TIMMYINUMEMECOIN._maxWalletSize (#253) is not in mixedCase
Variable TIMMYINUMEMECOIN._balances (#255) is not in mixedCase
Variable TIMMYINUMEMECOIN._allowances (#256) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#126)" inContext (#120-129)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#147) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#148)
Prevent variables from having similar names.
Additional information: link
TIMMYINUMEMECOIN.slitherConstructorVariables() (#240-506) uses literals with too many digits:
- smallSwapThreshold = _totalSupply.mul(413945130).div(100000000000) (#280)
TIMMYINUMEMECOIN.slitherConstructorVariables() (#240-506) uses literals with too many digits:
- largeSwapThreshold = _totalSupply.mul(469493726).div(100000000000) (#281)
TIMMYINUMEMECOIN.slitherConstructorConstantVariables() (#240-506) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#244)
TIMMYINUMEMECOIN.slitherConstructorConstantVariables() (#240-506) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#245)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TIMMYINUMEMECOIN._name (#247) should be constant
TIMMYINUMEMECOIN._symbol (#248) should be constant
TIMMYINUMEMECOIN._totalSupply (#251) should be constant
TIMMYINUMEMECOIN.feeDenominator (#266) should be constant
TIMMYINUMEMECOIN.giveawayFee (#263) should be constant
TIMMYINUMEMECOIN.liquidityFee (#264) should be constant
TIMMYINUMEMECOIN.marketingFee (#262) should be constant
TIMMYINUMEMECOIN.timeLaunched (#257) should be constant
TIMMYINUMEMECOIN.totalFee (#265) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#224-227)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#233-237)
transferLiquidity(address,uint256) should be declared external:
- TIMMYINUMEMECOIN.transferLiquidity(address,uint256) (#340-343)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 5% buy tax and 52% sell tax.
Taxes are extremely high (over 30%)
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
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Token has no active CoinMarketCap listing / rank
Token has no active CoinGecko listing / rank
Unable to find Telegram and Twitter accounts