dgf-prototype/ethereum/contracts/IOnValidate.sol

11 lines
216 B
Solidity
Raw Normal View History

2024-03-17 21:00:31 -05:00
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.24;
interface IOnValidate {
2024-03-27 14:03:57 -05:00
function onValidate(
bool votePasses,
bool quorumMet,
bytes calldata callbackData
) external;
2024-03-17 21:00:31 -05:00
}