dsa-connectors/contracts/mainnet/connectors/INST/interface.sol
2021-06-23 00:56:44 +05:30

10 lines
309 B
Solidity

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);
}