pragma solidity ^0.5.0; import "@gnosis.pm/util-contracts/contracts/Proxy.sol"; /// @title Abstract oracle contract - Functions to be implemented by oracles contract Oracle { function isOutcomeSet() public view returns (bool); function getOutcome() public view returns (int); }