This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
USDOOptionsModule.sol
300 lines (274 loc) · 9.1 KB
/
USDOOptionsModule.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
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.18;
//LZ
import "tapioca-sdk/dist/contracts/libraries/LzLib.sol";
//TAPIOCA
import "tapioca-periph/contracts/interfaces/IPermitBorrow.sol";
import "tapioca-periph/contracts/interfaces/IPermitAll.sol";
import "tapioca-periph/contracts/interfaces/ITapiocaOptionsBroker.sol";
import "tapioca-periph/contracts/interfaces/ISendFrom.sol";
import "../BaseUSDOStorage.sol";
/// @title USDO options module
/// @notice USDO module for oTap type actions
contract USDOOptionsModule is BaseUSDOStorage {
using SafeERC20 for IERC20;
constructor(
address _lzEndpoint,
IYieldBoxBase _yieldBox
) BaseUSDOStorage(_lzEndpoint, _yieldBox) {}
function triggerSendFrom(
uint16 lzDstChainId,
bytes calldata airdropAdapterParams,
address zroPaymentAddress,
uint256 amount,
ISendFrom.LzCallParams calldata sendFromData,
ICommonData.IApproval[] calldata approvals
) external payable {
bytes memory lzPayload = abi.encode(
PT_SEND_FROM,
msg.sender,
amount,
sendFromData,
lzEndpoint.getChainId(),
approvals
);
_lzSend(
lzDstChainId,
lzPayload,
payable(msg.sender),
zroPaymentAddress,
airdropAdapterParams,
msg.value
);
emit SendToChain(
lzDstChainId,
msg.sender,
LzLib.addressToBytes32(msg.sender),
0
);
}
function exerciseOption(
ITapiocaOptionsBrokerCrossChain.IExerciseOptionsData
calldata optionsData,
ITapiocaOptionsBrokerCrossChain.IExerciseLZData calldata lzData,
ITapiocaOptionsBrokerCrossChain.IExerciseLZSendTapData
calldata tapSendData,
ICommonData.IApproval[] calldata approvals
) external payable {
bytes32 toAddress = LzLib.addressToBytes32(optionsData.from);
_debitFrom(
optionsData.from,
lzEndpoint.getChainId(),
toAddress,
optionsData.paymentTokenAmount
);
bytes memory lzPayload = abi.encode(
PT_TAP_EXERCISE,
optionsData,
tapSendData,
approvals
);
bytes memory adapterParams = LzLib.buildDefaultAdapterParams(
lzData.extraGas
);
_lzSend(
lzData.lzDstChainId,
lzPayload,
payable(optionsData.from),
lzData.zroPaymentAddress,
adapterParams,
msg.value
);
emit SendToChain(
lzData.lzDstChainId,
optionsData.from,
toAddress,
optionsData.paymentTokenAmount
);
}
function sendFromDestination(bytes memory _payload) public {
(
,
address from,
uint256 amount,
ISendFrom.LzCallParams memory callParams,
uint16 lzDstChainId,
ICommonData.IApproval[] memory approvals
) = abi.decode(
_payload,
(
uint16,
address,
uint256,
ISendFrom.LzCallParams,
uint16,
ICommonData.IApproval[]
)
);
if (approvals.length > 0) {
_callApproval(approvals);
}
ISendFrom(address(this)).sendFrom{value: address(this).balance}(
from,
lzDstChainId,
LzLib.addressToBytes32(from),
amount,
callParams
);
emit ReceiveFromChain(lzDstChainId, from, 0);
}
function exercise(
address module,
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) public {
(
,
ITapiocaOptionsBrokerCrossChain.IExerciseOptionsData
memory optionsData,
ITapiocaOptionsBrokerCrossChain.IExerciseLZSendTapData
memory tapSendData,
ICommonData.IApproval[] memory approvals
) = abi.decode(
_payload,
(
uint16,
ITapiocaOptionsBrokerCrossChain.IExerciseOptionsData,
ITapiocaOptionsBrokerCrossChain.IExerciseLZSendTapData,
ICommonData.IApproval[]
)
);
uint256 balanceBefore = balanceOf(address(this));
bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
if (!credited) {
_creditTo(
_srcChainId,
address(this),
optionsData.paymentTokenAmount
);
creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
}
uint256 balanceAfter = balanceOf(address(this));
(bool success, bytes memory reason) = module.delegatecall(
abi.encodeWithSelector(
this.exerciseInternal.selector,
optionsData.from,
optionsData.oTAPTokenID,
optionsData.paymentToken,
optionsData.tapAmount,
optionsData.target,
tapSendData,
approvals
)
);
if (!success) {
if (
balanceAfter - balanceBefore >= optionsData.paymentTokenAmount
) {
IERC20(address(this)).safeTransfer(
optionsData.from,
optionsData.paymentTokenAmount
);
}
revert(_getRevertMsg(reason)); //forward revert because it's handled by the main executor
}
emit ReceiveFromChain(
_srcChainId,
optionsData.from,
optionsData.paymentTokenAmount
);
}
function exerciseInternal(
address from,
uint256 oTAPTokenID,
address paymentToken,
uint256 tapAmount,
address target,
ITapiocaOptionsBrokerCrossChain.IExerciseLZSendTapData
memory tapSendData,
ICommonData.IApproval[] memory approvals
) public {
if (approvals.length > 0) {
_callApproval(approvals);
}
ITapiocaOptionsBroker(target).exerciseOption(
oTAPTokenID,
paymentToken,
tapAmount
);
if (tapSendData.withdrawOnAnotherChain) {
ISendFrom(tapSendData.tapOftAddress).sendFrom(
address(this),
tapSendData.lzDstChainId,
LzLib.addressToBytes32(from),
tapAmount,
ISendFrom.LzCallParams({
refundAddress: payable(from),
zroPaymentAddress: tapSendData.zroPaymentAddress,
adapterParams: LzLib.buildDefaultAdapterParams(
tapSendData.extraGas
)
})
);
} else {
IERC20(tapSendData.tapOftAddress).safeTransfer(from, tapAmount);
}
}
function _callApproval(ICommonData.IApproval[] memory approvals) private {
for (uint256 i = 0; i < approvals.length; ) {
if (approvals[i].permitBorrow) {
try
IPermitBorrow(approvals[i].target).permitBorrow(
approvals[i].owner,
approvals[i].spender,
approvals[i].value,
approvals[i].deadline,
approvals[i].v,
approvals[i].r,
approvals[i].s
)
{} catch Error(string memory reason) {
if (!approvals[i].allowFailure) {
revert(reason);
}
}
} else if (approvals[i].permitAll) {
try
IPermitAll(approvals[i].target).permitAll(
approvals[i].owner,
approvals[i].spender,
approvals[i].deadline,
approvals[i].v,
approvals[i].r,
approvals[i].s
)
{} catch Error(string memory reason) {
if (!approvals[i].allowFailure) {
revert(reason);
}
}
} else {
try
IERC20Permit(approvals[i].target).permit(
approvals[i].owner,
approvals[i].spender,
approvals[i].value,
approvals[i].deadline,
approvals[i].v,
approvals[i].r,
approvals[i].s
)
{} catch Error(string memory reason) {
if (!approvals[i].allowFailure) {
revert(reason);
}
}
}
unchecked {
++i;
}
}
}
}