mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
10 lines
309 B
Solidity
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);
|
|
} |