dgf-prototype/ethereum/contracts/IOnValidate.sol

11 lines
216 B
Solidity

// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.24;
interface IOnValidate {
function onValidate(
bool votePasses,
bool quorumMet,
bytes calldata callbackData
) external;
}