POWER EVOC Token Logo

PWE [POWER EVOC] Token

About PWE

Listings

Not Found
Token 4 years
white paper

POWER EVOC will be a governance token where it will have the function of buying Evocardano and burning them automatically. Leaving Evocardano increasingly scarce and valuable. Most of the fees will return to their own liquidity creating price stability. And for those who have always dreamed of mining a coin, it will also be a token where you can mine economically without spending energy and earn very significant profits. But for that you will have to have a quantity of POWER EVOC in your wallet to be able to create the liquidity pair and start mining on DEX EvocSwap.

Social

Laser Scorebeta Last Audit: 15 April 2022

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

Anti-Scam

Links

POWEREVOC.addLiquidity(uint256,uint256) (#929-943) sends eth to arbitrary user
Dangerous calls:
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in POWEREVOC._transfer(address,address,uint256) (#797-839):
External calls:
- swapAndLiquifyBuyBack() (#808)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
External calls sending eth:
- swapAndLiquifyBuyBack() (#808)
- (success) = recipient.call{value: amount}() (#315)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
State variables written after the call(s):
- super._transfer(sender,address(this),amount) (#817)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
- super._transfer(sender,address(this),sellTaxAmount) (#821)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
- super._transfer(sender,recipient,sellSendAmount) (#823)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
- super._transfer(sender,recipient,amount) (#828)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
- super._transfer(sender,address(this),taxAmount) (#834)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
- super._transfer(sender,recipient,sendAmount) (#835)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
Reentrancy in POWEREVOC.swapAndLiquifyBuyBack() (#841-865):
External calls:
- BuybackBurn(buybackTokens) (#847)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
- payMarketing(marketingTokens) (#851)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
External calls sending eth:
- payMarketing(marketingTokens) (#851)
- (success) = recipient.call{value: amount}() (#315)
State variables written after the call(s):
- super._transfer(address(this),deadWallet,burningTokens) (#855)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#648)
- _balances[recipient] = _balances[recipient].add(amount) (#649)
Apply the check-effects-interactions pattern.

Additional information: link

POWEREVOC.recoverWrongTokens(address,uint256) (#921-927) ignores return value by IBEP20(_tokenAddress).transfer(address(msg.sender),_tokenAmount) (#924)
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...)

POWEREVOC._writeCheckpoint(address,uint32,uint256,uint256) (#1202-1220) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1212)
MasterChef.updatePool(uint256) (#1390-1409) uses a dangerous strict equality:
- lpSupply == 0 || pool.allocPoint == 0 (#1399)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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.

MasterChef.pendingPowerEvoc(uint256,address) (#1365-1379) performs a multiplication on the result of a division:
-powerevocReward = multiplier.mul(powerevocPerBlock).mul(pool.allocPoint).div(totalAllocPoint) (#1375)
-accPowerEvocPerShare = accPowerEvocPerShare.add(powerevocReward.mul(1e12).div(lpSupply)) (#1376)
MasterChef.updatePool(uint256) (#1390-1409) performs a multiplication on the result of a division:
-powerevocReward = multiplier.mul(powerevocPerBlock).mul(pool.allocPoint).div(totalAllocPoint) (#1404)
-pool.accPowerEvocPerShare = pool.accPowerEvocPerShare.add(powerevocReward.mul(1e12).div(lpSupply)) (#1407)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in MasterChef.add(uint256,IBEP20,uint16,uint256,bool) (#1327-1344):
External calls:
- massUpdatePools() (#1330)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
State variables written after the call(s):
- poolExistence[_lpToken] = true (#1334)
- poolInfo.push(PoolInfo(_lpToken,_allocPoint,lastRewardBlock,0,_depositFeeBP,0,_blockTimePeriod)) (#1335-1343)
- totalAllocPoint = totalAllocPoint.add(_allocPoint) (#1333)
Reentrancy in MasterChef.deposit(uint256,uint256) (#1412-1438):
External calls:
- updatePool(_pid) (#1415)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
- safePowerEvocTransfer(msg.sender,pending) (#1419)
- transferSuccess = pwe.transfer(_to,powerevocBal) (#1481)
- transferSuccess = pwe.transfer(_to,_amount) (#1483)
- pool.lpToken.safeTransferFrom(address(msg.sender),address(this),_amount) (#1423)
- pool.lpToken.safeTransfer(feeAddress,depositFee) (#1426)
State variables written after the call(s):
- pool.amount = pool.amount.add(_amount).sub(depositFee) (#1429)
- user.amount = user.amount.add(_amount).sub(depositFee) (#1427)
- user.lastDepositBlock = block.number (#1428)
Reentrancy in MasterChef.deposit(uint256,uint256) (#1412-1438):
External calls:
- updatePool(_pid) (#1415)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
- safePowerEvocTransfer(msg.sender,pending) (#1419)
- transferSuccess = pwe.transfer(_to,powerevocBal) (#1481)
- transferSuccess = pwe.transfer(_to,_amount) (#1483)
- pool.lpToken.safeTransferFrom(address(msg.sender),address(this),_amount) (#1423)
State variables written after the call(s):
- pool.amount = pool.amount.add(_amount) (#1433)
- user.amount = user.amount.add(_amount) (#1431)
- user.lastDepositBlock = block.number (#1432)
Reentrancy in MasterChef.emergencyWithdraw(uint256) (#1465-1474):
External calls:
- pool.lpToken.safeTransfer(address(msg.sender),user.amount) (#1469)
State variables written after the call(s):
- pool.amount = pool.amount.sub(amount) (#1473)
- user.amount = 0 (#1471)
- user.rewardDebt = 0 (#1472)
Reentrancy in MasterChef.set(uint256,uint256,uint16,uint256,bool) (#1347-1357):
External calls:
- massUpdatePools() (#1350)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
State variables written after the call(s):
- poolInfo[_pid].allocPoint = _allocPoint (#1353)
- poolInfo[_pid].depositFeeBP = _depositFeeBP (#1354)
- poolInfo[_pid].blockTimePeriod = _blockTimePeriod (#1355)
- totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint) (#1352)
Reentrancy in MasterChef.updateEmissionRate(uint256) (#1507-1511):
External calls:
- massUpdatePools() (#1508)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
State variables written after the call(s):
- powerevocPerBlock = _powerevocPerBlock (#1510)
Reentrancy in MasterChef.updatePool(uint256) (#1390-1409):
External calls:
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
State variables written after the call(s):
- pool.accPowerEvocPerShare = pool.accPowerEvocPerShare.add(powerevocReward.mul(1e12).div(lpSupply)) (#1407)
- pool.lastRewardBlock = block.number (#1408)
Reentrancy in MasterChef.withdraw(uint256,uint256) (#1441-1462):
External calls:
- updatePool(_pid) (#1450)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
- safePowerEvocTransfer(msg.sender,pending) (#1453)
- transferSuccess = pwe.transfer(_to,powerevocBal) (#1481)
- transferSuccess = pwe.transfer(_to,_amount) (#1483)
State variables written after the call(s):
- pool.amount = pool.amount.sub(_amount) (#1457)
- user.amount = user.amount.sub(_amount) (#1456)
Reentrancy in MasterChef.withdraw(uint256,uint256) (#1441-1462):
External calls:
- updatePool(_pid) (#1450)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
- safePowerEvocTransfer(msg.sender,pending) (#1453)
- transferSuccess = pwe.transfer(_to,powerevocBal) (#1481)
- transferSuccess = pwe.transfer(_to,_amount) (#1483)
- pool.lpToken.safeTransfer(address(msg.sender),_amount) (#1458)
State variables written after the call(s):
- user.rewardDebt = user.amount.mul(pool.accPowerEvocPerShare).div(1e12) (#1460)
Apply the check-effects-interactions pattern.

Additional information: link

BEP20.allowance(address,address).owner (#609) shadows:
- Ownable.owner() (#467-469) (function)
BEP20._approve(address,address,uint256).owner (#668) shadows:
- Ownable.owner() (#467-469) (function)
Rename the local variables that shadow another component.

Additional information: link

POWEREVOC.setTxFees(uint256) (#980-983) should emit an event for:
- transferTaxRate = _transactionFee (#981)
POWEREVOC.setSellFees(uint256,uint256,uint256,uint256) (#985-992) should emit an event for:
- liquiditySellFee = _liquiditySellFee (#986)
- buybackSellFee = _buybackSellFee (#987)
- marketingSellFee = _marketingSellFee (#988)
- burnSellFee = _burnSellFee (#989)
- sellTaxRate = liquiditySellFee.add(buybackSellFee).add(marketingSellFee).add(burnSellFee) (#990)
MasterChef.add(uint256,IBEP20,uint16,uint256,bool) (#1327-1344) should emit an event for:
- totalAllocPoint = totalAllocPoint.add(_allocPoint) (#1333)
MasterChef.set(uint256,uint256,uint16,uint256,bool) (#1347-1357) should emit an event for:
- totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint) (#1352)
Emit an event for critical parameter changes.

Additional information: link

POWEREVOC.setMarketingWallet(address).wallet (#755) lacks a zero-check on :
- marketingFeeReceiver = wallet (#756)
MasterChef.dev(address)._devaddr (#1489) lacks a zero-check on :
- devaddr = _devaddr (#1491)
MasterChef.fee(address)._feeAddress (#1495) lacks a zero-check on :
- feeAddress = _feeAddress (#1497)
Check that the address is not zero.

Additional information: link

MasterChef.updatePool(uint256) (#1390-1409) has external calls inside a loop: lpSupply = pool.lpToken.balanceOf(address(this)) (#1395)
MasterChef.updatePool(uint256) (#1390-1409) has external calls inside a loop: pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
MasterChef.updatePool(uint256) (#1390-1409) has external calls inside a loop: pwe.mint(address(this),powerevocReward) (#1406)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in POWEREVOC.constructor() (#734-751):
External calls:
- _hashSwapPair = IUniswapV2Factory(_hashSwapRouter.factory()).createPair(address(this),_hashSwapRouter.WETH()) (#741-742)
State variables written after the call(s):
- _mint(owner(),1000000000000000000000000) (#749)
- _balances[account] = _balances[account].add(amount) (#656)
- setExcludeFromFees(owner(),true) (#747)
- _excludedFromFees[_account] = _excluded (#956)
- setExcludeFromFees(address(this),true) (#748)
- _excludedFromFees[_account] = _excluded (#956)
- _mint(owner(),1000000000000000000000000) (#749)
- _totalSupply = _totalSupply.add(amount) (#655)
- hashSwapPair = _hashSwapPair (#745)
- hashSwapRouter = _hashSwapRouter (#744)
Reentrancy in POWEREVOC.swapAndLiquify(uint256) (#890-901):
External calls:
- swapTokensForEth(half) (#896)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- addLiquidity(otherHalf,newBalance) (#899)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#899)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#899)
- _allowances[owner][spender] = amount (#672)
Reentrancy in POWEREVOC.swapAndLiquifyBuyBack() (#841-865):
External calls:
- BuybackBurn(buybackTokens) (#847)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
- payMarketing(marketingTokens) (#851)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
External calls sending eth:
- payMarketing(marketingTokens) (#851)
- (success) = recipient.call{value: amount}() (#315)
State variables written after the call(s):
- payMarketing(marketingTokens) (#851)
- _allowances[owner][spender] = amount (#672)
Reentrancy in POWEREVOC.swapAndLiquifyBuyBack() (#841-865):
External calls:
- BuybackBurn(buybackTokens) (#847)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
- payMarketing(marketingTokens) (#851)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- swapAndLiquify(liquidityTokens) (#859)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
External calls sending eth:
- payMarketing(marketingTokens) (#851)
- (success) = recipient.call{value: amount}() (#315)
- swapAndLiquify(liquidityTokens) (#859)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
State variables written after the call(s):
- swapAndLiquify(liquidityTokens) (#859)
- _allowances[owner][spender] = amount (#672)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in POWEREVOC._transfer(address,address,uint256) (#797-839):
External calls:
- swapAndLiquifyBuyBack() (#808)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
External calls sending eth:
- swapAndLiquifyBuyBack() (#808)
- (success) = recipient.call{value: amount}() (#315)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#650)
- super._transfer(sender,recipient,amount) (#828)
- Transfer(sender,recipient,amount) (#650)
- super._transfer(sender,address(this),amount) (#817)
- Transfer(sender,recipient,amount) (#650)
- super._transfer(sender,recipient,sellSendAmount) (#823)
- Transfer(sender,recipient,amount) (#650)
- super._transfer(sender,recipient,sendAmount) (#835)
- Transfer(sender,recipient,amount) (#650)
- super._transfer(sender,address(this),taxAmount) (#834)
- Transfer(sender,recipient,amount) (#650)
- super._transfer(sender,address(this),sellTaxAmount) (#821)
Reentrancy in POWEREVOC.constructor() (#734-751):
External calls:
- _hashSwapPair = IUniswapV2Factory(_hashSwapRouter.factory()).createPair(address(this),_hashSwapRouter.WETH()) (#741-742)
Event emitted after the call(s):
- ExcludeFromFees(_account,_excluded) (#958)
- setExcludeFromFees(address(this),true) (#748)
- ExcludeFromFees(_account,_excluded) (#958)
- setExcludeFromFees(owner(),true) (#747)
- Transfer(address(0),account,amount) (#657)
- _mint(owner(),1000000000000000000000000) (#749)
Reentrancy in MasterChef.deposit(uint256,uint256) (#1412-1438):
External calls:
- updatePool(_pid) (#1415)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
- safePowerEvocTransfer(msg.sender,pending) (#1419)
- transferSuccess = pwe.transfer(_to,powerevocBal) (#1481)
- transferSuccess = pwe.transfer(_to,_amount) (#1483)
- pool.lpToken.safeTransferFrom(address(msg.sender),address(this),_amount) (#1423)
- pool.lpToken.safeTransfer(feeAddress,depositFee) (#1426)
Event emitted after the call(s):
- Deposit(msg.sender,_pid,_amount) (#1437)
Reentrancy in MasterChef.emergencyWithdraw(uint256) (#1465-1474):
External calls:
- pool.lpToken.safeTransfer(address(msg.sender),user.amount) (#1469)
Event emitted after the call(s):
- EmergencyWithdraw(msg.sender,_pid,user.amount) (#1470)
Reentrancy in POWEREVOC.recoverWrongTokens(address,uint256) (#921-927):
External calls:
- IBEP20(_tokenAddress).transfer(address(msg.sender),_tokenAmount) (#924)
Event emitted after the call(s):
- AdminTokenRecovery(_tokenAddress,_tokenAmount) (#926)
Reentrancy in POWEREVOC.swapAndLiquify(uint256) (#890-901):
External calls:
- swapTokensForEth(half) (#896)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- addLiquidity(otherHalf,newBalance) (#899)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#899)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#673)
- addLiquidity(otherHalf,newBalance) (#899)
- SwapAndLiquify(half,newBalance,otherHalf) (#900)
Reentrancy in POWEREVOC.swapAndLiquifyBuyBack() (#841-865):
External calls:
- BuybackBurn(buybackTokens) (#847)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
- payMarketing(marketingTokens) (#851)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
External calls sending eth:
- payMarketing(marketingTokens) (#851)
- (success) = recipient.call{value: amount}() (#315)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#673)
- payMarketing(marketingTokens) (#851)
- Transfer(sender,recipient,amount) (#650)
- super._transfer(address(this),deadWallet,burningTokens) (#855)
Reentrancy in POWEREVOC.swapAndLiquifyBuyBack() (#841-865):
External calls:
- BuybackBurn(buybackTokens) (#847)
- hashSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokens,0,path,deadWallet,block.timestamp.add(300)) (#881-887)
- payMarketing(marketingTokens) (#851)
- address(marketingFeeReceiver).sendValue(address(this).balance) (#869)
- (success) = recipient.call{value: amount}() (#315)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
- swapAndLiquify(liquidityTokens) (#859)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
- hashSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#911-917)
External calls sending eth:
- payMarketing(marketingTokens) (#851)
- (success) = recipient.call{value: amount}() (#315)
- swapAndLiquify(liquidityTokens) (#859)
- (liquidity) = hashSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#934-941)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#673)
- swapAndLiquify(liquidityTokens) (#859)
- SwapAndLiquify(half,newBalance,otherHalf) (#900)
- swapAndLiquify(liquidityTokens) (#859)
Reentrancy in MasterChef.updateEmissionRate(uint256) (#1507-1511):
External calls:
- massUpdatePools() (#1508)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
Event emitted after the call(s):
- EmissionRateUpdated(msg.sender,powerevocPerBlock,_powerevocPerBlock) (#1509)
Reentrancy in MasterChef.withdraw(uint256,uint256) (#1441-1462):
External calls:
- updatePool(_pid) (#1450)
- pwe.mint(devaddr,powerevocReward.div(10)) (#1405)
- pwe.mint(address(this),powerevocReward) (#1406)
- safePowerEvocTransfer(msg.sender,pending) (#1453)
- transferSuccess = pwe.transfer(_to,powerevocBal) (#1481)
- transferSuccess = pwe.transfer(_to,_amount) (#1483)
- pool.lpToken.safeTransfer(address(msg.sender),_amount) (#1458)
Event emitted after the call(s):
- Withdraw(msg.sender,_pid,_amount) (#1461)
Reentrancy in POWEREVOC.withdrawBNB(address,uint256) (#994-1001):
External calls:
- address(_to).sendValue(_amount) (#999)
Event emitted after the call(s):
- BNBWithdrawn(msg.sender,_to,_amount) (#1000)
Apply the check-effects-interactions pattern.

Additional information: link

POWEREVOC.addLiquidity(uint256,uint256) (#929-943) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(liquidity > 0) (#942)
POWEREVOC.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#1068-1109) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= expiry,TOKEN::delegateBySig: signature expired) (#1107)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#306-310) uses assembly
- INLINE ASM (#308)
Address._verifyCallResult(bool,bytes,string) (#361-374) uses assembly
- INLINE ASM (#366-369)
POWEREVOC.getChainId() (#1227-1231) uses assembly
- INLINE ASM (#1229)
Do not use evm assembly.

Additional information: link

POWEREVOC._transfer(address,address,uint256) (#797-839) compares to a boolean constant:
-swapAndLiquifyEnabled == true && _inSwapAndLiquify == false && address(hashSwapRouter) != address(0) && hashSwapPair != address(0) && sender != hashSwapPair && sender != owner() && recipient != owner() (#800-806)
MasterChef.nonDuplicated(IBEP20) (#1320-1323) compares to a boolean constant:
-require(bool,string)(poolExistence[_lpToken] == false,nonDuplicated: duplicated) (#1321)
Remove the equality to the boolean constant.

Additional information: link

Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#327-329) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#350-352) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#354-359) is never used and should be removed
Address.functionStaticCall(address,bytes) (#339-341) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#343-348) is never used and should be removed
BEP20._burnFrom(address,uint256) (#676-679) is never used and should be removed
Context._msgData() (#449-452) is never used and should be removed
SafeBEP20.safeApprove(IBEP20,address,uint256) (#399-409) is never used and should be removed
SafeBEP20.safeDecreaseAllowance(IBEP20,address,uint256) (#420-430) is never used and should be removed
SafeBEP20.safeIncreaseAllowance(IBEP20,address,uint256) (#411-418) is never used and should be removed
SafeMath.min(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256) (#58-60) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#62-65) is never used and should be removed
SafeMath.sqrt(uint256) (#72-83) is never used and should be removed
Remove unused functions.

Additional information: link

POWEREVOC.sellTaxRate (#698) is set pre-construction with a non-constant function or state variable:
- liquiditySellFee.add(buybackSellFee).add(marketingSellFee).add(burnSellFee)
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

Low level call in Address.sendValue(address,uint256) (#312-317):
- (success) = recipient.call{value: amount}() (#315)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#331-337):
- (success,returndata) = target.call{value: value}(data) (#335)
Low level call in Address.functionStaticCall(address,bytes,string) (#343-348):
- (success,returndata) = target.staticcall(data) (#346)
Low level call in Address.functionDelegateCall(address,bytes,string) (#354-359):
- (success,returndata) = target.delegatecall(data) (#357)
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() (#132) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#133) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#149) is not in mixedCase
Function IUniswapV2Router01.WETH() (#170) is not in mixedCase
Parameter POWEREVOC.setBuyBackToken(address)._tokenAddress (#759) is not in mixedCase
Parameter POWEREVOC.mint(address,uint256)._to (#781) is not in mixedCase
Parameter POWEREVOC.mint(address,uint256)._amount (#781) is not in mixedCase
Parameter POWEREVOC.tradingStatus(bool)._status (#793) is not in mixedCase
Function POWEREVOC.BuybackBurn(uint256) (#872-888) is not in mixedCase
Parameter POWEREVOC.recoverWrongTokens(address,uint256)._tokenAddress (#921) is not in mixedCase
Parameter POWEREVOC.recoverWrongTokens(address,uint256)._tokenAmount (#921) is not in mixedCase
Parameter POWEREVOC.updateMinAmountToLiquify(uint256)._minAmount (#949) is not in mixedCase
Parameter POWEREVOC.setExcludeFromFees(address,bool)._account (#954) is not in mixedCase
Parameter POWEREVOC.setExcludeFromFees(address,bool)._excluded (#954) is not in mixedCase
Parameter POWEREVOC.excludeMultipleAccountsFromFees(address[],bool)._accounts (#961) is not in mixedCase
Parameter POWEREVOC.excludeMultipleAccountsFromFees(address[],bool)._excluded (#961) is not in mixedCase
Parameter POWEREVOC.updateSwapAndLiquifyEnabled(bool)._enabled (#968) is not in mixedCase
Parameter POWEREVOC.updatePWESwapRouter(address)._router (#973) is not in mixedCase
Parameter POWEREVOC.setTxFees(uint256)._transactionFee (#980) is not in mixedCase
Parameter POWEREVOC.setSellFees(uint256,uint256,uint256,uint256)._liquiditySellFee (#985) is not in mixedCase
Parameter POWEREVOC.setSellFees(uint256,uint256,uint256,uint256)._buybackSellFee (#985) is not in mixedCase
Parameter POWEREVOC.setSellFees(uint256,uint256,uint256,uint256)._marketingSellFee (#985) is not in mixedCase
Parameter POWEREVOC.setSellFees(uint256,uint256,uint256,uint256)._burnSellFee (#985) is not in mixedCase
Parameter POWEREVOC.withdrawBNB(address,uint256)._to (#994) is not in mixedCase
Parameter POWEREVOC.withdrawBNB(address,uint256)._amount (#994) is not in mixedCase
Constant POWEREVOC.deadWallet (#702) is not in UPPER_CASE_WITH_UNDERSCORES
Variable POWEREVOC._excludedFromFees (#705) is not in mixedCase
Variable POWEREVOC._isBlacklisted (#706) is not in mixedCase
Variable POWEREVOC._delegates (#1010) is not in mixedCase
Parameter MasterChef.add(uint256,IBEP20,uint16,uint256,bool)._allocPoint (#1327) is not in mixedCase
Parameter MasterChef.add(uint256,IBEP20,uint16,uint256,bool)._lpToken (#1327) is not in mixedCase
Parameter MasterChef.add(uint256,IBEP20,uint16,uint256,bool)._depositFeeBP (#1327) is not in mixedCase
Parameter MasterChef.add(uint256,IBEP20,uint16,uint256,bool)._blockTimePeriod (#1327) is not in mixedCase
Parameter MasterChef.add(uint256,IBEP20,uint16,uint256,bool)._withUpdate (#1327) is not in mixedCase
Parameter MasterChef.set(uint256,uint256,uint16,uint256,bool)._pid (#1347) is not in mixedCase
Parameter MasterChef.set(uint256,uint256,uint16,uint256,bool)._allocPoint (#1347) is not in mixedCase
Parameter MasterChef.set(uint256,uint256,uint16,uint256,bool)._depositFeeBP (#1347) is not in mixedCase
Parameter MasterChef.set(uint256,uint256,uint16,uint256,bool)._blockTimePeriod (#1347) is not in mixedCase
Parameter MasterChef.set(uint256,uint256,uint16,uint256,bool)._withUpdate (#1347) is not in mixedCase
Parameter MasterChef.getMultiplier(uint256,uint256)._from (#1360) is not in mixedCase
Parameter MasterChef.getMultiplier(uint256,uint256)._to (#1360) is not in mixedCase
Parameter MasterChef.pendingPowerEvoc(uint256,address)._pid (#1365) is not in mixedCase
Parameter MasterChef.pendingPowerEvoc(uint256,address)._user (#1365) is not in mixedCase
Parameter MasterChef.updatePool(uint256)._pid (#1390) is not in mixedCase
Parameter MasterChef.deposit(uint256,uint256)._pid (#1412) is not in mixedCase
Parameter MasterChef.deposit(uint256,uint256)._amount (#1412) is not in mixedCase
Parameter MasterChef.withdraw(uint256,uint256)._pid (#1441) is not in mixedCase
Parameter MasterChef.withdraw(uint256,uint256)._amount (#1441) is not in mixedCase
Parameter MasterChef.emergencyWithdraw(uint256)._pid (#1465) is not in mixedCase
Parameter MasterChef.safePowerEvocTransfer(address,uint256)._to (#1477) is not in mixedCase
Parameter MasterChef.safePowerEvocTransfer(address,uint256)._amount (#1477) is not in mixedCase
Parameter MasterChef.dev(address)._devaddr (#1489) is not in mixedCase
Parameter MasterChef.fee(address)._feeAddress (#1495) is not in mixedCase
Parameter MasterChef.updateStartBlock(uint256)._startBlock (#1500) is not in mixedCase
Parameter MasterChef.updateEmissionRate(uint256)._powerevocPerBlock (#1507) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#450)" inContext (#444-453)
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 (#175) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#176)
Prevent variables from having similar names.

Additional information: link

POWEREVOC.constructor() (#734-751) uses literals with too many digits:
- _mint(owner(),1000000000000000000000000) (#749)
POWEREVOC.slitherConstructorConstantVariables() (#684-1232) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#702)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#476-479)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#481-483)
addMinter(address) should be declared external:
- MinterRole.addMinter(address) (#536-538)
removeMinter(address) should be declared external:
- MinterRole.removeMinter(address) (#540-542)
renounceMinter() should be declared external:
- MinterRole.renounceMinter() (#544-546)
decimals() should be declared external:
- BEP20.decimals() (#588-590)
symbol() should be declared external:
- BEP20.symbol() (#592-594)
totalSupply() should be declared external:
- BEP20.totalSupply() (#596-598)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#604-607)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#609-611)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#613-616)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#618-622)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#624-627)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#629-632)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (#634-637)
burn(uint256) should be declared external:
- BEP20.burn(uint256) (#639-642)
setBuyBackToken(address) should be declared external:
- POWEREVOC.setBuyBackToken(address) (#759-762)
mint(address,uint256) should be declared external:
- POWEREVOC.mint(address,uint256) (#781-786)
tradingStatus(bool) should be declared external:
- POWEREVOC.tradingStatus(bool) (#793-795)
isExcludedFromFees(address) should be declared external:
- POWEREVOC.isExcludedFromFees(address) (#945-947)
updateMinAmountToLiquify(uint256) should be declared external:
- POWEREVOC.updateMinAmountToLiquify(uint256) (#949-952)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- POWEREVOC.excludeMultipleAccountsFromFees(address[],bool) (#961-966)
updateSwapAndLiquifyEnabled(bool) should be declared external:
- POWEREVOC.updateSwapAndLiquifyEnabled(bool) (#968-971)
updatePWESwapRouter(address) should be declared external:
- POWEREVOC.updatePWESwapRouter(address) (#973-978)
add(uint256,IBEP20,uint16,uint256,bool) should be declared external:
- MasterChef.add(uint256,IBEP20,uint16,uint256,bool) (#1327-1344)
set(uint256,uint256,uint16,uint256,bool) should be declared external:
- MasterChef.set(uint256,uint256,uint16,uint256,bool) (#1347-1357)
deposit(uint256,uint256) should be declared external:
- MasterChef.deposit(uint256,uint256) (#1412-1438)
withdraw(uint256,uint256) should be declared external:
- MasterChef.withdraw(uint256,uint256) (#1441-1462)
emergencyWithdraw(uint256) should be declared external:
- MasterChef.emergencyWithdraw(uint256) (#1465-1474)
dev(address) should be declared external:
- MasterChef.dev(address) (#1489-1492)
fee(address) should be declared external:
- MasterChef.fee(address) (#1495-1498)
updateStartBlock(uint256) should be declared external:
- MasterChef.updateStartBlock(uint256) (#1500-1504)
updateEmissionRate(uint256) should be declared external:
- MasterChef.updateEmissionRate(uint256) (#1507-1511)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 6% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


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


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


Alexa traffic rank is very low

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for PWE

News for PWE