-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy path0xab130bc7ff83192656a4b3079741c296615899c0-MAYN-Mayweather_No.sol
303 lines (255 loc) · 10.6 KB
/
0xab130bc7ff83192656a4b3079741c296615899c0-MAYN-Mayweather_No.sol
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
pragma solidity ^0.4.13;
// Last compiled with 0.4.13+commit.0fb4cb1a
contract SafeMath {
//internals
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function safeSub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function safeAdd(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c>=a && c>=b);
return c;
}
}
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance) {}
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) returns (bool success) {}
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
/// @param _from The address of the sender
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}
/// @notice `msg.sender` approves `_addr` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of wei to be approved for transfer
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) returns (bool success) {}
/// @param _owner The address of the account owning tokens
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
//Default assumes totalSupply can't be over max (2^256 - 1).
//If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
//Replace the if with this one instead.
if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
//if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
//same as above. Replace this line with the following if you want to protect against wrapping uints.
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
//if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else { return false; }
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping(address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
uint256 public totalSupply;
}
contract ReserveToken is StandardToken, SafeMath {
string public name;
string public symbol;
uint public decimals = 18;
address public minter;
function ReserveToken(string name_, string symbol_) {
name = name_;
symbol = symbol_;
minter = msg.sender;
}
function create(address account, uint amount) {
require(msg.sender == minter);
balances[account] = safeAdd(balances[account], amount);
totalSupply = safeAdd(totalSupply, amount);
}
function destroy(address account, uint amount) {
require(msg.sender == minter);
require(balances[account] >= amount);
balances[account] = safeSub(balances[account], amount);
totalSupply = safeSub(totalSupply, amount);
}
}
contract YesNo is SafeMath {
ReserveToken public yesToken;
ReserveToken public noToken;
string public name;
string public symbol;
//Reality Keys:
bytes32 public factHash;
address public ethAddr;
string public url;
uint public outcome;
bool public resolved = false;
address public feeAccount;
uint public fee; //percentage of 1 ether
event Create(address indexed account, uint value);
event Redeem(address indexed account, uint value, uint yesTokens, uint noTokens);
event Resolve(bool resolved, uint outcome);
function YesNo(string name_, string symbol_, string namey_, string symboly_, string namen_, string symboln_, bytes32 factHash_, address ethAddr_, string url_, address feeAccount_, uint fee_) {
name = name_;
symbol = symbol_;
yesToken = new ReserveToken(namey_, symboly_);
noToken = new ReserveToken(namen_, symboln_);
factHash = factHash_;
ethAddr = ethAddr_;
url = url_;
feeAccount = feeAccount_;
fee = fee_;
}
function() payable {
create();
}
function create() payable {
//send X Ether, get X Yes tokens and X No tokens
yesToken.create(msg.sender, msg.value);
noToken.create(msg.sender, msg.value);
Create(msg.sender, msg.value);
}
function redeem(uint tokens) {
feeAccount.transfer(safeMul(tokens,fee)/(1 ether));
if (!resolved) {
yesToken.destroy(msg.sender, tokens);
noToken.destroy(msg.sender, tokens);
msg.sender.transfer(safeMul(tokens,(1 ether)-fee)/(1 ether));
Redeem(msg.sender, tokens, tokens, tokens);
} else if (resolved) {
if (outcome==0) { //no
noToken.destroy(msg.sender, tokens);
msg.sender.transfer(safeMul(tokens,(1 ether)-fee)/(1 ether));
Redeem(msg.sender, tokens, 0, tokens);
} else if (outcome==1) { //yes
yesToken.destroy(msg.sender, tokens);
msg.sender.transfer(safeMul(tokens,(1 ether)-fee)/(1 ether));
Redeem(msg.sender, tokens, tokens, 0);
}
}
}
function resolve(uint8 v, bytes32 r, bytes32 s, bytes32 value) {
require(ecrecover(sha3(factHash, value), v, r, s) == ethAddr);
require(!resolved);
uint valueInt = uint(value);
require(valueInt==0 || valueInt==1);
outcome = valueInt;
resolved = true;
Resolve(resolved, outcome);
}
}
/*
contract Option is SafeMath {
ReserveToken public callToken;
ReserveToken public putToken;
string public name;
string public symbol;
uint public strikeCall; //times (1 ether)
uint public strikePut; //times (1 ether)
//a call is always paired with a put.
//strikeCall must be less than strikePut.
//the difference bewteen them represents the in-the-money limit.
//Reality Keys:
bytes32 public factHash;
address public ethAddr;
string public url;
uint public outcome;
bool public resolved = false;
address public feeAccount;
uint public fee; //percentage of 1 ether
event Create(address indexed account, uint value);
event Redeem(address indexed account, uint value, uint callTokens, uint putTokens);
event Resolve(bool resolved, uint outcome);
function Option(uint strikeCall_, uint strikePut_, string name_, string symbol_, string namecall_, string symbolcall_, string nameput_, string symbolput_, bytes32 factHash_, address ethAddr_, string url_, address feeAccount_, uint fee_) {
assert(strikeCall_ < strikePut_);
strikeCall = strikeCall_;
strikePut = strikePut_;
name = name_;
symbol = symbol_;
callToken = new ReserveToken(namecall_, symbolcall_);
putToken = new ReserveToken(nameput_, symbolput_);
factHash = factHash_;
ethAddr = ethAddr_;
url = url_;
feeAccount = feeAccount_;
fee = fee_;
}
function () payable {
create();
}
function create() payable {
//send X Ether, get X call tokens and X put tokens
callToken.create(msg.sender, msg.value);
putToken.create(msg.sender, msg.value);
Create(msg.sender, msg.value);
}
function redeem(uint tokens) {
if (!resolved) {
feeAccount.transfer(safeMul(tokens,fee)/(1 ether));
callToken.destroy(msg.sender, tokens);
putToken.destroy(msg.sender, tokens);
msg.sender.transfer(safeMul(tokens,(1 ether)-fee)/(1 ether));
Redeem(msg.sender, tokens, tokens, tokens);
} else if (resolved) {
uint callTokenBalance = callToken.balanceOf(msg.sender);
uint putTokenBalance = putToken.balanceOf(msg.sender);
callToken.destroy(msg.sender, callTokenBalance);
putToken.destroy(msg.sender, putTokenBalance);
uint value = 0;
if (outcome <= strikeCall) {
value = safeMul(putTokenBalance, (strikeCall - strikePut)) / (1 ether);
} else if (outcome >= strikePut) {
value = safeMul(callTokenBalance, (strikeCall - strikePut)) / (1 ether);
} else {
value = safeMul(callTokenBalance, (outcome - strikeCall)) / (1 ether) + safeMul(putTokenBalance, (strikePut - outcome)) / (1 ether);
}
feeAccount.transfer(safeMul(value,fee)/(1 ether));
msg.sender.transfer(safeMul(value,(1 ether)-fee)/(1 ether));
Redeem(msg.sender, value, callTokenBalance, putTokenBalance);
}
}
function resolve(uint8 v, bytes32 r, bytes32 s, bytes32 value) {
require(ecrecover(sha3(factHash, value), v, r, s) == ethAddr);
require(!resolved);
uint valueInt = uint(value);
require (valueInt==0 || valueInt==1);
outcome = valueInt;
resolved = true;
Resolve(resolved, outcome);
}
}
*/