Our doxxed team brings you the newest Tokenomic on the Smart Chain: REBASE
Our ever-diminishing supply guarantees a constant increase in price!
Paired with 8% CAKE Rewards, UPCake is the next 1000X!
Earn NFTs by staking: UpStake will allow holders to stake their tokens and earn NFTs. The
The longer you stake, the higher your chances of earning a rare NFT! NFTs can be used to increase your APY on UpStake vaults!
Tokenomics: Total Tax - 15%
Cake Rewards: 8% - Automatically distributed every 5 hours
Marketing: 4% - To ensure perennial growth
Development: 2% - For the development of our staking vaults, NFT collections, and the constant monitoring of the Rebase function
LP: 1% - For a healthier liquidity74,653,695,134,965.838
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
UPCAKE.swapBack() (#715-763) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#746)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in UPCAKE._transferFrom(address,address,uint256) (#569-618):
External calls:
- swapBack() (#597)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#728-734)
- distributor.deposit{value: amountBNBReflection}() (#745)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#746)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
External calls sending eth:
- swapBack() (#597)
- distributor.deposit{value: amountBNBReflection}() (#745)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#746)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#600)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#603)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#602)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#652)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#322-333) ignores return value by RWRD.transfer(shareholder,amount) (#328)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
UPCAKE.swapBack().tmpSuccess (#746) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
tmpSuccess = false (#750)
Fix or remove the writes.
Additional information: link
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.
UPCAKE.slitherConstructorVariables() (#366-949) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(2) (#445)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- RWRD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shares[shareholder].amount = amount (#267)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#268)
Apply the check-effects-interactions pattern.
Additional information: link
UPCAKE.manage_blacklist(address[],bool).i (#704) 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
UPCAKE.swapBack() (#715-763) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
Ensure that all the return values of the function calls are used.
Additional information: link
UPCAKE.setMaster(address) (#830-832) should emit an event for:
- master = _master (#831)
Emit an event for critical parameter changes.
Additional information: link
UPCAKE.setMaxTxPercent_base1000(uint256) (#892-894) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#893)
Emit an event for critical parameter changes.
Additional information: link
UPCAKE.setMaster(address)._master (#830) lacks a zero-check on :
- master = _master (#831)
Check that the address is not zero.
Additional information: link
UPCAKE.multiTransfer_fixed(address,address[],uint256) (#926-945) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#937)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- RWRD.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- addShareholder(shareholder) (#261)
- shareholderIndexes[shareholder] = shareholders.length (#355)
- removeShareholder(shareholder) (#263)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#361)
- addShareholder(shareholder) (#261)
- shareholders.push(shareholder) (#356)
- removeShareholder(shareholder) (#263)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#360)
- shareholders.pop() (#362)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#266)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in UPCAKE.swapBack() (#715-763):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#728-734)
- distributor.deposit{value: amountBNBReflection}() (#745)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#746)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#745)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#746)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#761)
Apply the check-effects-interactions pattern.
Additional information: link
UPCAKE._transferFrom(address,address,uint256) (#569-618) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#585)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#291-315) has costly operations inside a loop:
- currentIndex ++ (#312)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMathInt.sub(int256,int256) (#59-63) is never used and should be removed
Remove unused functions.
Additional information: link
UPCAKE.totalFee (#391) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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.7.4 (#3) allows old versions
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 UPCAKE.swapBack() (#715-763):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#746)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#747)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable UPCAKE._maxWalletToken (#445) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#152) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#153)
Prevent variables from having similar names.
Additional information: link
UPCAKE.slitherConstructorVariables() (#366-949) uses literals with too many digits:
- distributorGas = 500000 (#416)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#43) is never used in SafeMathInt (#41-75)
Remove unused state variables.
Additional information: link
UPCAKE.ZERO (#372) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
rescueToken(address,uint256) should be declared external:
- UPCAKE.rescueToken(address,uint256) (#860-862)
Use the external attribute for functions never called from the contract.
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
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit 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 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
Twitter account link seems to be invalid
Unable to find Discord account