10 lines
272 B
Solidity
10 lines
272 B
Solidity
// SPDX-License-Identifier: MIT
|
|
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5805.sol)
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
import {IVotes} from "../governance/utils/IVotes.sol";
|
|
import {IERC6372} from "./IERC6372.sol";
|
|
|
|
interface IERC5805 is IERC6372, IVotes {}
|