blob: e175dfdb90c911137ed6584511c482cd21e4906e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
pragma solidity ^0.4.11;
import "../Oracles/Oracle.sol";
/// @title Centralized oracle contract - Allows the contract owner to set an outcome
/// @author Stefan George - <stefan@gnosis.pm>
contract CentralizedOracle is Oracle {
/*
* Events
*/
event OwnerReplacement(address indexed newOwner);
event OutcomeAssignment(int outcome);
/*
* Storage
*/
address public owner;
bytes public ipfsHash;
bool public isSet;
int public outcome;
/*
* Modifiers
*/
modifier isOwner () {
// Only owner is allowed to proceed
require(msg.sender == owner);
_;
}
/*
* Public functions
*/
/// @dev Constructor sets owner address and IPFS hash
/// @param _ipfsHash Hash identifying off chain event description
constructor(address _owner, bytes memory _ipfsHash)
public
{
// Description hash cannot be null
require(_ipfsHash.length == 46);
owner = _owner;
ipfsHash = _ipfsHash;
}
/// @dev Replaces owner
/// @param newOwner New owner
function replaceOwner(address newOwner)
public
isOwner
{
// Result is not set yet
require(!isSet);
owner = newOwner;
emit OwnerReplacement(newOwner);
}
/// @dev Sets event outcome
/// @param _outcome Event outcome
function setOutcome(int _outcome)
public
isOwner
{
// Result is not set yet
require(!isSet);
isSet = true;
outcome = _outcome;
emit OutcomeAssignment(_outcome);
}
/// @dev Returns if winning outcome is set
/// @return Is outcome set?
function isOutcomeSet()
public
view
returns (bool)
{
return isSet;
}
/// @dev Returns outcome
/// @return Outcome
function getOutcome()
public
view
returns (int)
{
return outcome;
}
}
|