dgf-prototype/ethereum/contracts/IOnProposalAccepted.sol

11 lines
235 B
Solidity

// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.24;
interface IOnProposalAccepted {
function onProposalAccepted(
uint stakedFor,
uint stakedAgainst,
bytes calldata callbackData
) external;
}