County Gives you 8% BUSD rewards with only 12% tax. The NFT market overall has ballooned in the past year. We have combined the gaming industry which is expected to grow to 360 Billion USD by 2026 and NFT marketplace which is expected to cross the market value of cryptocurrency itself. We are building a game called county. where people will be creating and setting up cities. Which you can mint and sell.
punch.swapBack() (#599-641) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#626)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in punch._transferFrom(address,address,uint256) (#526-549):
External calls:
- swapBack() (#531)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#609-615)
- distributor.deposit{value: amountBNBReflection}() (#625)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#631-638)
- triggerAutoBuyback() (#532)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#675-680)
External calls sending eth:
- swapBack() (#531)
- distributor.deposit{value: amountBNBReflection}() (#625)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#626)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#631-638)
- triggerAutoBuyback() (#532)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#675-680)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#536)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#540)
- amountReceived = takeFee(sender,recipient,amount) (#538)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#586)
- triggerAutoBuyback() (#532)
- inSwap = true (#467)
- inSwap = false (#467)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#359-370) ignores return value by BUSD.transfer(shareholder,amount) (#365)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
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.
Reentrancy in DividendDistributor.setShare(address,uint256) (#292-306):
External calls:
- distributeDividend(shareholder) (#294)
- BUSD.transfer(shareholder,amount) (#365)
State variables written after the call(s):
- shares[shareholder].amount = amount (#304)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#305)
Apply the check-effects-interactions pattern.
Additional information: link
punch.swapBack() (#599-641) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#631-638)
Ensure that all the return values of the function calls are used.
Additional information: link
punch.setTargetLiquidity(uint256,uint256) (#752-755) should emit an event for:
- targetLiquidity = _target (#753)
- targetLiquidityDenominator = _denominator (#754)
Emit an event for critical parameter changes.
Additional information: link
punch.setFeeReceivers(address,address)._marketingFeeReceiver (#742) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#744)
Check that the address is not zero.
Additional information: link
Reentrancy in punch.triggerZeusBuyback(uint256,bool) (#651-657):
External calls:
- buyTokens(amount,DEAD) (#652)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#675-680)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#654)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in punch.triggerZeusBuyback(uint256,bool) (#651-657):
External calls:
- buyTokens(amount,DEAD) (#652)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#675-680)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#655)
Apply the check-effects-interactions pattern.
Additional information: link
punch.isOverLiquified(uint256,uint256) (#774-776) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#775)
Avoid relying on block.timestamp.
Additional information: link
punch.onlyBuybacker() (#500) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#500)
Remove the equality to the boolean constant.
Additional information: link
DividendDistributor.process(uint256) (#328-352) has costly operations inside a loop:
- currentIndex ++ (#349)
Use a local variable to hold the loop computation result.
Additional information: link
punch.launched() (#699-701) is never used and should be removed
Remove unused functions.
Additional information: link
punch.swapThreshold (#465) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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
solc-0.8.7 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
Variable punch._allowances (#421) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in punch.swapBack() (#599-641):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#626)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#625)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#626)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#631-638)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#639)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#189) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#190)
Prevent variables from having similar names.
Additional information: link
punch.slitherConstructorVariables() (#403-781) uses literals with too many digits:
- distributorGas = 400000 (#462)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
punch.DEAD_NON_CHECKSUM (#411) is never used in punch (#403-781)
Remove unused state variables.
Additional information: link
punch._totalSupply (#417) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
launch() should be declared external:
- punch.launch() (#703-707)
Use the external attribute for functions never called from the contract.
Additional information: link
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 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.
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 find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko 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