-
Notifications
You must be signed in to change notification settings - Fork 0
/
wuwei-experimental.sol
283 lines (192 loc) · 8.95 KB
/
wuwei-experimental.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
pragma solidity ^0.8.0;
//@crzypatchwork @hicetnunc2000 GPL-3.0
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@ @@@ &@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@ @@@@,%&&&&&&& &&&&&&%*@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@. @ @@@ @@@ /@@@ @@@@@@@@@@@@@@@ @@@@@@/ &@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@ @@@@@@@@@/ @@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@ @@@ @@@ /@@@ @@@@@@@@@@@@ @@@@@@@@@@@ @@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@ @@@ @@@ /@@@ @@@@@@@@@@ %@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@ @@@ @@@@@@@@@/@@ @@@ @@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@ @@@ @@@ @@@@ ,@@@@@@@@ @@@ @@@ @@/ @@ @@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@ @@@@ @@@@ @@@@@ @@@@@@ @@@@ @@% @@@@@ #@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@ %@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
interface ERC1155Interface {
function safeTransferFrom(
address,
address,
uint256,
uint256,
bytes calldata
) external;
function royaltyInfo(
uint256,
uint256
) external returns (address, uint256);
function supportsInterface(
bytes4
) external returns (bool);
}
interface ERC20Interface {
function transfer(address, uint256) external returns (bool);
function transferFrom(address, address, uint256) external returns (bool);
}
struct SwapStructV1 {
address erc1155;
address issuer; // swap issuer as msg.sender
uint256 amount;
uint256 value;
uint256 tokenId;
bool active;
}
struct SwapStructV2 {
address erc20;
address issuer;
uint256 amount;
uint256 value;
bool active;
}
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.5.0/contracts/security/ReentrancyGuard.sol
contract ReEntrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
modifier nonReentrant() {
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
_status = _ENTERED;
_;
_status = _NOT_ENTERED;
}
}
contract WuweiV1 is ReEntrancyGuard {
bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
event swapLog(address erc1155, uint256 amount, uint256 value, uint256 tokenId, uint256 op, uint256 indexed swapId);
uint256 public nonce;
uint256 public fee;
address public manager;
mapping(uint256 => SwapStructV1) public swaps;
constructor(address _manager, uint256 _fee) public { manager = _manager; fee = _fee; }
// management
function updateFee(uint256 _fee) public { require(msg.sender == manager); fee = _fee; }
function updateManager(address _manager) public { require(msg.sender == manager); manager = _manager; }
// erc1155 approval must be given
function swap(uint256 _id, uint256 _amount, uint256 _value, address _erc1155) public nonReentrant {
require(((_value == 0) || (_value >= 10000)) && ((_amount > 0) && (_amount <= 10000)));
nonce++;
// mapping
swaps[nonce] = SwapStructV1(_erc1155, msg.sender, _amount, _value, _id, true);
// transfer erc1155 to escrow
ERC1155Interface(_erc1155).safeTransferFrom(msg.sender, address(this), _id, _amount, '0x00');
// event
emit swapLog(_erc1155, _amount, _value, _id, 0, nonce);
}
function cancelSwap(uint256 _swapId) public nonReentrant {
require((swaps[_swapId].issuer == msg.sender) && (swaps[_swapId].active));
// mapping
swaps[_swapId].active = false;
uint256 _amount = swaps[_swapId].amount;
swaps[_swapId].amount = 0;
swaps[_swapId].value = 0;
// transfer erc1155 out of escrow
ERC1155Interface(swaps[_swapId].erc1155).safeTransferFrom(address(this), msg.sender, swaps[_swapId].tokenId, _amount, '0x00');
// event
emit swapLog(swaps[_swapId].erc1155, _amount, 0, swaps[_swapId].tokenId, 2, _swapId);
}
function collect(uint256 _swapId, uint256 _amount) public payable nonReentrant {
require(
(swaps[_swapId].amount > 0) &&
((msg.value == 0) || (msg.value >= 10000)) &&
(swaps[_swapId].active) &&
(msg.sender != swaps[_swapId].issuer) &&
(_amount <= swaps[_swapId].amount) &&
(msg.value == swaps[_swapId].value * _amount)
);
// storage changes/retrancy measures
swaps[_swapId].amount -= _amount;
if (swaps[_swapId].amount == 0) swaps[_swapId].active = false;
uint256 _fee = ((fee * msg.value) / 10000);
if (msg.value != 0) {
if (ERC1155Interface(swaps[_swapId].erc1155).supportsInterface(_INTERFACE_ID_ROYALTIES_EIP2981)) {
// EIP2981
(address _creator, uint256 _royalties) = ERC1155Interface(swaps[_swapId].erc1155).royaltyInfo(swaps[_swapId].tokenId, msg.value);
// royalties, management fees and market value distribution
if (fee != 0) manager.call{ value : _fee }("");
_creator.call{ value : _royalties }("");
swaps[_swapId].issuer.call{ value : msg.value - (_royalties + _fee) }("");
} else {
if (fee != 0) manager.call{ value : _fee }("");
swaps[_swapId].issuer.call{ value : msg.value - _fee }("");
}
}
// transfer erc1155
ERC1155Interface(swaps[_swapId].erc1155).safeTransferFrom(address(this), msg.sender, swaps[_swapId].tokenId, _amount, '0x00');
emit swapLog(swaps[_swapId].erc1155, _amount, swaps[_swapId].value * _amount, swaps[_swapId].tokenId, 1, _swapId);
}
}
contract WuweiV21 is ReEntrancyGuard {
event swapLog(address erc20, uint256 amount, uint256 value, uint256 op, uint256 indexed swapId);
uint256 public nonce;
mapping (uint256 => SwapStructV2) public swaps;
function swap (address _erc20, uint256 _amount) public payable {
require(_amount >= 10000 && msg.value >= 10000);
nonce++;
swaps[nonce] = SwapStructV2(_erc20, msg.sender, _amount, msg.value, true);
emit swapLog(_erc20, _amount, msg.value, 0, nonce);
}
}
contract WuweiV2 is ReEntrancyGuard {
event swapLog(address erc20, uint256 amount, uint256 value, uint256 op, uint256 indexed swapId);
uint256 public nonce;
mapping (uint256 => SwapStructV2) public swaps;
function swap (address _erc20, uint256 _amount, uint256 _value) public nonReentrant {
nonce++;
swaps[nonce] = SwapStructV2(_erc20, msg.sender, _amount, _value, true);
require(ERC20Interface(_erc20).transferFrom(msg.sender, address(this), _amount));
emit swapLog(_erc20, _amount, _value, 0, nonce);
}
function fill (uint256 _swapId, uint256 _amount) public payable nonReentrant {
require(
(swaps[_swapId].active) &&
(msg.sender == swaps[_swapId].issuer) &&
(_amount <= swaps[_swapId].amount) &&
(msg.value <= swaps[_swapId].value) &&
(msg.value == ((swaps[_swapId].value * _amount) / swaps[_swapId].amount))
);
swaps[_swapId].amount -= _amount;
swaps[_swapId].value -= msg.value;
if (swaps[_swapId].amount == 0) swaps[_swapId].active = false;
require(ERC20Interface(swaps[_swapId].erc20).transfer(msg.sender, _amount));
swaps[_swapId].issuer.call{ value : msg.value }("");
emit swapLog(swaps[_swapId].erc20, _amount, msg.value, 1, _swapId);
}
function cancelSwap (uint256 _swapId) public nonReentrant {
require(swaps[_swapId].active && msg.sender == swaps[_swapId].issuer);
swaps[_swapId].active = false;
uint256 _amount = swaps[_swapId].amount;
swaps[_swapId].amount = 0;
require(ERC20Interface(swaps[_swapId].erc20).transfer(address(this), _amount));
emit swapLog(swaps[_swapId].erc20, _amount, 0, 2, _swapId);
}
}
interface IWuwei { function fill (uint256, uint256) external payable; }
struct Order {
address erc20;
uint256 swapId;
uint256 amount;
uint256 value;
}
contract AggregatorV2 is ReEntrancyGuard {
function multiOrder(Order[] calldata _orders, address _target) public payable nonReentrant {
uint256 sum;
for (uint256 i; i < _orders.length; i++) { sum += _orders[i].value; }
require(msg.value == sum);
for (uint256 i; i < _orders.length; i++) {
IWuwei(_target).fill{ value : _orders[i].value }(_orders[i].swapId, _orders[i].amount);
require(ERC20Interface(_orders[i].erc20).transfer(msg.sender, _orders[i].amount));
}
}
}