// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)pragmasolidity ^0.8.1;/**
* @dev Collection of functions related to the address type
*/libraryAddress{
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/functionisContract(address account) internalviewreturns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0// for contracts in construction, since the code is only stored at the end// of the constructor execution.return account.code.length>0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/functionsendValue(addresspayable recipient, uint256 amount) internal{
require(address(this).balance>= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/functionfunctionCall(address target, bytesmemory data) internalreturns (bytesmemory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/functionfunctionCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value
) internalreturns (bytesmemory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(address(this).balance>= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytesmemory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/functionfunctionStaticCall(address target, bytesmemory data) internalviewreturns (bytesmemory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/functionfunctionStaticCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalviewreturns (bytesmemory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytesmemory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/functionfunctionDelegateCall(address target, bytesmemory data) internalreturns (bytesmemory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/functionfunctionDelegateCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytesmemory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/functionverifyCallResult(bool success,
bytesmemory returndata,
stringmemory errorMessage
) internalpurereturns (bytesmemory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if presentif (returndata.length>0) {
// The easiest way to bubble the revert reason is using memory via assemblyassembly {
let returndata_size :=mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
Contract Source Code
File 2 of 17: Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragmasolidity ^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.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
Contract Source Code
File 3 of 17: ERC721Holder.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol)pragmasolidity ^0.8.0;import"../IERC721Receiver.sol";
/**
* @dev Implementation of the {IERC721Receiver} interface.
*
* Accepts all token transfers.
* Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
*/contractERC721HolderisIERC721Receiver{
/**
* @dev See {IERC721Receiver-onERC721Received}.
*
* Always returns `IERC721Receiver.onERC721Received.selector`.
*/functiononERC721Received(address,
address,
uint256,
bytesmemory) publicvirtualoverridereturns (bytes4) {
returnthis.onERC721Received.selector;
}
}
Contract Source Code
File 4 of 17: IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/interfaceIERC165{
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/functionsupportsInterface(bytes4 interfaceId) externalviewreturns (bool);
}
Contract Source Code
File 5 of 17: IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/interfaceIERC20{
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/eventApproval(addressindexed owner, addressindexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/functionbalanceOf(address account) externalviewreturns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/functiontransfer(address to, uint256 amount) externalreturns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/functionallowance(address owner, address spender) externalviewreturns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/functionapprove(address spender, uint256 amount) externalreturns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/functiontransferFrom(addressfrom,
address to,
uint256 amount
) externalreturns (bool);
}
Contract Source Code
File 6 of 17: IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/interfaceIERC721isIERC165{
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/eventApproval(addressindexed owner, addressindexed approved, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/eventApprovalForAll(addressindexed owner, addressindexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/functionbalanceOf(address owner) externalviewreturns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functionownerOf(uint256 tokenId) externalviewreturns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytescalldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/functiontransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/functionapprove(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/functionsetApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functiongetApproved(uint256 tokenId) externalviewreturns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/functionisApprovedForAll(address owner, address operator) externalviewreturns (bool);
}
Contract Source Code
File 7 of 17: IERC721Receiver.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragmasolidity ^0.8.0;/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/interfaceIERC721Receiver{
/**
* @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 `IERC721Receiver.onERC721Received.selector`.
*/functiononERC721Received(address operator,
addressfrom,
uint256 tokenId,
bytescalldata data
) externalreturns (bytes4);
}
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;interfaceIRecoverable{
/**
* @notice Allows the owner to recover non-fungible tokens sent to the NFT contract by mistake and this contract
* @param _token: NFT token address
* @param _tokenId: tokenId
* @dev Callable by owner
*/functionrecoverNonFungibleToken(address _token, uint256 _tokenId) external;
/**
* @notice Allows the owner to recover tokens sent to the NFT contract and this contract by mistake
* @param _token: token address
* @dev Callable by owner
*/functionrecoverToken(address _token) external;
/**
* @notice Allows the owner to recover ETH sent to the NFT contract ans and contract by mistake
* @param _to: target address
* @dev Callable by owner
*/functionrecoverEth(addresspayable _to) external;
}
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;pragmaabicoderv2;import"@openzeppelin/contracts/access/Ownable.sol";
import"@openzeppelin/contracts/token/ERC721/IERC721.sol";
import"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import"@openzeppelin/contracts/security/ReentrancyGuard.sol";
import"./Poolable.sol";
import"./Recoverable.sol";
/** @title NftStakingPool
*/contractNftStakingPoolisOwnable, Poolable, Recoverable, ReentrancyGuard, ERC721Holder{
usingSafeERC20forIERC20;
structPoolDeposit {
address owner;
uint64 pool;
uint256 depositDate;
uint256 claimed;
}
structMultiStakeParam {
uint256[] tokenIds;
uint256 poolId;
}
IERC20 public rewardToken;
// poolDeposit per collection and tokenIdmapping(address=>mapping(uint256=> PoolDeposit)) private _deposits;
// user rewards mappingmapping(address=>uint256) private _userRewards;
eventStake(addressindexed account, uint256 poolId, addressindexed collection, uint256 tokenId);
eventUnstake(addressindexed account, addressindexed collection, uint256 tokenId);
eventBatchStake(addressindexed account, uint256 poolId, addressindexed collection, uint256[] tokenIds);
eventBatchUnstake(addressindexed account, addressindexed collection, uint256[] tokenIds);
eventClaimed(addressindexed account, addressindexed collection, uint256 tokenId, uint256 rewards, uint256 pool);
eventClaimedMulti(addressindexed account, MultiStakeParam[] groups, uint256 rewards);
constructor(IERC20 _rewardToken) {
rewardToken = _rewardToken;
}
function_sendRewards(address destination, uint256 amount) internalvirtual{
rewardToken.safeTransfer(destination, amount);
}
function_sendAndUpdateRewards(address account, uint256 amount) internal{
if (amount >0) {
_userRewards[account] = _userRewards[account] + amount;
_sendRewards(account, amount);
}
}
function_getPendingRewardAmounts(PoolDeposit memory deposit, Pool memory pool) internalviewreturns (uint256) {
uint256 reward =0;
uint256 dt = deposit.depositDate;
while (dt !=0&& pool.lockDuration !=0) {
dt += pool.lockDuration;
if (dt >block.timestamp) break;
reward += pool.rewardAmount;
if (pool.endRewardDate !=0&& dt > pool.endRewardDate) break;
}
if (reward <= deposit.claimed) {
return0;
}
return reward - deposit.claimed;
}
function_stake(address account,
address collection,
uint256 tokenId,
uint256 poolId
) internal{
require(_deposits[collection][tokenId].owner ==address(0), "Stake: Token already staked");
// add deposit
_deposits[collection][tokenId] = PoolDeposit({
owner: account,
pool: uint64(poolId),
depositDate: block.timestamp,
claimed: 0
});
// transfer token
IERC721(collection).safeTransferFrom(account, address(this), tokenId);
}
/**
* @notice Stake a token from the collection
*/functionstake(uint256 poolId, uint256 tokenId) externalnonReentrantwhenPoolOpened(poolId) {
address account = _msgSender();
Pool memory pool = getPool(poolId);
_stake(account, pool.collection, tokenId, poolId);
emit Stake(account, poolId, pool.collection, tokenId);
}
function_unstake(address account,
address collection,
uint256 tokenId
) internalreturns (uint256) {
PoolDeposit storage deposit = _deposits[collection][tokenId];
require(isUnlockable(deposit.pool, deposit.depositDate), "Stake: Not yet unstakable");
Pool memory pool = getPool(deposit.pool);
uint256 rewards = _getPendingRewardAmounts(deposit, pool);
if (rewards >0) {
deposit.claimed += rewards;
}
// update depositdelete _deposits[collection][tokenId];
// transfer token
IERC721(collection).safeTransferFrom(address(this), account, tokenId);
return rewards;
}
/**
* @notice Unstake a token
*/functionunstake(address collection, uint256 tokenId) externalnonReentrant{
require(_deposits[collection][tokenId].owner == _msgSender(), "Stake: Not owner of token");
address account = _msgSender();
uint256 rewards = _unstake(account, collection, tokenId);
_sendAndUpdateRewards(account, rewards);
emit Unstake(account, collection, tokenId);
}
function_restake(uint256 newPoolId,
address collection,
uint256 tokenId
) internalreturns (uint256) {
require(isPoolOpened(newPoolId), "Stake: Pool is closed");
require(collectionForPool(newPoolId) == collection, "Stake: Invalid collection");
PoolDeposit storage deposit = _deposits[collection][tokenId];
Pool memory oldPool = getPool(deposit.pool);
require(isUnlockable(deposit.pool, deposit.depositDate), "Stake: Not yet unstakable");
uint256 rewards = _getPendingRewardAmounts(deposit, oldPool);
// update deposit
deposit.pool =uint64(newPoolId);
deposit.depositDate =block.timestamp;
deposit.claimed =0;
return rewards;
}
/**
* @notice Allow a user to [re]stake a token in a new pool without unstaking it first.
*/functionrestake(uint256 newPoolId,
address collection,
uint256 tokenId
) externalnonReentrant{
require(_deposits[collection][tokenId].owner !=address(0), "Stake: Token not staked");
require(_deposits[collection][tokenId].owner == _msgSender(), "Stake: Not owner of token");
address account = _msgSender();
uint256 rewards = _restake(newPoolId, collection, tokenId);
_sendAndUpdateRewards(account, rewards);
emit Unstake(account, collection, tokenId);
emit Stake(account, newPoolId, collection, tokenId);
}
function_batchStake(address account,
uint256 poolId,
uint256[] memory tokenIds
) internalwhenPoolOpened(poolId) {
Pool memory pool = getPool(poolId);
for (uint256 i =0; i < tokenIds.length; i++) {
_stake(account, pool.collection, tokenIds[i], poolId);
}
emit BatchStake(account, poolId, pool.collection, tokenIds);
}
function_batchUnstake(address account,
address collection,
uint256[] memory tokenIds
) internal{
uint256 rewards =0;
for (uint256 i =0; i < tokenIds.length; i++) {
require(_deposits[collection][tokenIds[i]].owner == account, "Stake: Not owner of token");
rewards = rewards + _unstake(account, collection, tokenIds[i]);
}
_sendAndUpdateRewards(account, rewards);
emit BatchUnstake(account, collection, tokenIds);
}
function_batchRestake(address account,
uint256 poolId,
address collection,
uint256[] memory tokenIds
) internal{
uint256 rewards =0;
for (uint256 i =0; i < tokenIds.length; i++) {
require(_deposits[collection][tokenIds[i]].owner == account, "Stake: Not owner of token");
rewards += _restake(poolId, collection, tokenIds[i]);
}
_sendAndUpdateRewards(account, rewards);
emit BatchUnstake(account, collection, tokenIds);
emit BatchStake(account, poolId, collection, tokenIds);
}
/**
* @notice Batch stake a list of tokens from the collection
*/functionbatchStake(uint256 poolId, uint256[] calldata tokenIds) externalnonReentrant{
_batchStake(_msgSender(), poolId, tokenIds);
}
/**
* @notice Batch unstake tokens
*/functionbatchUnstake(address collection, uint256[] calldata tokenIds) externalnonReentrant{
_batchUnstake(_msgSender(), collection, tokenIds);
}
/**
* @notice Batch restake tokens
*/functionbatchRestake(uint256 poolId,
address collection,
uint256[] calldata tokenIds
) externalnonReentrant{
_batchRestake(_msgSender(), poolId, collection, tokenIds);
}
/**
* @notice Batch stake a list of tokens from different collections
*/functionstakeMulti(MultiStakeParam[] memory groups) externalnonReentrant{
address account = _msgSender();
for (uint256 i =0; i < groups.length; i++) {
_batchStake(account, groups[i].poolId, groups[i].tokenIds);
}
}
/**
* @notice Batch unstake tokens from different collections
*/functionunstakeMulti(MultiStakeParam[] memory groups) externalnonReentrant{
address account = _msgSender();
for (uint256 i =0; i < groups.length; i++) {
address collection = getPool(groups[i].poolId).collection;
_batchUnstake(account, collection, groups[i].tokenIds);
}
}
/**
* @notice Batch restake tokens from different collections
*/functionrestakeMulti(MultiStakeParam[] memory groups) externalnonReentrant{
address account = _msgSender();
for (uint256 i =0; i < groups.length; i++) {
address collection = getPool(groups[i].poolId).collection;
_batchRestake(account, groups[i].poolId, collection, groups[i].tokenIds);
}
}
functionclaim(address collection, uint256 tokenId) external{
address account = _msgSender();
PoolDeposit storage deposit = _deposits[collection][tokenId];
require(deposit.owner == account, "Stake: Not owner of token");
require(isUnlockable(deposit.pool, deposit.depositDate), "Stake: Not yet unstakable");
Pool memory pool = getPool(deposit.pool);
uint256 rewards = _getPendingRewardAmounts(deposit, pool);
if (rewards >0) {
deposit.claimed += rewards;
}
_sendAndUpdateRewards(account, rewards);
emit Claimed(account, collection, tokenId, rewards, deposit.pool);
}
functionclaimMulti(MultiStakeParam[] memory groups) external{
address account = _msgSender();
uint256 rewards =0;
for (uint256 i =0; i < groups.length; i++) {
Pool memory pool = getPool(groups[i].poolId);
for (uint256 u =0; u < groups[i].tokenIds.length; u++) {
PoolDeposit storage deposit = _deposits[pool.collection][groups[i].tokenIds[u]];
require(deposit.owner == _msgSender(), "Stake: Not owner of token");
require(isUnlockable(deposit.pool, deposit.depositDate), "Stake: Not yet unstakable");
uint256 depositRewards = _getPendingRewardAmounts(deposit, pool);
if (depositRewards >0) {
deposit.claimed += depositRewards;
rewards += depositRewards;
}
}
}
_sendAndUpdateRewards(account, rewards);
emit ClaimedMulti(account, groups, rewards);
}
/**
* @notice Checks if a token has been deposited for enough time to get rewards
*/functionisTokenUnlocked(address collection, uint256 tokenId) publicviewreturns (bool) {
require(_deposits[collection][tokenId].owner !=address(0), "Stake: Token not staked");
return isUnlocked(_deposits[collection][tokenId].pool, _deposits[collection][tokenId].depositDate);
}
/**
* @notice Get the stake detail for a token (owner, poolId, min unstakable date, reward unlock date)
*/functiongetStakeInfo(address collection, uint256 tokenId)
externalviewreturns (address owner, // owneruint256 poolId, // poolIduint256 depositDate, // deposit dateuint256 unlockDate, // unlock dateuint256 rewardDate, // reward dateuint256 totalClaimed // total claimed)
{
if (_deposits[collection][tokenId].owner ==address(0)) {
return (address(0), 0, 0, 0, 0, 0);
}
PoolDeposit memory deposit = _deposits[collection][tokenId];
Pool memory pool = getPool(deposit.pool);
return (
deposit.owner,
deposit.pool,
deposit.depositDate,
deposit.depositDate + pool.minDuration,
deposit.depositDate + pool.lockDuration,
deposit.claimed
);
}
/**
* @notice Returns the total reward for a user
*/functiongetUserTotalRewards(address account) externalviewreturns (uint256) {
return _userRewards[account];
}
functionrecoverNonFungibleToken(address _token, uint256 _tokenId) externaloverrideonlyOwner{
// staked tokens cannot be recovered by ownerrequire(_deposits[_token][_tokenId].owner ==address(0), "Stake: Cannot recover staked token");
IERC721(_token).transferFrom(address(this), address(msg.sender), _tokenId);
emit NonFungibleTokenRecovery(_token, _tokenId);
}
}
Contract Source Code
File 12 of 17: Ownable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragmasolidity ^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.
*/abstractcontractOwnableisContext{
addressprivate _owner;
eventOwnershipTransferred(addressindexed previousOwner, addressindexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/functionowner() publicviewvirtualreturns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/modifieronlyOwner() {
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.
*/functionrenounceOwnership() publicvirtualonlyOwner{
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/functiontransferOwnership(address newOwner) publicvirtualonlyOwner{
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) internalvirtual{
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
Contract Source Code
File 13 of 17: Poolable.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;pragmaabicoderv2;import"@openzeppelin/contracts/access/Ownable.sol";
/** @title Poolable.
@dev This contract manage configuration of pools
*/abstractcontractPoolableisOwnable{
structPool {
address collection; // nft collectionuint256 lockDuration; // locked timespanuint256 minDuration; // min deposit timespanuint256 endRewardDate; // date to end the rewardsuint256 rewardAmount; // amount rewarded when lockDuration is reached
}
// pools mappinguint256public poolsLength;
mapping(uint256=> Pool) private _pools;
/**
* @dev Emitted when a pool is created
*/eventPoolAdded(uint256 poolIndex, Pool pool);
/**
* @dev Emitted when a pool is updated
*/eventPoolUpdated(uint256 poolIndex, Pool pool);
/**
* @dev Modifier that checks that the pool at index `poolIndex` is open
*/modifierwhenPoolOpened(uint256 poolIndex) {
require(
isPoolOpened(poolIndex),
"Poolable: Pool is closed"
);
_;
}
/**
* @dev Modifier that checks that the now() - `depositDate` is above or equal to the min lock duration for pool at index `poolIndex`
*/modifierwhenUnlocked(uint256 poolIndex, uint256 depositDate) {
require(isUnlocked(poolIndex, depositDate), "Poolable: Not unlocked");
_;
}
functiongetPool(uint256 poolIndex) publicviewreturns (Pool memory) {
require(poolIndex < poolsLength, "Poolable: Invalid poolIndex");
return _pools[poolIndex];
}
functionaddPool(Pool calldata pool) externalonlyOwner{
uint256 poolIndex = poolsLength;
_pools[poolIndex] = pool;
poolsLength = poolsLength +1;
emit PoolAdded(poolIndex, _pools[poolIndex]);
}
functionupdatePool(uint256 poolIndex, Pool calldata pool) externalonlyOwner{
require(poolIndex < poolsLength, "Poolable: Invalid poolIndex");
Pool storage editedPool = _pools[poolIndex];
editedPool.lockDuration = pool.lockDuration;
editedPool.minDuration = pool.minDuration;
editedPool.endRewardDate = pool.endRewardDate;
editedPool.rewardAmount = pool.rewardAmount;
emit PoolUpdated(poolIndex, editedPool);
}
functionclosePool(uint256 poolIndex) externalonlyOwnerwhenPoolOpened(poolIndex) {
Pool storage editedPool = _pools[poolIndex];
editedPool.endRewardDate =block.timestamp;
emit PoolUpdated(poolIndex, editedPool);
}
functionisUnlocked(uint256 poolIndex, uint256 depositDate) internalviewreturns (bool) {
require(poolIndex < poolsLength, "Poolable: Invalid poolIndex");
require(depositDate <block.timestamp, "Poolable: Invalid deposit date");
returnblock.timestamp- depositDate >= _pools[poolIndex].lockDuration;
}
functionisUnlockable(uint256 poolIndex, uint256 depositDate) internalviewreturns (bool) {
require(poolIndex < poolsLength, "Poolable: Invalid poolIndex");
require(depositDate <block.timestamp, "Poolable: Invalid deposit date");
returnblock.timestamp- depositDate >= _pools[poolIndex].minDuration;
}
functionisPoolOpened(uint256 poolIndex) publicviewreturns (bool) {
require(poolIndex < poolsLength, "Poolable: Invalid poolIndex");
return _pools[poolIndex].endRewardDate ==0|| _pools[poolIndex].endRewardDate >block.timestamp;
}
functioncollectionForPool(uint256 poolIndex) publicviewreturns (address) {
require(poolIndex < poolsLength, "Poolable: Invalid poolIndex");
return _pools[poolIndex].collection;
}
}
Contract Source Code
File 14 of 17: Recoverable.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.0;pragmaabicoderv2;import"@openzeppelin/contracts/access/Ownable.sol";
import"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import"@openzeppelin/contracts/token/ERC721/IERC721.sol";
import"../interfaces/IRecoverable.sol";
abstractcontractRecoverableisOwnable, IRecoverable{
usingSafeERC20forIERC20;
eventNonFungibleTokenRecovery(addressindexed token, uint256 tokenId);
eventTokenRecovery(addressindexed token, uint256 amount);
eventEthRecovery(uint256 amount);
/**
* @notice Allows the owner to recover non-fungible tokens sent to the contract by mistake
* @param _token: NFT token address
* @param _tokenId: tokenId
* @dev Callable by owner
*/functionrecoverNonFungibleToken(address _token, uint256 _tokenId) externalvirtualonlyOwner{
IERC721(_token).transferFrom(address(this), address(msg.sender), _tokenId);
emit NonFungibleTokenRecovery(_token, _tokenId);
}
/**
* @notice Allows the owner to recover tokens sent to the contract by mistake
* @param _token: token address
* @dev Callable by owner
*/functionrecoverToken(address _token) externalvirtualonlyOwner{
uint256 balance = IERC20(_token).balanceOf(address(this));
require(balance !=0, "Operations: Cannot recover zero balance");
IERC20(_token).safeTransfer(address(msg.sender), balance);
emit TokenRecovery(_token, balance);
}
functionrecoverEth(addresspayable _to) externalvirtualonlyOwner{
uint256 balance =address(this).balance;
_to.transfer(balance);
emit EthRecovery(balance);
}
}
Contract Source Code
File 15 of 17: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragmasolidity ^0.8.0;/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/abstractcontractReentrancyGuard{
// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and// pointer aliasing, and it cannot be disabled.// The values being non-zero value makes deployment a bit more expensive,// but in exchange the refund on every call to nonReentrant will be lower in// amount. Since refunds are capped to a percentage of the total// transaction's gas, it is best to keep them low in cases like this one, to// increase the likelihood of the full refund coming into effect.uint256privateconstant _NOT_ENTERED =1;
uint256privateconstant _ENTERED =2;
uint256private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/modifiernonReentrant() {
// On the first call to nonReentrant, _notEntered will be truerequire(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
Contract Source Code
File 16 of 17: SafeERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)pragmasolidity ^0.8.0;import"../IERC20.sol";
import"../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/librarySafeERC20{
usingAddressforaddress;
functionsafeTransfer(
IERC20 token,
address to,
uint256 value
) internal{
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
functionsafeTransferFrom(
IERC20 token,
addressfrom,
address to,
uint256 value
) internal{
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/functionsafeApprove(
IERC20 token,
address spender,
uint256 value
) internal{
// safeApprove should only be called when setting an initial allowance,// or when resetting it to zero. To increase and decrease it, use// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'require(
(value ==0) || (token.allowance(address(this), spender) ==0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
functionsafeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal{
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
functionsafeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal{
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/function_callOptionalReturn(IERC20 token, bytesmemory data) private{
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that// the target address contains contract code and also asserts for success in the low-level call.bytesmemory returndata =address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length>0) {
// Return data is optionalrequire(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}