forked from sherlock-audit/2023-06-symmetrical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LibSolvency.sol
187 lines (173 loc) · 7.48 KB
/
LibSolvency.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
// SPDX-License-Identifier: SYMM-Core-Business-Source-License-1.1
// This contract is licensed under the SYMM Core Business Source License 1.1
// Copyright (c) 2023 Symmetry Labs AG
// For more information, see https://docs.symm.io/legal-disclaimer/license
pragma solidity >=0.8.18;
import "../storages/MuonStorage.sol";
import "../storages/QuoteStorage.sol";
import "./LibAccount.sol";
import "./LibQuote.sol";
library LibSolvency {
using LockedValuesOps for LockedValues;
function isSolventAfterOpenPosition(
uint256 quoteId,
uint256 filledAmount,
PairUpnlAndPriceSig memory upnlSig
) internal view returns (bool) {
Quote storage quote = QuoteStorage.layout().quotes[quoteId];
int256 partyBAvailableBalance = LibAccount.partyBAvailableBalance(
upnlSig.upnlPartyB,
quote.partyB,
quote.partyA
);
int256 partyAAvailableBalance = LibAccount.partyAAvailableBalance(
upnlSig.upnlPartyA,
quote.partyA
);
uint256 lockedAmount;
uint256 lockedMM;
if (quote.orderType == OrderType.LIMIT) {
lockedAmount =
(filledAmount * (quote.lockedValues.cva + quote.lockedValues.lf)) /
quote.quantity;
lockedMM = (filledAmount * quote.lockedValues.mm) / quote.quantity;
} else {
lockedAmount = quote.lockedValues.cva + quote.lockedValues.lf;
lockedMM = quote.lockedValues.mm;
}
partyAAvailableBalance -= int256(lockedAmount);
partyBAvailableBalance -= int256(lockedAmount);
if (quote.positionType == PositionType.LONG) {
if (quote.openedPrice >= upnlSig.price) {
uint256 diff = (filledAmount * (quote.openedPrice - upnlSig.price)) / 1e18;
uint256 max = diff > lockedMM ? diff : lockedMM;
require(
partyAAvailableBalance - int256(max) >= 0,
"LibSolvency: PartyA will be liquidatable"
);
require(
partyBAvailableBalance + int256(diff) - int256(lockedMM) >= 0,
"LibSolvency: PartyB will be liquidatable"
);
} else {
uint256 diff = (filledAmount * (upnlSig.price - quote.openedPrice)) / 1e18;
uint256 max = diff > lockedMM ? diff : lockedMM;
require(
partyBAvailableBalance - int256(max) >= 0,
"LibSolvency: PartyB will be liquidatable"
);
require(
partyAAvailableBalance + int256(diff) - int256(lockedMM) >= 0,
"LibSolvency: PartyA will be liquidatable"
);
}
} else if (quote.positionType == PositionType.SHORT) {
if (quote.openedPrice >= upnlSig.price) {
uint256 diff = (filledAmount * (quote.openedPrice - upnlSig.price)) / 1e18;
uint256 max = diff > lockedMM ? diff : lockedMM;
require(
partyBAvailableBalance - int256(max) >= 0,
"LibSolvency: PartyB will be liquidatable"
);
require(
partyAAvailableBalance + int256(diff) - int256(lockedMM) >= 0,
"LibSolvency: PartyA will be liquidatable"
);
} else {
uint256 diff = (filledAmount * (upnlSig.price - quote.openedPrice)) / 1e18;
uint256 max = diff > lockedMM ? diff : lockedMM;
require(
partyAAvailableBalance - int256(max) >= 0,
"LibSolvency: PartyA will be liquidatable"
);
require(
partyBAvailableBalance + int256(diff) - int256(lockedMM) >= 0,
"LibSolvency: PartyB will be liquidatable"
);
}
}
return true;
}
function isSolventAfterClosePosition(
uint256 quoteId,
uint256 filledAmount,
uint256 closedPrice,
PairUpnlAndPriceSig memory upnlSig
) internal view returns (bool) {
Quote storage quote = QuoteStorage.layout().quotes[quoteId];
uint256 unlockedAmount = (filledAmount * (quote.lockedValues.cva + quote.lockedValues.lf)) /
LibQuote.quoteOpenAmount(quote);
int256 partyBAvailableBalance = LibAccount.partyBAvailableBalanceForLiquidation(
upnlSig.upnlPartyB,
quote.partyB,
quote.partyA
) + int256(unlockedAmount);
int256 partyAAvailableBalance = LibAccount.partyAAvailableBalanceForLiquidation(
upnlSig.upnlPartyA,
quote.partyA
) + int256(unlockedAmount);
require(
partyBAvailableBalance >= 0 && partyAAvailableBalance >= 0,
"LibSolvency: Available balance is lower than zero"
);
if (quote.positionType == PositionType.LONG) {
if (closedPrice >= upnlSig.price) {
require(
uint256(partyBAvailableBalance) >=
((filledAmount * (closedPrice - upnlSig.price)) / 1e18),
"LibSolvency: PartyB will be liquidatable"
);
} else {
require(
uint256(partyAAvailableBalance) >=
((filledAmount * (upnlSig.price - closedPrice)) / 1e18),
"LibSolvency: PartyA will be liquidatable"
);
}
} else if (quote.positionType == PositionType.SHORT) {
if (closedPrice <= upnlSig.price) {
require(
uint256(partyBAvailableBalance) >=
((filledAmount * (upnlSig.price - closedPrice)) / 1e18),
"LibSolvency: PartyB will be liquidatable"
);
} else {
require(
uint256(partyAAvailableBalance) >=
((filledAmount * (closedPrice - upnlSig.price)) / 1e18),
"LibSolvency: PartyA will be liquidatable"
);
}
}
return true;
}
function isSolventAfterRequestToClosePosition(
uint256 quoteId,
uint256 closePrice,
uint256 quantityToClose,
SingleUpnlAndPriceSig memory upnlSig
) internal view returns (bool) {
Quote storage quote = QuoteStorage.layout().quotes[quoteId];
uint256 unlockedAmount = (quantityToClose *
(quote.lockedValues.cva + quote.lockedValues.lf)) / LibQuote.quoteOpenAmount(quote);
int256 availableBalance = LibAccount.partyAAvailableBalanceForLiquidation(
upnlSig.upnl,
msg.sender
) + int256(unlockedAmount);
require(availableBalance >= 0, "LibSolvency: Available balance is lower than zero");
if (quote.positionType == PositionType.LONG && closePrice <= upnlSig.price) {
require(
uint256(availableBalance) >=
((quantityToClose * (upnlSig.price - closePrice)) / 1e18),
"LibSolvency: partyA will be liquidatable"
);
} else if (quote.positionType == PositionType.SHORT && closePrice >= upnlSig.price) {
require(
uint256(availableBalance) >=
((quantityToClose * (closePrice - upnlSig.price)) / 1e18),
"LibSolvency: partyA will be liquidatable"
);
}
return true;
}
}