RecoveryDAO Token Logo

REC [RecoveryDAO] Token

About REC

Listings

Token 16 months
CoinGecko 13 months
CoinMarketCap 13 months
white paper

What is the project about?

decentralized crowdfunding protocol driven by the community

8. REC is the only token issued by RecoveryDAO. Recovery’ goal is to create a credible value asset for Web3 and to help onboard users into a decentralized, democratized economy, with the additional goal of becoming the reserve currency for DeFi, which is one of the ways we can achieve economic recovery.

What makes your project unique?

Recovery is a decentralized crowdfunding protocol driven by the community. In order to consolidate the value of its token REC, the DAO continuously destroys the deflationary token through the protocol, so that it still has intrinsic value to support it even if it falls. Recovery brings unique economic and game theory dynamics to the market through staking and crowdfunding

History of your project.

Nobody. Recovery is governed by the DAO, so all decisions are discussed by community members in the Discord community, and after the proposal is proposed, the nodes jointly vote to decide

What’s next for your project?

What can your token be used for?
Recovery mainly provides two strategies for participants to use: staking and crowdfunding. Pledgers pledge their REC-USDT LP to obtain ecological dividend income, while crowdfunding participants help to burn REC tokens through a decentralized protocol, thereby obtaining contribution rewards set by the protocol. Those who want to participate in governance together can join the community discord. We welcome new members to join and contribute to Recovery together!

Social

Laser Scorebeta Last Audit: 10 March 2023

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links

REC.swapAndLiquify(uint256) (#654-669) ignores return value by _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
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...)

