Skip to content

Commit

Permalink
chore: init of Imultiplier @secbajor
Browse files Browse the repository at this point in the history
  • Loading branch information
RonTuretzky committed Sep 28, 2024
1 parent 47bdbff commit 0aa29f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 82 deletions.
82 changes: 0 additions & 82 deletions src/interfaces/IMultiplier.sol

This file was deleted.

10 changes: 10 additions & 0 deletions src/interfaces/multipliers/IMultiplier.sol
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);
}

0 comments on commit 0aa29f4

Please sign in to comment.