-
Notifications
You must be signed in to change notification settings - Fork 0
/
JOJOView.sol
171 lines (145 loc) · 5.39 KB
/
JOJOView.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
/*
Copyright 2022 JOJO Exchange
SPDX-License-Identifier: BUSL-1.1
*/
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "./interfaces/IDealer.sol";
import "./libraries/Errors.sol";
import "./libraries/Liquidation.sol";
import "./libraries/Trading.sol";
import "./JOJOStorage.sol";
abstract contract JOJOView is JOJOStorage, IDealer {
// ========== simple read state ==========
/// @inheritdoc IDealer
function getRiskParams(address perp) external view returns (Types.RiskParams memory params) {
params = state.perpRiskParams[perp];
}
/// @inheritdoc IDealer
function getAllRegisteredPerps() external view returns (address[] memory) {
return state.registeredPerp;
}
/// @inheritdoc IDealer
function getMarkPrice(address perp) external view returns (uint256) {
return Liquidation.getMarkPrice(state, perp);
}
/// @inheritdoc IDealer
function getPositions(address trader) external view returns (address[] memory) {
return state.openPositions[trader];
}
/// @inheritdoc IDealer
function getCreditOf(address trader)
external
view
returns (
int256 primaryCredit,
uint256 secondaryCredit,
uint256 pendingPrimaryWithdraw,
uint256 pendingSecondaryWithdraw,
uint256 executionTimestamp
)
{
primaryCredit = state.primaryCredit[trader];
secondaryCredit = state.secondaryCredit[trader];
pendingPrimaryWithdraw = state.pendingPrimaryWithdraw[trader];
pendingSecondaryWithdraw = state.pendingSecondaryWithdraw[trader];
executionTimestamp = state.withdrawExecutionTimestamp[trader];
}
/// @inheritdoc IDealer
function isOrderSenderValid(address orderSender) external view returns (bool) {
return state.validOrderSender[orderSender];
}
/// @inheritdoc IDealer
function isFastWithdrawalValid(address fastWithdrawOperator) external view returns (bool) {
return state.fastWithdrawalWhitelist[fastWithdrawOperator];
}
/// @inheritdoc IDealer
function isCreditAllowed(
address from,
address spender
)
external
view
returns (uint256 primaryCreditAllowed, uint256 secondaryCreditAllowed)
{
return (state.primaryCreditAllowed[from][spender], state.secondaryCreditAllowed[from][spender]);
}
/// @inheritdoc IDealer
function isOperatorValid(address client, address operator) external view returns (bool) {
return state.operatorRegistry[client][operator];
}
// ========== liquidation related ==========
/// @inheritdoc IDealer
function isSafe(address trader) external view returns (bool safe) {
return Liquidation._isMMSafe(state, trader);
}
function isIMSafe(address trader) external view returns (bool safe) {
return Liquidation._isIMSafe(state, trader);
}
/// @inheritdoc IDealer
function isAllSafe(address[] calldata traderList) external view returns (bool safe) {
return Liquidation._isAllMMSafe(state, traderList);
}
/// @inheritdoc IDealer
function getFundingRate(address perp) external view returns (int256) {
return IPerpetual(perp).getFundingRate();
}
/// @inheritdoc IDealer
function getTraderRisk(address trader)
external
view
returns (int256 netValue, uint256 exposure, uint256 initialMargin, uint256 maintenanceMargin)
{
(netValue, exposure, initialMargin, maintenanceMargin) = Liquidation.getTotalExposure(state, trader);
}
/// @inheritdoc IDealer
function getLiquidationPrice(address trader, address perp) external view returns (uint256 liquidationPrice) {
return Liquidation.getLiquidationPrice(state, trader, perp);
}
/// @inheritdoc IDealer
function getLiquidationCost(
address perp,
address liquidatedTrader,
int256 requestPaperAmount
)
external
view
returns (int256 liqtorPaperChange, int256 liqtorCreditChange)
{
(liqtorPaperChange, liqtorCreditChange,) =
Liquidation.getLiquidateCreditAmount(state, perp, liquidatedTrader, requestPaperAmount);
}
// ========== order related ==========
/// @inheritdoc IDealer
function getOrderFilledAmount(bytes32 orderHash) external view returns (uint256 filledAmount) {
filledAmount = state.orderFilledPaperAmount[orderHash];
}
// ========== encode data helper ==========
function getSetOperatorCallData(address operator, bool isValid) external pure returns (bytes memory) {
return abi.encodeWithSignature("setOperator(address,bool)", operator, isValid);
}
function getRequestWithdrawCallData(
address from,
uint256 primaryAmount,
uint256 secondaryAmount
)
external
pure
returns (bytes memory)
{
return abi.encodeWithSignature("requestWithdraw(address,uint256,uint256)", from, primaryAmount, secondaryAmount);
}
function getExecuteWithdrawCallData(
address from,
address to,
bool isInternal,
bytes memory param
)
external
pure
returns (bytes memory)
{
return abi.encodeWithSignature("executeWithdraw(address,address,bool,bytes)", from, to, isInternal, param);
}
}