Contract locking ether found:
Contract REC (#407-746) has payable functions:
- REC.receive() (#582)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

REC._tokenTransfer(address,address,uint256,bool).rate (#706) 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

Variable REC._fundAddress (#449) is not in mixedCase
Variable REC._usdt (#436) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#182) is not in mixedCase
Parameter REC.setSwapAndLiquifyEnabled(bool)._enabled (#566) is not in mixedCase
Parameter REC.setTokenDividendEnabled(bool)._enabled (#572) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#232) is not in mixedCase
Variable Ownable._owner (#143) is not in mixedCase
Variable REC._tokenDistributor (#438) is not in mixedCase
Parameter REC.setFundAddress(address)._addr (#577) is not in mixedCase
Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#180) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#200) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#237) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#238)
Prevent variables from having similar names.

Additional information: link

REC.slitherConstructorVariables() (#407-746) uses literals with too many digits:
- _destroyAddress = 0x000000000000000000000000000000000000dEaD (#448)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

REC.minDivToken (#446) is never used in REC (#407-746)
REC._tOwned (#411) is never used in REC (#407-746)
Remove unused state variables.

Additional information: link

REC._destroyAddress (#448) should be constant
REC._symbol (#417) should be constant
REC._decimals (#418) should be constant
REC._name (#416) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-Transfer(sender,address(this),tAmount.div(100).mul(3)) (#716)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-Transfer(sender,_destroyAddress,tAmount.div(100).mul(2)) (#721)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-_rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(5)) (#727-729)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-Transfer(sender,recipient,tAmount.div(100).mul(recipientRate)) (#739)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-_rOwned[address(this)] = _rOwned[address(this)].add(rAmount.div(100).mul(3)) (#713-715)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-_rOwned[recipient] = _rOwned[recipient].add(rAmount.div(100).mul(recipientRate)) (#736-738)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-_rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(2)) (#718-720)
REC._tokenTransfer(address,address,uint256,bool) (#701-743) performs a multiplication on the result of a division:
-Transfer(sender,_destroyAddress,tAmount.div(100).mul(5)) (#730)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in REC._transfer(address,address,uint256) (#609-652):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#630)
- router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(_tokenDistributor),block.timestamp) (#677-683)
- _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,false) (#644)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#705)
- _rOwned[address(this)] = _rOwned[address(this)].add(rAmount.div(100).mul(3)) (#713-715)
- _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(2)) (#718-720)
- _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(5)) (#727-729)
- _rOwned[recipient] = _rOwned[recipient].add(rAmount.div(100).mul(recipientRate)) (#736-738)
- _tokenTransfer(from,to,amount,false) (#647)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#705)
- _rOwned[address(this)] = _rOwned[address(this)].add(rAmount.div(100).mul(3)) (#713-715)
- _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(2)) (#718-720)
- _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(5)) (#727-729)
- _rOwned[recipient] = _rOwned[recipient].add(rAmount.div(100).mul(recipientRate)) (#736-738)
- _tokenTransfer(from,to,amount,true) (#649)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#705)
- _rOwned[address(this)] = _rOwned[address(this)].add(rAmount.div(100).mul(3)) (#713-715)
- _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(2)) (#718-720)
- _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount.div(100).mul(5)) (#727-729)
- _rOwned[recipient] = _rOwned[recipient].add(rAmount.div(100).mul(recipientRate)) (#736-738)
Apply the check-effects-interactions pattern.

Additional information: link

TokenDistributor.constructor(address) (#402-404) ignores return value by IERC20(token).approve(msg.sender,uint256(~ uint256(0))) (#403)
REC.addLiquidity(uint256,uint256) (#686-699) ignores return value by router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
REC.constructor() (#465-496) ignores return value by _usdt.approve(address(router),MAX) (#485)
Ensure that all the return values of the function calls are used.

Additional information: link

Ownable.changeOwner(address) (#153-155) should emit an event for:
- _owner = newOwner (#154)
Emit an event for critical parameter changes.

Additional information: link

Ownable.changeOwner(address).newOwner (#153) lacks a zero-check on :
- _owner = newOwner (#154)
REC.setFundAddress(address)._addr (#577) lacks a zero-check on :
- _fundAddress = _addr (#578)
Check that the address is not zero.

Additional information: link

Reentrancy in REC.transferFrom(address,address,uint256) (#531-535):
External calls:
- _transfer(sender,recipient,amount) (#532)
- router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(_tokenDistributor),block.timestamp) (#677-683)
- _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#533)
- _allowances[owner][spender] = amount (#605)
Reentrancy in REC._transfer(address,address,uint256) (#609-652):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#630)
- router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(_tokenDistributor),block.timestamp) (#677-683)
- _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
State variables written after the call(s):
- _isAlladdr[from] = true (#634)
- _isAlladdr[to] = true (#639)
- allAddr.push(from) (#635)
- allAddr.push(to) (#640)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in REC.swapAndLiquify(uint256) (#654-669):
External calls:
- swapTokensForUsdt(half) (#661)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(_tokenDistributor),block.timestamp) (#677-683)
- _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
- addLiquidity(otherHalf,newBalance) (#666)
- router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#668)
Reentrancy in REC._transfer(address,address,uint256) (#609-652):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (#630)
- router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(_tokenDistributor),block.timestamp) (#677-683)
- _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
Event emitted after the call(s):
- Transfer(sender,address(this),tAmount.div(100).mul(3)) (#716)
- _tokenTransfer(from,to,amount,true) (#649)
- Transfer(sender,address(this),tAmount.div(100).mul(3)) (#716)
- _tokenTransfer(from,to,amount,false) (#647)
- Transfer(sender,address(this),tAmount.div(100).mul(3)) (#716)
- _tokenTransfer(from,to,amount,false) (#644)
- Transfer(sender,_destroyAddress,tAmount.div(100).mul(2)) (#721)
- _tokenTransfer(from,to,amount,false) (#647)
- Transfer(sender,_destroyAddress,tAmount.div(100).mul(2)) (#721)
- _tokenTransfer(from,to,amount,false) (#644)
- Transfer(sender,_destroyAddress,tAmount.div(100).mul(2)) (#721)
- _tokenTransfer(from,to,amount,true) (#649)
- Transfer(sender,_destroyAddress,tAmount.div(100).mul(5)) (#730)
- _tokenTransfer(from,to,amount,false) (#647)
- Transfer(sender,_destroyAddress,tAmount.div(100).mul(5)) (#730)
- _tokenTransfer(from,to,amount,false) (#644)
- Transfer(sender,_destroyAddress,tAmount.div(100).mul(5)) (#730)
- _tokenTransfer(from,to,amount,true) (#649)
- Transfer(sender,recipient,tAmount.div(100).mul(recipientRate)) (#739)
- _tokenTransfer(from,to,amount,false) (#644)
- Transfer(sender,recipient,tAmount.div(100).mul(recipientRate)) (#739)
- _tokenTransfer(from,to,amount,false) (#647)
- Transfer(sender,recipient,tAmount.div(100).mul(recipientRate)) (#739)
- _tokenTransfer(from,to,amount,true) (#649)
Reentrancy in REC.transferFrom(address,address,uint256) (#531-535):
External calls:
- _transfer(sender,recipient,amount) (#532)
- router.addLiquidity(address(this),address(_usdt),0,0,tokenAmount,ethAmount,_fundAddress,block.timestamp) (#689-698)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(_tokenDistributor),block.timestamp) (#677-683)
- _usdt.transferFrom(address(_tokenDistributor),address(this),newBalance) (#665)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#606)
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#533)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#118-139) uses assembly
- INLINE ASM (#131-134)
Address.isContract(address) (#82-91) uses assembly
- INLINE ASM (#89)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (#93-99) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#109-111) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#73-76) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#113-116) is never used and should be removed
SafeMath.mod(uint256,uint256) (#69-71) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#118-139) is never used and should be removed
Address.isContract(address) (#82-91) is never used and should be removed
Address.functionCall(address,bytes,string) (#105-107) is never used and should be removed
Address.functionCall(address,bytes) (#101-103) is never used and should be removed
Remove unused functions.

Additional information: link

REC._rTotal (#422) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
REC.numTokensSellToAddToLiquidity (#433) is set pre-construction with a non-constant function or state variable:
- 100 * 10 ** _decimals
REC.minDivToken (#446) is set pre-construction with a non-constant function or state variable:
- 100 * 10 ** _decimals
REC._tTotal (#421) is set pre-construction with a non-constant function or state variable:
- 1000 * 10 ** 4 * 10 ** _decimals
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) (#93-99):
- (success) = recipient.call{value: amount}() (#97)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#118-139):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

name() should be declared external:
- REC.name() (#497-499)
setTokenDividendEnabled(bool) should be declared external:
- REC.setTokenDividendEnabled(bool) (#572-575)
isExcludedFromFee(address) should be declared external:
- REC.isExcludedFromFee(address) (#597-599)
setSwapAndLiquifyEnabled(bool) should be declared external:
- REC.setSwapAndLiquifyEnabled(bool) (#566-569)
decimals() should be declared external:
- REC.decimals() (#505-507)
setFundAddress(address) should be declared external:
- REC.setFundAddress(address) (#577-579)
transfer(address,uint256) should be declared external:
- REC.transfer(address,uint256) (#517-520)
totalSupply() should be declared external:
- REC.totalSupply() (#509-511)
approve(address,uint256) should be declared external:
- REC.approve(address,uint256) (#526-529)
decreaseAllowance(address,uint256) should be declared external:
- REC.decreaseAllowance(address,uint256) (#542-545)
allowance(address,address) should be declared external:
- REC.allowance(address,address) (#522-524)
includeInFee(address) should be declared external:
- REC.includeInFee(address) (#561-563)
changeOwner(address) should be declared external:
- Ownable.changeOwner(address) (#153-155)
transferFrom(address,address,uint256) should be declared external:
- REC.transferFrom(address,address,uint256) (#531-535)
excludeFromFee(address) should be declared external:
- REC.excludeFromFee(address) (#557-559)
symbol() should be declared external:
- REC.symbol() (#501-503)
increaseAllowance(address,uint256) should be declared external:
- REC.increaseAllowance(address,uint256) (#537-540)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 number of swaps.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find Youtube account


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


Token is not listed at Mobula.Finance

Additional information: link


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 scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for REC

News for REC