6 lines
147 B
Solidity
6 lines
147 B
Solidity
|
// SPDX-License-Identifier: UNLICENSED
|
||
|
pragma solidity ^0.8.9;
|
||
|
|
||
|
interface Governance {
|
||
|
function setQuorumVotes(uint256 quorumVotes) external;
|
||
|
}
|