dgf-prototype/ethereum/contracts/IOnValidate.sol

7 lines
170 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 {
function onValidate(bool votePasses, bytes calldata callbackData) external;
}