proposal-47/contracts/interfaces/IGovernance.sol

7 lines
166 B
Solidity
Raw Normal View History

2024-01-31 15:04:44 +03:00
// SPDX-License-Identifier: UNLICENSED
2024-02-12 12:27:34 +03:00
pragma solidity ^0.8.9;
2024-01-31 15:04:44 +03:00
interface IGovernance {
function lockedBalance(address staker) external view returns (uint256);
}