-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(LibEventRange): add LibEventRange
- Loading branch information
Showing
1 changed file
with
42 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,42 @@ | ||
//SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
struct EventRange { | ||
// uint40 is enough to represent the timestamp until year 36812 | ||
uint40 startedAt; | ||
uint40 endedAt; | ||
/// @dev Reserved space for future upgrades | ||
uint176 __reserved; | ||
} | ||
|
||
using LibEventRange for EventRange global; | ||
|
||
library LibEventRange { | ||
/** | ||
* @dev Checks whether the event range is valid. | ||
*/ | ||
function valid(EventRange memory range) internal pure returns (bool) { | ||
return range.startedAt <= range.endedAt; | ||
} | ||
|
||
/** | ||
* @dev Returns whether the current range is not yet started. | ||
*/ | ||
function isNotYetStarted(EventRange memory range) internal view returns (bool) { | ||
return block.timestamp < range.startedAt; | ||
} | ||
|
||
/** | ||
* @dev Returns whether the current range is ended or not. | ||
*/ | ||
function isEnded(EventRange memory range) internal view returns (bool) { | ||
return range.endedAt <= block.timestamp; | ||
} | ||
|
||
/** | ||
* @dev Returns whether the current block is in period. | ||
*/ | ||
function isInPeriod(EventRange memory range) internal view returns (bool) { | ||
return range.startedAt <= block.timestamp && block.timestamp < range.endedAt; | ||
} | ||
} |