-
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.
chore: init of Imultiplier @secbajor
- Loading branch information
1 parent
47bdbff
commit 0aa29f4
Showing
2 changed files
with
10 additions
and
82 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.0; | ||
|
||
interface IMultiplier { | ||
/// @notice Returns the voting multiplier for `user`. | ||
function getMultiplyingFactor(address user) external view returns (uint256); | ||
|
||
/// @notice Returns the validity period of the multiplier for `user`. | ||
function validUntil(address user) external view returns (uint256); | ||
} |