RISE 2 PROTOCOL is a community-based token developed by RISE 2 PROTOCOL Team. The RISE 2 PROTOCOL is a fully decentralized BEP20 token on the Binance Smart Chain that rewards investors with every transaction while at the same time pays into liquidity.
RISE2PROTOCOL is a token directly linked to DeFI. RISE2PROTOCOL is a $RISE rewards token celebrating the EVERRISE Ecosystem . RISE2PROTOCOL allows you to receive $RISE directly in your wallet without doing anything !
Receive 6% $RISE rewards on each transaction. RISE2PROTOCOL Team are also working on a NFT COLLECTION!
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
RISE2PROTOCOL.swapBack() (#648-695) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in RISE2PROTOCOL._transferFrom(address,address,uint256) (#583-624):
External calls:
- swapBack() (#593)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#658-664)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
External calls sending eth:
- swapBack() (#593)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#601)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#609)
- finalAmount = takeFee(sender,recipient,amount) (#608)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#638)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#278-289) ignores return value by RewardToken.transfer(shareholder,amount) (#284)
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.
RISE2PROTOCOL.swapBack().tmpSuccess (#678) is written in both
(tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
tmpSuccess = false (#681)
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.
DividendDistributor.setDistributionCriteria(uint256,uint256) (#207-210) should emit an event for:
- minPeriod = newMinPeriod (#208)
- minDistribution = newMinDistribution (#209)
RISE2PROTOCOL.changeFees(uint256,uint256,uint256,uint256) (#541-549) should emit an event for:
- liquidityFee = newLiqFee (#542)
- rewardsFee = newRewardFee (#543)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#547)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#548)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#278-289):
External calls:
- RewardToken.transfer(shareholder,amount) (#284)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#286)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#287)
Reentrancy in DividendDistributor.process(uint256) (#249-271):
External calls:
- distributeDividend(shareholders[currentIndex]) (#263)
- RewardToken.transfer(shareholder,amount) (#284)
State variables written after the call(s):
- currentIndex ++ (#268)
Reentrancy in DividendDistributor.setShare(address,uint256) (#212-227):
External calls:
- distributeDividend(shareholder) (#215)
- RewardToken.transfer(shareholder,amount) (#284)
State variables written after the call(s):
- shares[shareholder].amount = amount (#225)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#226)
Apply the check-effects-interactions pattern.
Additional information: link
RISE2PROTOCOL.swapBack() (#648-695) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
Ensure that all the return values of the function calls are used.
Additional information: link
Auth.transferOwnership(address).adr (#378) lacks a zero-check on :
- owner = adr (#379)
RISE2PROTOCOL.changeFeeReceivers(address,address).newLiquidityReceiver (#551) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#552)
RISE2PROTOCOL.changeFeeReceivers(address,address).newMarketingWallet (#551) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#553)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#278-289) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (#284)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in RISE2PROTOCOL._transferFrom(address,address,uint256) (#583-624):
External calls:
- swapBack() (#593)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#658-664)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
External calls sending eth:
- swapBack() (#593)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
State variables written after the call(s):
- launch() (#597)
- launchedAt = block.number (#507)
Reentrancy in RISE2PROTOCOL.constructor() (#445-475):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#448)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#449)
- _balances[msg.sender] = _totalSupply (#473)
- autoLiquidityReceiver = 0x529C0C05dd19b80BCd1bac6EfE3b354eBF34639A (#466)
- dividendDistributor = new DividendDistributor(address(router)) (#451)
- isDividendExempt[pair] = true (#459)
- isDividendExempt[msg.sender] = true (#460)
- isDividendExempt[address(this)] = true (#461)
- isDividendExempt[DEAD] = true (#462)
- isDividendExempt[ZERO] = true (#463)
- isFeeExempt[msg.sender] = true (#453)
- isFeeExempt[address(this)] = true (#454)
- isTxLimitExempt[msg.sender] = true (#456)
- isTxLimitExempt[pair] = true (#457)
- marketingWallet = 0xf8d577fe84a08C6c5E5798e008EeC9F10A19e1A2 (#467)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#470)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#471)
Reentrancy in DividendDistributor.deposit() (#229-247):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#237-242)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#246)
- totalDividends = totalDividends.add(amount) (#245)
Reentrancy in DividendDistributor.distributeDividend(address) (#278-289):
External calls:
- RewardToken.transfer(shareholder,amount) (#284)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#285)
Reentrancy in DividendDistributor.setShare(address,uint256) (#212-227):
External calls:
- distributeDividend(shareholder) (#215)
- RewardToken.transfer(shareholder,amount) (#284)
State variables written after the call(s):
- addShareholder(shareholder) (#219)
- shareholderIndexes[shareholder] = shareholders.length (#313)
- removeShareholder(shareholder) (#221)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#319)
- addShareholder(shareholder) (#219)
- shareholders.push(shareholder) (#314)
- removeShareholder(shareholder) (#221)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#318)
- shareholders.pop() (#320)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#224)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in RISE2PROTOCOL._transferFrom(address,address,uint256) (#583-624):
External calls:
- swapBack() (#593)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#658-664)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
- dividendDistributor.setShare(sender,_balances[sender]) (#613)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#617)
- dividendDistributor.process(distributorGas) (#620)
External calls sending eth:
- swapBack() (#593)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (#622)
Reentrancy in RISE2PROTOCOL._transferFrom(address,address,uint256) (#583-624):
External calls:
- swapBack() (#593)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#658-664)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
External calls sending eth:
- swapBack() (#593)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#639)
- finalAmount = takeFee(sender,recipient,amount) (#608)
Reentrancy in RISE2PROTOCOL.constructor() (#445-475):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#448)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#474)
Reentrancy in RISE2PROTOCOL.swapBack() (#648-695):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#658-664)
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#674)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#685-692)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#693)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#273-276) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#274-275)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#249-271) has costly operations inside a loop:
- currentIndex = 0 (#260)
DividendDistributor.distributeDividend(address) (#278-289) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#283)
DividendDistributor.process(uint256) (#249-271) has costly operations inside a loop:
- currentIndex ++ (#268)
Use a local variable to hold the loop computation result.
Additional information: link
RISE2PROTOCOL._maxTxAmount (#401) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 2 / 800
RISE2PROTOCOL._walletMax (#402) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 2 / 100
RISE2PROTOCOL.swapThreshold (#437) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 5 / 4000
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 (#48) 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 RISE2PROTOCOL.swapBack() (#648-695):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#678)
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() (#107) is not in mixedCase
Variable DividendDistributor._token (#163) is not in mixedCase
Variable DividendDistributor.RewardToken (#173) is not in mixedCase
Constant RISE2PROTOCOL._name (#391) is not in UPPER_CASE_WITH_UNDERSCORES
Constant RISE2PROTOCOL._symbol (#392) is not in UPPER_CASE_WITH_UNDERSCORES
Constant RISE2PROTOCOL._decimals (#393) is not in UPPER_CASE_WITH_UNDERSCORES
Variable RISE2PROTOCOL.DEAD (#395) is not in mixedCase
Variable RISE2PROTOCOL.ZERO (#396) is not in mixedCase
Variable RISE2PROTOCOL.RewardToken (#398) is not in mixedCase
Variable RISE2PROTOCOL._totalSupply (#400) is not in mixedCase
Variable RISE2PROTOCOL._maxTxAmount (#401) is not in mixedCase
Variable RISE2PROTOCOL._walletMax (#402) is not in mixedCase
Variable RISE2PROTOCOL._balances (#406) is not in mixedCase
Variable RISE2PROTOCOL._allowances (#407) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#112) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#113)
Prevent variables from having similar names.
Additional information: link
RISE2PROTOCOL.slitherConstructorVariables() (#387-700) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#395)
RISE2PROTOCOL.slitherConstructorVariables() (#387-700) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#396)
RISE2PROTOCOL.slitherConstructorVariables() (#387-700) uses literals with too many digits:
- distributorGas = 500000 (#431)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
RISE2PROTOCOL.RewardToken (#398) is never used in RISE2PROTOCOL (#387-700)
Remove unused state variables.
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#184) should be constant
DividendDistributor.routerAddress (#172) should be constant
RISE2PROTOCOL.DEAD (#395) should be constant
RISE2PROTOCOL.RewardToken (#398) should be constant
RISE2PROTOCOL.ZERO (#396) should be constant
RISE2PROTOCOL._totalSupply (#400) should be constant
RISE2PROTOCOL.routerAddress (#397) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#350-352)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#357-359)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#378-382)
getCirculatingSupply() should be declared external:
- RISE2PROTOCOL.getCirculatingSupply() (#485-487)
tradingStatus(bool) should be declared external:
- RISE2PROTOCOL.tradingStatus(bool) (#644-646)
Use the external attribute for functions never called from the contract.
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 15% buy tax and 14% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Token is deployed only at one blockchain
Unable to crawl data from the website
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 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
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
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
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