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

8 lines
193 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;
contract Events {
event LogVoteCast(uint256 proposalId, uint256 support, string reason);
event LogDelegate(address delegatee);
}