-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Webstream count reward pool
- Loading branch information
Showing
1 changed file
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | ||
import {MulticallUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol"; | ||
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; | ||
|
||
interface IioID { | ||
function ownerOf(uint256 _tokenId) external view returns (address); | ||
function deviceProject(address _device) external view returns (uint256); | ||
} | ||
|
||
interface IioIDRegistry { | ||
function ioID() external view returns (address); | ||
function exists(address _device) external view returns (bool); | ||
function deviceTokenId(address _device) external view returns (uint256); | ||
} | ||
|
||
contract W3bstreamCountRewardPool is MulticallUpgradeable, OwnableUpgradeable { | ||
using SafeERC20 for IERC20; | ||
|
||
event Tick(address indexed device); | ||
event ReceiveRewards(address indexed device, address indexed owner, uint256 rewards); | ||
event ClaimRewards(address indexed user, uint256 rewards); | ||
event Withdraw(address indexed token, uint256 amount); | ||
event ChangeRewardPeriod(uint256 rewardPeriod); | ||
event ChangeActivePeriodLimit(uint256 activePeriodLimit); | ||
event ChangeRewardPerPeriod(uint256 rewardPerPeriod); | ||
event ChangeDApp(address indexed dApp); | ||
|
||
IioIDRegistry public immutable ioIDRegistry; | ||
uint256 public immutable MIN_INTERNAL; | ||
|
||
uint256 public rewardPeriod; | ||
uint256 public activePeriodLimit; | ||
uint256 public rewardPerPeriod; | ||
uint256 public projectId; | ||
address public dApp; | ||
|
||
mapping(address => mapping(uint256 => uint256)) public validCount; | ||
mapping(address => mapping(uint256 => bool)) public receivedPeriod; | ||
mapping(address => uint256) public lastTickTimestamp; | ||
mapping(address => uint256) public pendingRewards; | ||
|
||
constructor(address _ioIDRegistry) { | ||
ioIDRegistry = IioIDRegistry(_ioIDRegistry); | ||
MIN_INTERNAL = 1 minutes; | ||
} | ||
|
||
function initialize( | ||
uint256 _rewardPeriod, | ||
uint256 _activePeriodLimit, | ||
uint256 _rewardPerPeriod, | ||
uint256 _projectId, | ||
address _dApp | ||
) external initializer { | ||
require(_rewardPeriod > 0 && _activePeriodLimit > 0 && _projectId > 0, "zero value"); | ||
require(_dApp != address(0), "zero address"); | ||
|
||
rewardPeriod = _rewardPeriod; | ||
activePeriodLimit = _activePeriodLimit; | ||
rewardPerPeriod = _rewardPerPeriod; | ||
projectId = _projectId; | ||
dApp = _dApp; | ||
} | ||
|
||
function tick(address _device) external { | ||
require(msg.sender == dApp, "invalid dApp"); | ||
|
||
unchecked { | ||
require(lastTickTimestamp[_device] + MIN_INTERNAL < block.timestamp, "DDoS"); | ||
IioID ioID = IioID(ioIDRegistry.ioID()); | ||
require(ioID.deviceProject(_device) == projectId, "invalid project"); | ||
|
||
uint256 _period = block.timestamp / rewardPeriod; | ||
validCount[_device][_period] += 1; | ||
lastTickTimestamp[_device] = block.timestamp; | ||
|
||
if ( | ||
rewardPerPeriod > 0 && validCount[_device][_period] >= activePeriodLimit && !receivedPeriod[_device][_period] | ||
) { | ||
address _owner = ioID.ownerOf(ioIDRegistry.deviceTokenId(_device)); | ||
uint256 _rewardPerPeriod = rewardPerPeriod; | ||
pendingRewards[_owner] += _rewardPerPeriod; | ||
receivedPeriod[_device][_period] = true; | ||
|
||
emit ReceiveRewards(_owner, _device, _rewardPerPeriod); | ||
} | ||
} | ||
|
||
emit Tick(_device); | ||
} | ||
|
||
function claimRewards(address _user) external { | ||
uint256 _rewards = pendingRewards[_user]; | ||
require(_rewards > 0, "no rewards"); | ||
|
||
pendingRewards[_user] = 0; | ||
(bool success, ) = _user.call{value: _rewards}(""); | ||
require(success, "fail claim"); | ||
|
||
emit ClaimRewards(_user, _rewards); | ||
} | ||
|
||
function withdraw(address _token, uint256 _amount) external onlyOwner { | ||
if (_token == address(0)) { | ||
(bool success, ) = owner().call{value: _amount}(""); | ||
require(success, "fail withdarw"); | ||
|
||
emit Withdraw(_token, _amount); | ||
return; | ||
} | ||
|
||
IERC20(_token).safeTransfer(owner(), _amount); | ||
|
||
emit Withdraw(_token, _amount); | ||
} | ||
|
||
function changeRewardPeriod(uint256 _rewardPeriod) external onlyOwner { | ||
require(_rewardPeriod > 0, "zero value"); | ||
rewardPeriod = _rewardPeriod; | ||
|
||
emit ChangeRewardPeriod(_rewardPeriod); | ||
} | ||
|
||
function changeActivePeriodLimit(uint256 _activePeriodLimit) external onlyOwner { | ||
require(_activePeriodLimit > 0, "zero value"); | ||
activePeriodLimit = _activePeriodLimit; | ||
|
||
emit ChangeActivePeriodLimit(_activePeriodLimit); | ||
} | ||
|
||
function changeRewardPerPeriod(uint256 _rewardPerPeriod) external onlyOwner { | ||
rewardPerPeriod = _rewardPerPeriod; | ||
|
||
emit ChangeRewardPerPeriod(_rewardPerPeriod); | ||
} | ||
|
||
function changeDApp(address _dApp) external onlyOwner { | ||
require(_dApp != address(0), "zero address"); | ||
dApp = _dApp; | ||
|
||
emit ChangeDApp(_dApp); | ||
} | ||
|
||
receive() external payable {} | ||
} |