// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// Froggy Friends by Fonzy & Mayan (www.froggyfriendsnft.com) Stake Froggies
//...................................................@@@@@........................
//.......................%@@@@@@@@@*.............@@@@#///(@@@@@...................
//....................@@@&(//(//(/(@@@.........&@@////////////@@@.................
//....................@@@//////////////@@@@@@@@@@@@/////@@@@/////@@@..............
//..................%@@/////@@@@@(////////////////////%@@@@/////#@@...............
//..................@@%//////@@@#///////////////////////////////@@@...............
//..................@@@/////////////////////////////////////////@@@@..............
//..................@@(///////////////(///////////////(////////////@@@............
//...............*@@/(///////////////&@@@@@@(//(@@@@@@/////////////#@@............
//...............@@////////////////////////(%&&%(///////////////////@@@...........
//..............@@@/////////////////////////////////////////////////&@@...........
//..............@@(/////////////////////////////////////////////////@@#...........
//..............@@@////////////////////////////////////////////////@@@............
//...............@@@/////////////////////////////////////////////#@@/.............
//................&@@@//////////////////////////////////////////@@@...............
//..................*@@@%////////////////////////////////////@@@@.................
//...............@@@@///////////////////////////////////////(@@@..................
//............%@@@////////////////............/////////////////@@@................
//..........%@@#/////////////..................... (/////////////@@@..............
//.........@@@////////////............................////////////@@@.............
//........@@(///////(@@@................................(@@&///////&@@............
//.......@@////////@@@....................................@@@///////@@@...........
//......@@@///////@@@.......................................@@///////@@%..........
//.....(@@///////@@@.........................................@@/////(/@@..........
// Development help from Lexi
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
interface IFroggyFriends {
function ownerOf(uint256 tokenId) external view returns (address);
function transferFrom(address from, address to, uint256 tokenId) external;
}
interface IRibbit {
function mint(address add, uint256 amount) external;
}
interface IErc20 {
function transfer(address to, uint256 amount) external returns (bool);
function balanceOf(address account) external view returns (uint256);
}
interface IRibbitItem {
function burn(address from, uint256 id, uint256 amount) external;
function balanceOf(address account, uint256 id) external view returns (uint256);
function isBoost(uint256 id) external view returns (bool);
function boostPercentage(uint256 id) external view returns (uint256);
}
contract StakeFroggies is IERC721Receiver, Ownable {
using Strings for uint256;
IFroggyFriends froggyFriends;
IRibbit ribbit;
IErc20 ierc20;
IRibbitItem ribbitItem;
bool public started = true;
bytes32 public root = 0x339f267449a852acfbd5c472061a8fc4941769c9a3a9784778e7e95f9bb8f18d;
uint256[] public rewardTiers = [20, 30, 40, 75, 150];
mapping(uint256 => mapping(address => uint256)) private idToStartingTime;
mapping(address => uint256[]) froggiesStaked;
mapping(uint256 => uint256) idTokenRate;
mapping(uint256 => address) idToStaker;
mapping(uint256 => bool) boosted;
mapping(uint256 => uint256) defaultRate;
mapping(uint256 => uint256) boostedRate;
constructor(address _froggyFriends) {
froggyFriends = IFroggyFriends(_froggyFriends);
}
function isValid(bytes32[] memory proof, string memory numstr) internal view returns (bool) {
bytes32 leaf = keccak256(abi.encodePacked(numstr));
return MerkleProof.verify(proof, root, leaf);
}
function getTokenRewardRate(uint256 froggyId, bytes32[] memory proof) public view returns (uint256) {
for (uint256 i; i < rewardTiers.length; i++) {
string memory numstring = string(abi.encodePacked(froggyId.toString(), rewardTiers[i].toString()));
if (isValid(proof, numstring) == true) {
return rewardTiers[i];
}
}
return 0;
}
function stake(uint256[] memory froggyIds, bytes32[][] memory proof) external {
require(started == true, "$RIBBIT staking paused");
uint256[] memory _froggyIds = new uint256[](froggyIds.length);
_froggyIds = froggyIds;
for (uint256 i; i < _froggyIds.length; i++) {
require(froggyFriends.ownerOf(_froggyIds[i]) == msg.sender, "Not your Froggy Friend");
idToStartingTime[_froggyIds[i]][msg.sender] = block.timestamp;
froggyFriends.transferFrom(msg.sender, address(this), _froggyIds[i]);
idToStaker[_froggyIds[i]] = msg.sender;
idTokenRate[_froggyIds[i]] = getTokenRewardRate(_froggyIds[i], proof[i]);
froggiesStaked[msg.sender].push(_froggyIds[i]);
}
}
function unStake(uint256[] memory froggyIds) external {
uint256[] memory _froggyIds = new uint256[](froggyIds.length);
_froggyIds = froggyIds;
for (uint256 i; i < _froggyIds.length; i++) {
require(idToStaker[_froggyIds[i]] == msg.sender, "Not your Froggy Friend");
froggyFriends.transferFrom(address(this), msg.sender, _froggyIds[i]);
for (uint256 j; j < froggiesStaked[msg.sender].length; j++) {
if (froggiesStaked[msg.sender][j] == _froggyIds[i]) {
froggiesStaked[msg.sender][j] = froggiesStaked[msg.sender][froggiesStaked[msg.sender].length - 1];
froggiesStaked[msg.sender].pop();
break;
}
}
uint256 current;
uint256 reward;
delete idToStaker[_froggyIds[i]];
if (idToStartingTime[_froggyIds[i]][msg.sender] > 0) {
if (boosted[_froggyIds[i]] == false) {
uint256 rate = idTokenRate[_froggyIds[i]];
current = block.timestamp - idToStartingTime[_froggyIds[i]][msg.sender];
reward = ((rate * 10**18) * current) / 86400;
ribbit.mint(msg.sender, reward);
idToStartingTime[_froggyIds[i]][msg.sender] = 0;
}
if (boosted[_froggyIds[i]] == true) {
uint256 rate = boostedRate[_froggyIds[i]];
current = block.timestamp - idToStartingTime[_froggyIds[i]][msg.sender];
reward = (((rate * 10**18) / 1000) * current) / 86400;
ribbit.mint(msg.sender, reward);
idToStartingTime[_froggyIds[i]][msg.sender] = 0;
}
}
}
}
function setRewardTierAndRoot(uint256[] memory newRewardTier, bytes32 newRoot) public onlyOwner {
rewardTiers = newRewardTier;
root = newRoot;
}
function setStakingState(bool state) public onlyOwner {
started = state;
}
function setRibbitAddress(address add) public onlyOwner {
ribbit = IRibbit(add);
}
function setRibbitItemContract(address add) public onlyOwner {
ribbitItem = IRibbitItem(add);
}
function pairFriend(uint256 froggyId, bytes32[] memory proof, uint256 friend) public {
require(ribbitItem.balanceOf(msg.sender, friend) > 0, "Friend not owned");
require(ribbitItem.isBoost(friend) == true, "$RIBBIT item is not a Friend");
require(boosted[froggyId] == false, "Friend already paired");
require(froggyFriends.ownerOf(froggyId) == msg.sender, "Not your Froggy Friend");
boosted[froggyId] = true;
uint256 rate = getTokenRewardRate(froggyId, proof);
defaultRate[froggyId] = rate;
boostedRate[froggyId] = rate * 1000 + (ribbitItem.boostPercentage(friend) * rate * 1000) / 100;
ribbitItem.burn(msg.sender, friend, 1);
}
function unpairFriend(uint256 froggyId) public {
require(boosted[froggyId] == true, "Friend is not paired");
require(froggyFriends.ownerOf(froggyId) == msg.sender, "Not your Froggy Friend");
boosted[froggyId] = false;
boostedRate[froggyId] = 0;
idTokenRate[froggyId] = defaultRate[froggyId];
}
function claim() public {
require(froggiesStaked[msg.sender].length > 0, "No froggies staked");
uint256[] memory froggyIds = new uint256[](froggiesStaked[msg.sender].length);
froggyIds = froggiesStaked[msg.sender];
uint256 current;
uint256 reward;
uint256 rewardbal;
for (uint256 i; i < froggyIds.length; i++) {
if (idToStartingTime[froggyIds[i]][msg.sender] > 0) {
if (boosted[froggyIds[i]] == false) {
uint256 rate = idTokenRate[froggyIds[i]];
current = block.timestamp - idToStartingTime[froggyIds[i]][msg.sender];
reward = ((rate * 10**18) * current) / 86400;
rewardbal += reward;
idToStartingTime[froggyIds[i]][msg.sender] = block.timestamp;
}
if (boosted[froggyIds[i]] == true) {
uint256 rate = boostedRate[froggyIds[i]];
current = block.timestamp - idToStartingTime[froggyIds[i]][msg.sender];
reward = (((rate * 10**18) / 1000) * current) / 86400;
rewardbal += reward;
idToStartingTime[froggyIds[i]][msg.sender] = block.timestamp;
}
}
}
ribbit.mint(msg.sender, rewardbal);
}
function balance(uint256 froggyId) public view returns (uint256) {
uint256 current;
uint256 reward;
if (idToStartingTime[froggyId][msg.sender] > 0) {
if (boosted[froggyId] == false) {
uint256 rate = idTokenRate[froggyId];
current = block.timestamp - idToStartingTime[froggyId][msg.sender];
reward = ((rate * 10**18) * current) / 86400;
}
if (boosted[froggyId] == true) {
uint256 rate = boostedRate[froggyId];
current = block.timestamp - idToStartingTime[froggyId][msg.sender];
reward = (((rate * 10**18) / 1000) * current) / 86400;
}
return reward;
}
return 0;
}
function balanceOf(address account) public view returns (uint256) {
uint256[] memory froggyIds = new uint256[](froggiesStaked[account].length);
froggyIds = froggiesStaked[account];
uint256 current;
uint256 reward;
uint256 rewardbal;
for (uint256 i; i < froggyIds.length; i++) {
if (idToStartingTime[froggyIds[i]][account] > 0) {
if (boosted[froggyIds[i]] == false) {
uint256 rate = idTokenRate[froggyIds[i]];
current = block.timestamp - idToStartingTime[froggyIds[i]][account];
reward = ((rate * 10**18) * current) / 86400;
rewardbal += reward;
}
if (boosted[froggyIds[i]] == true) {
uint256 rate = boostedRate[froggyIds[i]];
current = block.timestamp - idToStartingTime[froggyIds[i]][account];
reward = (((rate * 10**18) / 1000) * current) / 86400;
rewardbal += reward;
}
}
}
return rewardbal;
}
function deposits(address account) public view returns (uint256[] memory) {
return froggiesStaked[account];
}
function withdrawerc20(address add, address to) public onlyOwner {
ierc20 = IErc20(add);
ierc20.transfer(to, ierc20.balanceOf(address(this)));
}
function onERC721Received(address, address, uint256, bytes calldata) external pure override returns (bytes4) {
return IERC721Receiver.onERC721Received.selector;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
{
"compilationTarget": {
"contracts/StakeFroggies.sol": "StakeFroggies"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 800
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"_froggyFriends","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"froggyId","type":"uint256"}],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"froggyId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getTokenRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"froggyId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"friend","type":"uint256"}],"name":"pairFriend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"newRewardTier","type":"uint256[]"},{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setRewardTierAndRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"setRibbitAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"setRibbitItemContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setStakingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"froggyIds","type":"uint256[]"},{"internalType":"bytes32[][]","name":"proof","type":"bytes32[][]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"froggyIds","type":"uint256[]"}],"name":"unStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"froggyId","type":"uint256"}],"name":"unpairFriend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawerc20","outputs":[],"stateMutability":"nonpayable","type":"function"}]