A token that rewards BUSD to its holders. It's use-case is like a hedge fund wherein we take a portion of the tax to invest on other ventures such as forex, memecoins, altcoins (futures trading), and use portion of the profits to buyback POW tokens, creating a sustainable passive income for everyone
POW.buyTokens(uint256,address) (#698-709) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#703-708)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in POW._transferFrom(address,address,uint256) (#541-568):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#543)
- swapBack() (#550)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#632-638)
- distributor.deposit{value: amountBNBReflection}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#654-661)
- triggerAutoBuyback() (#551)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#703-708)
External calls sending eth:
- swapBack() (#550)
- distributor.deposit{value: amountBNBReflection}() (#648)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#649)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#654-661)
- triggerAutoBuyback() (#551)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#703-708)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#555)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#559)
- amountReceived = takeFee(sender,recipient,amount) (#557)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#609)
- triggerAutoBuyback() (#551)
- inSwap = true (#475)
- inSwap = false (#475)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#363-374) ignores return value by BUSD.transfer(shareholder,amount) (#369)
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) (#296-310):
External calls:
- distributeDividend(shareholder) (#298)
- BUSD.transfer(shareholder,amount) (#369)
State variables written after the call(s):
- shares[shareholder].amount = amount (#308)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#309)
Apply the check-effects-interactions pattern.
Additional information: link
POW.swapBack() (#622-664) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#654-661)
Ensure that all the return values of the function calls are used.
Additional information: link
POW.setTargetLiquidity(uint256,uint256) (#780-783) should emit an event for:
- targetLiquidity = _target (#781)
- targetLiquidityDenominator = _denominator (#782)
Emit an event for critical parameter changes.
Additional information: link
POW.setFeeReceivers(address,address)._marketingFeeReceiver (#770) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#772)
Check that the address is not zero.
Additional information: link
Reentrancy in POW.triggerZeusBuyback(uint256,bool) (#674-680):
External calls:
- buyTokens(amount,DEAD) (#675)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#703-708)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#677)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in POW.triggerZeusBuyback(uint256,bool) (#674-680):
External calls:
- buyTokens(amount,DEAD) (#675)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#703-708)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#678)
Apply the check-effects-interactions pattern.
Additional information: link
POW.isOverLiquified(uint256,uint256) (#802-804) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#803)
Avoid relying on block.timestamp.
Additional information: link
POW.onlyBuybacker() (#515) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#515)
Remove the equality to the boolean constant.
Additional information: link
DividendDistributor.process(uint256) (#332-356) has costly operations inside a loop:
- currentIndex ++ (#353)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMath.trySub(uint256,uint256) (#19-24) is never used and should be removed
Remove unused functions.
Additional information: link
POW.swapThreshold (#469) 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
Reentrancy in POW.swapBack() (#622-664):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#649)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#648)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#649)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#654-661)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#662)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#183) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#184)
Prevent variables from having similar names.
Additional information: link
POW.slitherConstructorVariables() (#407-809) uses literals with too many digits:
- distributorGas = 500000 (#466)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
POW.DEAD_NON_CHECKSUM (#415) is never used in POW (#407-809)
Remove unused state variables.
Additional information: link
POW._totalSupply (#421) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
launch() should be declared external:
- POW.launch() (#731-735)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (Project: One Whale) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
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.
solc-0.8.0 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 POW._allowances (#425) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
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
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
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
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid