-
Notifications
You must be signed in to change notification settings - Fork 4
/
Exchange.sol
307 lines (251 loc) · 12.4 KB
/
Exchange.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
304
305
306
307
pragma solidity ^0.4.11;
// File: contracts/third-party/lib/Token.sol
// Abstract contract for the full ERC 20 Token standard
// https://github.com/ethereum/EIPs/issues/20
pragma solidity ^0.4.11;
contract Token {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
This automatically creates a getter function for the totalSupply.
This is moved to the base contract since public getter functions are not
currently recognised as an implementation of the matching abstract
function by the compiler.
*/
/// total amount of tokens
uint256 public totalSupply;
/// @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 `_spender` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of tokens 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);
}
// File: contracts/third-party/lib/StandardToken.sol
/* Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20 */
pragma solidity ^0.4.11;
contract ERC20 is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]);
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]);
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
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) public balances; // *added public
mapping (address => mapping (address => uint256)) public allowed; // *added public
}
// File: contracts/third-party/Exchange.sol
/** @title AirSwap exchange contract.
* Assumes makers and takers have approved this contract to access their balances.
*/
contract Exchange {
// Mapping of order hash to bool (true = already filled).
mapping (bytes32 => bool) public fills;
// Events that are emitted in different scenarios.
event Filled(address indexed makerAddress, uint makerAmount, address indexed makerToken, address takerAddress, uint takerAmount, address indexed takerToken, uint256 expiration, uint256 nonce);
event Canceled(address indexed makerAddress, uint makerAmount, address indexed makerToken, address takerAddress, uint takerAmount, address indexed takerToken, uint256 expiration, uint256 nonce);
/** Event thrown when a trade fails
* Error codes:
* 1 -> 'The makeAddress and takerAddress must be different',
* 2 -> 'The order has expired',
* 3 -> 'This order has already been filled',
* 4 -> 'The ether sent with this transaction does not match takerAmount',
* 5 -> 'No ether is required for a trade between tokens',
* 6 -> 'The sender of this transaction must match the takerAddress',
* 7 -> 'Order has already been cancelled or filled'
*/
event Failed(uint code, address indexed makerAddress, uint makerAmount, address indexed makerToken, address takerAddress, uint takerAmount, address indexed takerToken, uint256 expiration, uint256 nonce);
/** Fills an order by transferring tokens between (maker or escrow) and taker.
* maker is given tokenA to taker,
*/
function fill(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken,
uint256 expiration, uint256 nonce, uint8 v, bytes32 r, bytes32 s) payable {
if (makerAddress == takerAddress) {
msg.sender.transfer(msg.value);
Failed(1,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
// Check if this order has expired
if (expiration < now) {
msg.sender.transfer(msg.value);
Failed(2,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
// Validate the message by signature.
bytes32 hash = validate(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce, v, r, s);
// Check if this order has already been filled
if (fills[hash]) {
msg.sender.transfer(msg.value);
Failed(3,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
// Check to see if this an order for ether.
if (takerToken == address(0x0)) {
// Check to make sure the message value is the order amount.
if (msg.value == takerAmount) {
// Mark order as filled to prevent reentrancy.
fills[hash] = true;
// Perform the trade between makerAddress and takerAddress.
// The transfer will throw if there's a problem.
assert(transfer(makerAddress, takerAddress, makerAmount, makerToken));
// Transfer the ether received from sender to makerAddress.
makerAddress.transfer(msg.value);
// Log an event to indicate completion.
Filled(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
} else {
msg.sender.transfer(msg.value);
Failed(4,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
}
} else {
// This is an order trading two tokens
// Check that no ether has been sent accidentally
if (msg.value != 0) {
msg.sender.transfer(msg.value);
Failed(5,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
return;
}
if (takerAddress == msg.sender) {
// Mark order as filled to prevent reentrancy.
fills[hash] = true;
// Perform the trade between makerAddress and takerAddress.
// The transfer will throw if there's a problem.
// Assert should never fail
assert(trade(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken));
// Log an event to indicate completion.
Filled(
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
} else {
Failed(6,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
}
}
}
/** Cancels an order by refunding escrow and adding it to the fills mapping.
* Will log an event if
* - order has been cancelled or
* - order has already been filled
* and will do nothing if the maker of the order in question is not the
* msg.sender
*/
function cancel(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken,
uint256 expiration, uint256 nonce, uint8 v, bytes32 r, bytes32 s) {
// Validate the message by signature.
bytes32 hash = validate(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce, v, r, s);
// Only the maker can cancel an order
if (msg.sender == makerAddress) {
// Check that order has not already been filled/cancelled
if (fills[hash] == false) {
// Cancel the order by considering it filled.
fills[hash] = true;
// Broadcast an event to the blockchain.
Canceled(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
} else {
Failed(7,
makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
}
}
}
/** Atomic trade of tokens between first party and second party.
* Throws if one of the trades does not go through.
*/
function trade(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken) private returns (bool) {
return (transfer(makerAddress, takerAddress, makerAmount, makerToken) &&
transfer(takerAddress, makerAddress, takerAmount, takerToken));
}
/** Transfers tokens from first party to second party.
* Prior to a transfer being done by the contract, ensure that
* tokenVal.approve(this, amount, {from : address}) has been called
* throws if the transferFrom of the token returns false
* returns true if, the transfer went through
*/
function transfer(address from, address to, uint amount, address token) private returns (bool) {
require(ERC20(token).transferFrom(from, to, amount));
return true;
}
/** Validates order arguments for fill() and cancel() functions. */
function validate(address makerAddress, uint makerAmount, address makerToken,
address takerAddress, uint takerAmount, address takerToken,
uint256 expiration, uint256 nonce, uint8 v, bytes32 r, bytes32 s) private returns (bytes32) {
// Hash arguments to identify the order.
bytes32 hashV = keccak256(makerAddress, makerAmount, makerToken,
takerAddress, takerAmount, takerToken,
expiration, nonce);
bytes memory prefix = "\x19Ethereum Signed Message:\n32";
bytes32 prefixedHash = sha3(prefix, hashV);
require(ecrecover(prefixedHash, v, r, s) == makerAddress);
return hashV;
}
}