dgf-prototype/ethereum/contracts/IOnValidate.sol

13 lines
283 B
Solidity

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