dgf-prototype/ethereum/contracts/IOnProposalAccepted.sol

11 lines
250 B
Solidity
Raw Normal View History

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