forked from perspectivefi/core-v2-hats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Factory.sol
391 lines (350 loc) · 13.7 KB
/
Factory.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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.20;
import "openzeppelin-math/Math.sol";
import "openzeppelin-contracts/access/manager/IAccessManager.sol";
import "openzeppelin-contracts-upgradeable/access/manager/AccessManagedUpgradeable.sol";
import "openzeppelin-contracts/proxy/beacon/BeaconProxy.sol";
import "openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol";
import "../interfaces/IFactory.sol";
import "../interfaces/ICurvePool.sol";
import "../interfaces/ICurveFactory.sol";
import "../interfaces/IPrincipalToken.sol";
import "../interfaces/IRegistry.sol";
import "../libraries/CurvePoolUtil.sol";
import "../libraries/Roles.sol";
/**
* @title PrincipalTokenUtil library
* @author Spectra Finance
* @notice Factory used to deploy PTs and pools.
*/
contract Factory is IFactory, AccessManagedUpgradeable {
using SafeERC20 for IERC20;
using Math for uint256;
bytes4 constant PAUSE_SELECTOR = IPrincipalToken(address(0)).pause.selector;
bytes4 constant UNPAUSE_SELECTOR = IPrincipalToken(address(0)).unPause.selector;
bytes4 constant SET_REWARDS_PROXY_SELECTOR =
IPrincipalToken(address(0)).setRewardsProxy.selector;
bytes4 constant CLAIM_REWARDS_SELECTOR = IPrincipalToken(address(0)).claimRewards.selector;
/** @notice registry of the protocol */
address private immutable registry;
/* State
*****************************************************************************************************************/
/** @notice Factory of Curve protocol, used to deploy pools */
address private curveFactory;
/* Events
*****************************************************************************************************************/
event PTDeployed(address indexed pt, address indexed poolCreator);
event CurvePoolDeployed(address indexed poolAddress, address indexed ibt, address indexed pt);
event RegistryChange(address indexed previousRegistry, address indexed newRegistry);
event CurveFactoryChange(address indexed previousFactory, address indexed newFactory);
/**
* @notice Constructor of the contract
* @param _registry The address of the registry.
*/
constructor(address _registry) {
if (_registry == address(0)) {
revert AddressError();
}
registry = _registry;
_disableInitializers(); // using this so that the deployed logic contract later cannot be initialized.
}
/**
* @notice Initializer of the contract
* @param _initialAuthority The address of the access manager.
*/
function initialize(address _initialAuthority, address _curveFactory) external initializer {
__AccessManaged_init(_initialAuthority);
_setCurveFactory(_curveFactory);
}
/** @dev See {IFactory-deployPT}. */
function deployPT(address _ibt, uint256 _duration) public override returns (address pt) {
address ptBeacon = IRegistry(registry).getPTBeacon();
if (ptBeacon == address(0)) {
revert BeaconNotSet();
}
address accessManager = authority();
bytes memory _data = abi.encodeWithSelector(
IPrincipalToken(address(0)).initialize.selector,
_ibt,
_duration,
accessManager
);
pt = address(new BeaconProxy(ptBeacon, _data));
emit PTDeployed(pt, msg.sender);
IRegistry(registry).addPT(pt);
IAccessManager(accessManager).setTargetFunctionRole(pt, getPauserSigs(), Roles.PAUSER_ROLE);
IAccessManager(accessManager).setTargetFunctionRole(
pt,
getClaimRewardsProxySelectors(),
Roles.REWARDS_HARVESTER_ROLE
);
IAccessManager(accessManager).setTargetFunctionRole(
pt,
getSetRewardsProxySelectors(),
Roles.REWARDS_PROXY_SETTER_ROLE
);
}
/** @dev See {IFactory-deployCurvePool}. */
function deployCurvePool(
address _pt,
CurvePoolParams calldata _curvePoolParams,
uint256 _initialLiquidityInIBT,
uint256 _minPTShares
) public returns (address curvePool) {
if (!IRegistry(registry).isRegisteredPT(_pt)) {
revert UnregisteredPT();
}
if (IPrincipalToken(_pt).maturity() < block.timestamp) {
revert ExpiredPT();
}
address ibt = IPrincipalToken(_pt).getIBT();
address[2] memory coins;
{
coins[0] = ibt;
coins[1] = _pt;
}
curvePool = _deployCurvePool(coins, _curvePoolParams);
emit CurvePoolDeployed(curvePool, ibt, _pt);
if (_initialLiquidityInIBT != 0) {
_addInitialLiquidity(
curvePool,
_initialLiquidityInIBT,
_minPTShares,
_curvePoolParams.initial_price
);
}
}
/** @dev See {IFactory-deployAll}. */
function deployAll(
address _ibt,
uint256 _duration,
CurvePoolParams calldata _curvePoolParams,
uint256 _initialLiquidityInIBT,
uint256 _minPTShares
) public returns (address pt, address curvePool) {
// deploy PT
address ptBeacon = IRegistry(registry).getPTBeacon();
if (ptBeacon == address(0)) {
revert BeaconNotSet();
}
address accessManager = authority();
bytes memory _encodedData = abi.encodeWithSelector(
IPrincipalToken(address(0)).initialize.selector,
_ibt,
_duration,
accessManager
);
pt = address(new BeaconProxy(ptBeacon, _encodedData));
emit PTDeployed(pt, msg.sender);
IRegistry(registry).addPT(pt);
IAccessManager(accessManager).setTargetFunctionRole(pt, getPauserSigs(), Roles.PAUSER_ROLE);
IAccessManager(accessManager).setTargetFunctionRole(
pt,
getClaimRewardsProxySelectors(),
Roles.REWARDS_HARVESTER_ROLE
);
IAccessManager(accessManager).setTargetFunctionRole(
pt,
getSetRewardsProxySelectors(),
Roles.REWARDS_PROXY_SETTER_ROLE
);
// deploy Curve Pool
address[2] memory coins;
{
coins[0] = _ibt;
coins[1] = pt;
}
curvePool = _deployCurvePool(coins, _curvePoolParams);
emit CurvePoolDeployed(curvePool, _ibt, pt);
if (_initialLiquidityInIBT != 0) {
_addInitialLiquidity(
curvePool,
_initialLiquidityInIBT,
_minPTShares,
_curvePoolParams.initial_price
);
}
}
/* GETTERS
*****************************************************************************************************************/
/** @dev See {IFactory-getRegistry}. */
function getRegistry() external view override returns (address) {
return registry;
}
/** @dev See {IFactory-getCurveFactory}. */
function getCurveFactory() external view override returns (address) {
return curveFactory;
}
/**
* @notice Getter for pause and unpause selectors, used for access management
*/
function getPauserSigs() internal pure returns (bytes4[] memory) {
bytes4[] memory selectors = new bytes4[](2);
selectors[0] = PAUSE_SELECTOR;
selectors[1] = UNPAUSE_SELECTOR;
return selectors;
}
/**
* @notice Getter for the reward proxy setter selector, used for access management
*/
function getSetRewardsProxySelectors() internal pure returns (bytes4[] memory) {
bytes4[] memory selectors = new bytes4[](1);
selectors[0] = SET_REWARDS_PROXY_SELECTOR;
return selectors;
}
/**
* @notice Getter for the claim rewards selector, used for access management
*/
function getClaimRewardsProxySelectors() internal pure returns (bytes4[] memory) {
bytes4[] memory selectors = new bytes4[](1);
selectors[0] = CLAIM_REWARDS_SELECTOR;
return selectors;
}
/* SETTERS
*****************************************************************************************************************/
/** @dev See {IFactory-setCurveFactory}. */
function setCurveFactory(address _curveFactory) public override restricted {
_setCurveFactory(_curveFactory);
}
/**
* @dev Splits the given IBT amount into IBT and PT based on pool initial price, and adds liquidity to the pool.
* @param _curvePool The address of the Curve Pool in which the user adds initial liquidity to
* @param _initialLiquidityInIBT The initial liquidity to seed the Curve Pool with (in IBT)
* @param _minPTShares The minimum allowed shares from deposit in PT
* @param _initialPrice The initial price of the Curve Pool
*/
function _addInitialLiquidity(
address _curvePool,
uint256 _initialLiquidityInIBT,
uint256 _minPTShares,
uint256 _initialPrice
) internal {
address ibt = ICurvePool(_curvePool).coins(0);
address pt = ICurvePool(_curvePool).coins(1);
{
// support for fee-on-transfer tokens
uint256 balBefore = IERC20(ibt).balanceOf(address(this));
IERC20(ibt).safeTransferFrom(msg.sender, address(this), _initialLiquidityInIBT);
_initialLiquidityInIBT = IERC20(ibt).balanceOf(address(this)) - balBefore;
}
// using fictive pool balances, the user is adding liquidity in a ratio that (closely) matches the empty pool's initial price
// with ptBalance = IBT_UNIT for having a fictive PT balance reference, ibtBalance = IBT_UNIT x initialPrice
uint256 ptBalance = 10 ** IERC20Metadata(ibt).decimals();
uint256 ibtBalance = ptBalance.mulDiv(_initialPrice, CurvePoolUtil.CURVE_UNIT);
// compute the worth of the fictive IBT balance in the pool in PT
uint256 ibtBalanceInPT = IPrincipalToken(pt).previewDepositIBT(ibtBalance);
// compute the portion of IBT to deposit in PT
uint256 ibtsToTokenize = _initialLiquidityInIBT.mulDiv(
ptBalance,
ibtBalanceInPT + ptBalance
);
// IBT amount to deposit in the Curve Pool
uint256 amount0 = _initialLiquidityInIBT - ibtsToTokenize;
uint256 allowancePT = IERC20(ibt).allowance(address(this), pt);
if (allowancePT < ibtsToTokenize) {
IERC20(ibt).forceApprove(pt, type(uint256).max);
}
// PT amount to deposit in Curve Pool
uint256 amount1 = IPrincipalToken(pt).depositIBT(
ibtsToTokenize,
address(this),
msg.sender,
_minPTShares
);
IERC20(ibt).safeIncreaseAllowance(_curvePool, amount0);
IERC20(pt).safeIncreaseAllowance(_curvePool, amount1);
ICurvePool(_curvePool).add_liquidity([amount0, amount1], 0, false, msg.sender);
}
/**
* @dev Calls the Curve factory and deploys a new Curve v2 crypto pool
*/
function _deployCurvePool(
address[2] memory _coins,
CurvePoolParams calldata _p
) internal returns (address curvePoolAddr) {
if (curveFactory == address(0)) {
revert CurveFactoryNotSet();
}
bytes memory name = bytes("Spectra-PT/IBT");
bytes memory symbol = bytes("SPT-PT/IBT");
bytes memory cd = new bytes(576); // calldata to the curve factory
address coin0 = _coins[0];
address coin1 = _coins[1];
uint256 num; // temporary variable for passing contents of _p to Yul
// append the coins array
assembly {
mstore(
add(cd, 0x20),
0x00000000000000000000000000000000000000000000000000000000000001c0
)
mstore(
add(cd, 0x40),
0x0000000000000000000000000000000000000000000000000000000000000200
)
mstore(add(cd, 0x60), coin0)
mstore(add(cd, 0x80), coin1)
}
// append the numerical parameters
num = _p.A;
assembly {
mstore(add(cd, 0xa0), num)
}
num = _p.gamma;
assembly {
mstore(add(cd, 0xc0), num)
}
num = _p.mid_fee;
assembly {
mstore(add(cd, 0xe0), num)
}
num = _p.out_fee;
assembly {
mstore(add(cd, 0x100), num)
}
num = _p.allowed_extra_profit;
assembly {
mstore(add(cd, 0x120), num)
}
num = _p.fee_gamma;
assembly {
mstore(add(cd, 0x140), num)
}
num = _p.adjustment_step;
assembly {
mstore(add(cd, 0x160), num)
}
num = _p.admin_fee;
assembly {
mstore(add(cd, 0x180), num)
}
num = _p.ma_half_time;
assembly {
mstore(add(cd, 0x1a0), num)
}
num = _p.initial_price;
assembly {
mstore(add(cd, 0x1c0), num)
mstore(add(cd, 0x1e0), mload(name))
mstore(add(cd, 0x200), mload(add(name, 0x20)))
mstore(add(cd, 0x220), mload(symbol))
mstore(add(cd, 0x240), mload(add(symbol, 0x20)))
}
// prepend the function selector
cd = bytes.concat(ICurveFactory(address(0)).deploy_pool.selector, cd);
// make the call to the curve factory
(bool success, bytes memory result) = address(curveFactory).call(cd);
if (!success) {
revert DeploymentFailed();
}
assembly {
curvePoolAddr := mload(add(add(result, 12), 20))
}
}
function _setCurveFactory(address _curveFactory) internal {
if (_curveFactory == address(0)) {
revert AddressError();
}
emit CurveFactoryChange(curveFactory, _curveFactory);
curveFactory = _curveFactory;
}
}