Audit Date: 12/17/2022
Audit Score
Overall Audit Score
90%Backdoors
100%Fees
70%Smart Contract Complexity
100%Team Trust
90%Launch Date
Social Links
Audited by the WatchDogs Team.
Summary
Cronos Cash is a dApp that claims to provide 6% Weekly Interest.
It is different from other ROI dAPPs with their Contract Reinjections, NFTs, and Hardware mining to provide a percent return to participating users.
Cronos Cash is also deploying Hardware to their NFT Holders and splits profits 50/50 with the Holders.
That Information can be found in their Discord Server, CLICK HERE
This Contract relies on new deposits to maintain the variable APY percentage. If the contract balance reaches 0, the interest will not be paid out. Cronos Cash Reinjects into their contract to prevent the balance from reaching 0
Fork Type :
The website is similar to BakedBeans.
Contract Details
Chain | Cronos |
Token | CRO |
dApp Type: | ROI dApp / NFT / Hardware Mining |
Weekly ROI Percent | 6% |
Minimum Deposit | 1 CRO |
Maximum Deposit | None |
Reward Accumulation Cut Off | 16 Days |
Referrals | Yes |
Owner Privileges
seedMarket | Starts the smart contract and allows deposits & withdrawals. This is OK. |
councilIntervention | Allows owner to increase/decrease reward rates by 10%. 2 Week Cooldown |
function seedMarket() public payable onlyOwner {
require(marketTime == 0, "Bad init: already initialized");
require(msg.value == 1 ether, "Bad init: amount of CRO");
marketTime = TIME_PER_KEEPER.mul(100000);
}
function councilIntervention(uint256 interventionType) public onlyOwner {
require(block.timestamp >= nextInterventionUNIX, "Cannot intervene yet!");
require(interventionType <= 2, "Unrecognized type of intervention.");
nextInterventionUNIX = SafeMath.add(block.timestamp, interventionStep);
// interventionType == 0: waive (in balanced market)
if(interventionType == 1) { // boost for new entrants (in recessionary market)
marketTime = marketTime.mul(11).div(10);
}
if(interventionType == 2) { // burn (in very expansionary market)
marketTime = marketTime.mul(9).div(10);
}
}
Fees
Deposit Fees | |
1% | Marketing |
1% | Reinjection Contract |
1% | R&D |
uint256 constant public councilFee = 3; // 3%
function fabricateTime(address ref) public payable checkLaunchTime {
uint256 timeBought = calculateTimeBuy(msg.value,SafeMath.sub(address(this).balance,msg.value));
timeBought = SafeMath.sub(timeBought,getCouncilFee(timeBought));
uint256 fee = getCouncilFee(msg.value);
treasuryWallet.transfer(fee.div(3));
marketingWallet.transfer(fee.div(3));
devWallet2.transfer(fee.div(3));
Withdrawal Fees
Withdrawal Fees | |
1% | Marketing |
1% | Reinjection Contract |
1% | R&D |
uint256 constant public councilFee = 3; // 3%
function desyncTime() public checkLaunchTime {
uint256 hasTime = getMyTime(msg.sender);
uint256 timeValue = calculateTimeSell(hasTime);
uint256 fee = getCouncilFee(timeValue);
claimedTime[msg.sender] = 0;
lastConstruct[msg.sender] = block.timestamp;
marketTime = SafeMath.add(marketTime,hasTime);
treasuryWallet.transfer(fee.div(3));
marketingWallet.transfer(fee.div(3));
devWallet2.transfer(fee.div(3));
Trust
Disclaimer
DYOR – Please do your own research and only invest in what you can afford to lose. This contract has been manually audited by the WatchDogs.cc team for the specified smart contract address.