dsa-connectors/contracts/mainnet/connectors/INST/interface.sol

11 lines
340 B
Solidity
Raw Normal View History

2022-03-22 15:24:40 +00:00
//SPDX-License-Identifier: MIT
2021-06-22 19:26:44 +00:00
pragma solidity ^0.7.0;
interface InstaGovernorInterface {
function castVoteWithReason(uint proposalId, uint8 support, string calldata reason) external;
}
interface InstaTokenInterface {
function delegate(address delegatee) external;
function delegates(address) external view returns(address);
}