-
Notifications
You must be signed in to change notification settings - Fork 7
/
CFAPenaltyBidFacet.sol
282 lines (251 loc) · 9.2 KB
/
CFAPenaltyBidFacet.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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "../libraries/LibCFABasePCO.sol";
import {CFABasePCOFacetModifiers} from "./CFABasePCOFacet.sol";
import "../libraries/LibCFAPenaltyBid.sol";
import "../interfaces/ICFAPenaltyBid.sol";
import {IConstantFlowAgreementV1} from "@superfluid-finance/ethereum-contracts/contracts/apps/CFAv1Library.sol";
import {CFAv1Library} from "@superfluid-finance/ethereum-contracts/contracts/apps/CFAv1Library.sol";
import {ISuperToken} from "@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
/// @notice Handles bidding using CFAs and penalities
contract CFAPenaltyBidFacet is ICFAPenaltyBid, CFABasePCOFacetModifiers {
using CFAv1Library for CFAv1Library.InitData;
using SafeERC20 for ISuperToken;
modifier onlyIfPendingBid() {
// Check if pending bid exists
require(
this.hasPendingBid(),
"CFAPenaltyBidFacet: Pending bid does not exist"
);
_;
}
modifier onlyIfNotPendingBid() {
// Check if pending bid exists
require(
!this.hasPendingBid(),
"CFAPenaltyBidFacet: Pending bid exists"
);
_;
}
modifier onlyAfterBidPeriod() {
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
LibCFABasePCO.DiamondStorage storage ds = LibCFABasePCO
.diamondStorage();
uint256 bidPeriodLengthInSeconds = ds
.paramsStore
.getBidPeriodLengthInSeconds();
uint256 elapsedTime = block.timestamp - _pendingBid.timestamp;
require(
elapsedTime >= bidPeriodLengthInSeconds ||
shouldBidPeriodEndEarly(),
"CFAPenaltyBidFacet: Bid period has not elapsed"
);
_;
}
modifier onlyDuringBidPeriod() {
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
LibCFABasePCO.DiamondStorage storage ds = LibCFABasePCO
.diamondStorage();
uint256 bidPeriodLengthInSeconds = ds
.paramsStore
.getBidPeriodLengthInSeconds();
uint256 elapsedTime = block.timestamp - _pendingBid.timestamp;
require(
elapsedTime < bidPeriodLengthInSeconds &&
!shouldBidPeriodEndEarly(),
"CFAPenaltyBidFacet: Bid period has elapsed"
);
_;
}
/**
* @notice Should bid period end early
*/
function shouldBidPeriodEndEarly() public view returns (bool) {
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
LibCFABasePCO.DiamondStorage storage ds = LibCFABasePCO
.diamondStorage();
LibCFABasePCO.Bid storage _currentBid = LibCFABasePCO._currentBid();
LibCFABasePCO.DiamondCFAStorage storage cs = LibCFABasePCO.cfaStorage();
(uint256 timestamp, int96 flowRate, , ) = cs.cfaV1.cfa.getFlow(
ds.paramsStore.getPaymentToken(),
_currentBid.bidder,
address(this)
);
return
timestamp > _pendingBid.timestamp ||
flowRate == 0 ||
!LibCFABasePCO._isPayerBidActive();
}
/**
* @notice Get pending bid
*/
function pendingBid() external pure returns (LibCFAPenaltyBid.Bid memory) {
LibCFAPenaltyBid.Bid storage bid = LibCFAPenaltyBid.pendingBid();
return bid;
}
/**
* @notice Checks if there is a pending bid
*/
function hasPendingBid() external view returns (bool) {
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
return _pendingBid.contributionRate > 0;
}
/**
* @notice Get penalty payment
*/
function calculatePenalty() external view returns (uint256) {
return LibCFAPenaltyBid._calculatePenalty();
}
/**
* @notice Edit bid
* - Must be the current payer
* - Must have permissions to update flow for payer
* @param newContributionRate New contribution rate for bid
* @param newForSalePrice Intented new for sale price. Must be within rounding bounds of newContributionRate
*/
function editBid(int96 newContributionRate, uint256 newForSalePrice)
external
onlyPayer
onlyIfNotPendingBid
{
LibCFABasePCO._editBid(newContributionRate, newForSalePrice);
}
/**
* @notice Place a bid to purchase license as msg.sender
* - Pending bid must not exist
* - Must have permissions to create flow for bidder
* - Must have ERC-20 approval of payment token
* @param newContributionRate New contribution rate for bid
* @param newForSalePrice Intented new for sale price. Must be within rounding bounds of newContributionRate
*/
function placeBid(int96 newContributionRate, uint256 newForSalePrice)
external
onlyIfPayerBidActive
onlyNotPayer
{
LibCFAPenaltyBid._placeBid(
newContributionRate,
newForSalePrice,
new bytes(0)
);
}
/**
* @notice Edit content hash
* - Must be the current payer
* - Must have permissions to update flow for payer
* @param contentHash Content hash for parcel content
*/
function editContentHash(bytes calldata contentHash) external onlyPayer {
LibCFABasePCO._editContentHash(contentHash);
}
/**
* @notice Edit bid with content hash
* - Must be the current payer
* - Must have permissions to update flow for payer
* @param newContributionRate New contribution rate for bid
* @param newForSalePrice Intented new for sale price. Must be within rounding bounds of newContributionRate
* @param contentHash Content hash for parcel content
*/
function editBid(
int96 newContributionRate,
uint256 newForSalePrice,
bytes calldata contentHash
) external onlyPayer onlyIfNotPendingBid {
LibCFABasePCO._editBid(
newContributionRate,
newForSalePrice,
contentHash
);
}
/**
* @notice Place a bid with content hash
* - Pending bid must not exist
* - Must have permissions to create flow for bidder
* - Must have ERC-20 approval of payment token
* @param newContributionRate New contribution rate for bid
* @param newForSalePrice Intented new for sale price. Must be within rounding bounds of newContributionRate
* @param contentHash Content hash for parcel content
*/
function placeBid(
int96 newContributionRate,
uint256 newForSalePrice,
bytes calldata contentHash
) external onlyIfPayerBidActive onlyNotPayer {
LibCFAPenaltyBid._placeBid(
newContributionRate,
newForSalePrice,
contentHash
);
}
/**
* @notice Accept a pending bid as the current payer
* - Must be payer
* - Pending bid must exist
* - Must be within bidding period
*/
function acceptBid()
external
onlyPayer
onlyIfPendingBid
onlyDuringBidPeriod
{
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
LibCFABasePCO.Bid storage _currentBid = LibCFABasePCO._currentBid();
emit BidAccepted(
_currentBid.bidder,
_pendingBid.bidder,
_currentBid.forSalePrice
);
// Reentrancy on ERC721 transfer
LibCFAPenaltyBid._triggerTransfer();
}
/**
* @notice Reject a pending bid as the current payer
* - Must be payer
* - Pending bid must exist
* - Must be within bidding period
* - Must approve penalty amount
* @param newContributionRate New contribution rate for bid
* @param newForSalePrice Intented new for sale price. Must be within rounding bounds of newContributionRate
*/
function rejectBid(int96 newContributionRate, uint256 newForSalePrice)
external
onlyPayer
onlyIfPendingBid
onlyDuringBidPeriod
{
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
LibCFABasePCO.Bid storage _currentBid = LibCFABasePCO._currentBid();
emit BidRejected(
_currentBid.bidder,
_pendingBid.bidder,
_currentBid.forSalePrice
);
LibCFAPenaltyBid._rejectBid(newContributionRate, newForSalePrice);
}
/**
* @notice Trigger a transfer after bidding period has elapsed
* - Pending bid must exist
* - Must be after bidding period
*/
function triggerTransfer() external onlyIfPendingBid onlyAfterBidPeriod {
LibCFAPenaltyBid.Bid storage _pendingBid = LibCFAPenaltyBid
.pendingBid();
LibCFABasePCO.Bid storage _currentBid = LibCFABasePCO._currentBid();
emit TransferTriggered(
msg.sender,
_currentBid.bidder,
_pendingBid.bidder,
_currentBid.forSalePrice
);
// Reentrancy on ERC721 transfer
LibCFAPenaltyBid._triggerTransfer();
}
}