-
Notifications
You must be signed in to change notification settings - Fork 45
/
Collector.sol
341 lines (291 loc) · 11.1 KB
/
Collector.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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {ICollector} from './ICollector.sol';
import {ReentrancyGuard} from '../dependencies/openzeppelin/ReentrancyGuard.sol';
import {VersionedInitializable} from '../misc/aave-upgradeability/VersionedInitializable.sol';
import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol';
import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol';
import {Address} from '../dependencies/openzeppelin/contracts/Address.sol';
/**
* @title Collector
* @notice Stores ERC20 tokens of an ecosystem reserve and allows to dispose of them via approval
* or transfer dynamics or streaming capabilities.
* Modification of Sablier https://github.com/sablierhq/sablier/blob/develop/packages/protocol/contracts/Sablier.sol
* Original can be found also deployed on https://etherscan.io/address/0xCD18eAa163733Da39c232722cBC4E8940b1D8888
* Modifications:
* - Sablier "pulls" the funds from the creator of the stream at creation. In the Aave case, we already have the funds.
* - Anybody can create streams on Sablier. Here, only the funds admin (Aave governance via controller) can
* - Adapted codebase to Solidity 0.8.11, mainly removing SafeMath and CarefulMath to use native safe math
* - Same as with creation, on Sablier the `sender` and `recipient` can cancel a stream. Here, only fund admin and recipient
* @author BGD Labs
**/
contract Collector is VersionedInitializable, ICollector, ReentrancyGuard {
using SafeERC20 for IERC20;
using Address for address payable;
/*** Storage Properties ***/
/**
* @notice Address of the current funds admin.
*/
address internal _fundsAdmin;
/**
* @notice Current revision of the contract.
*/
uint256 public constant REVISION = 5;
/**
* @notice Counter for new stream ids.
*/
uint256 private _nextStreamId;
/**
* @notice The stream objects identifiable by their unsigned integer ids.
*/
mapping(uint256 => Stream) private _streams;
/// @inheritdoc ICollector
address public constant ETH_MOCK_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
/*** Modifiers ***/
/**
* @dev Throws if the caller is not the funds admin.
*/
modifier onlyFundsAdmin() {
require(msg.sender == _fundsAdmin, 'ONLY_BY_FUNDS_ADMIN');
_;
}
/**
* @dev Throws if the caller is not the funds admin of the recipient of the stream.
* @param streamId The id of the stream to query.
*/
modifier onlyAdminOrRecipient(uint256 streamId) {
require(
msg.sender == _fundsAdmin || msg.sender == _streams[streamId].recipient,
'caller is not the funds admin or the recipient of the stream'
);
_;
}
/**
* @dev Throws if the provided id does not point to a valid stream.
*/
modifier streamExists(uint256 streamId) {
require(_streams[streamId].isEntity, 'stream does not exist');
_;
}
/*** Contract Logic Starts Here */
/// @inheritdoc ICollector
function initialize(address fundsAdmin, uint256 nextStreamId) external initializer {
if (nextStreamId != 0) {
_nextStreamId = nextStreamId;
}
_setFundsAdmin(fundsAdmin);
}
/*** View Functions ***/
/// @inheritdoc VersionedInitializable
function getRevision() internal pure override returns (uint256) {
return REVISION;
}
/// @inheritdoc ICollector
function getFundsAdmin() external view returns (address) {
return _fundsAdmin;
}
/// @inheritdoc ICollector
function getNextStreamId() external view returns (uint256) {
return _nextStreamId;
}
/// @inheritdoc ICollector
function getStream(
uint256 streamId
)
external
view
streamExists(streamId)
returns (
address sender,
address recipient,
uint256 deposit,
address tokenAddress,
uint256 startTime,
uint256 stopTime,
uint256 remainingBalance,
uint256 ratePerSecond
)
{
sender = _streams[streamId].sender;
recipient = _streams[streamId].recipient;
deposit = _streams[streamId].deposit;
tokenAddress = _streams[streamId].tokenAddress;
startTime = _streams[streamId].startTime;
stopTime = _streams[streamId].stopTime;
remainingBalance = _streams[streamId].remainingBalance;
ratePerSecond = _streams[streamId].ratePerSecond;
}
/**
* @notice Returns either the delta in seconds between `block.timestamp` and `startTime` or
* between `stopTime` and `startTime, whichever is smaller. If `block.timestamp` is before
* `startTime`, it returns 0.
* @dev Throws if the id does not point to a valid stream.
* @param streamId The id of the stream for which to query the delta.
* @notice Returns the time delta in seconds.
*/
function deltaOf(uint256 streamId) public view streamExists(streamId) returns (uint256 delta) {
Stream memory stream = _streams[streamId];
if (block.timestamp <= stream.startTime) return 0;
if (block.timestamp < stream.stopTime) return block.timestamp - stream.startTime;
return stream.stopTime - stream.startTime;
}
struct BalanceOfLocalVars {
uint256 recipientBalance;
uint256 withdrawalAmount;
uint256 senderBalance;
}
/// @inheritdoc ICollector
function balanceOf(
uint256 streamId,
address who
) public view streamExists(streamId) returns (uint256 balance) {
Stream memory stream = _streams[streamId];
BalanceOfLocalVars memory vars;
uint256 delta = deltaOf(streamId);
vars.recipientBalance = delta * stream.ratePerSecond;
/*
* If the stream `balance` does not equal `deposit`, it means there have been withdrawals.
* We have to subtract the total amount withdrawn from the amount of money that has been
* streamed until now.
*/
if (stream.deposit > stream.remainingBalance) {
vars.withdrawalAmount = stream.deposit - stream.remainingBalance;
vars.recipientBalance = vars.recipientBalance - vars.withdrawalAmount;
}
if (who == stream.recipient) return vars.recipientBalance;
if (who == stream.sender) {
vars.senderBalance = stream.remainingBalance - vars.recipientBalance;
return vars.senderBalance;
}
return 0;
}
/*** Public Effects & Interactions Functions ***/
/// @inheritdoc ICollector
function approve(IERC20 token, address recipient, uint256 amount) external onlyFundsAdmin {
token.safeApprove(recipient, amount);
}
/// @inheritdoc ICollector
function transfer(IERC20 token, address recipient, uint256 amount) external onlyFundsAdmin {
require(recipient != address(0), 'INVALID_0X_RECIPIENT');
if (address(token) == ETH_MOCK_ADDRESS) {
payable(recipient).sendValue(amount);
} else {
token.safeTransfer(recipient, amount);
}
}
/// @inheritdoc ICollector
function setFundsAdmin(address admin) external onlyFundsAdmin {
_setFundsAdmin(admin);
}
/**
* @dev Transfer the ownership of the funds administrator role.
* @param admin The address of the new funds administrator
*/
function _setFundsAdmin(address admin) internal {
_fundsAdmin = admin;
emit NewFundsAdmin(admin);
}
struct CreateStreamLocalVars {
uint256 duration;
uint256 ratePerSecond;
}
/// @inheritdoc ICollector
/**
* @dev Throws if the recipient is the zero address, the contract itself or the caller.
* Throws if the deposit is 0.
* Throws if the start time is before `block.timestamp`.
* Throws if the stop time is before the start time.
* Throws if the duration calculation has a math error.
* Throws if the deposit is smaller than the duration.
* Throws if the deposit is not a multiple of the duration.
* Throws if the rate calculation has a math error.
* Throws if the next stream id calculation has a math error.
* Throws if the contract is not allowed to transfer enough tokens.
* Throws if there is a token transfer failure.
*/
function createStream(
address recipient,
uint256 deposit,
address tokenAddress,
uint256 startTime,
uint256 stopTime
) external onlyFundsAdmin returns (uint256) {
require(recipient != address(0), 'stream to the zero address');
require(recipient != address(this), 'stream to the contract itself');
require(recipient != msg.sender, 'stream to the caller');
require(deposit > 0, 'deposit is zero');
require(startTime >= block.timestamp, 'start time before block.timestamp');
require(stopTime > startTime, 'stop time before the start time');
CreateStreamLocalVars memory vars;
vars.duration = stopTime - startTime;
/* Without this, the rate per second would be zero. */
require(deposit >= vars.duration, 'deposit smaller than time delta');
/* This condition avoids dealing with remainders */
require(deposit % vars.duration == 0, 'deposit not multiple of time delta');
vars.ratePerSecond = deposit / vars.duration;
/* Create and store the stream object. */
uint256 streamId = _nextStreamId;
_streams[streamId] = Stream({
remainingBalance: deposit,
deposit: deposit,
isEntity: true,
ratePerSecond: vars.ratePerSecond,
recipient: recipient,
sender: address(this),
startTime: startTime,
stopTime: stopTime,
tokenAddress: tokenAddress
});
/* Increment the next stream id. */
_nextStreamId++;
emit CreateStream(
streamId,
address(this),
recipient,
deposit,
tokenAddress,
startTime,
stopTime
);
return streamId;
}
/// @inheritdoc ICollector
/**
* @dev Throws if the id does not point to a valid stream.
* Throws if the caller is not the funds admin or the recipient of the stream.
* Throws if the amount exceeds the available balance.
* Throws if there is a token transfer failure.
*/
function withdrawFromStream(
uint256 streamId,
uint256 amount
) external nonReentrant streamExists(streamId) onlyAdminOrRecipient(streamId) returns (bool) {
require(amount > 0, 'amount is zero');
Stream memory stream = _streams[streamId];
uint256 balance = balanceOf(streamId, stream.recipient);
require(balance >= amount, 'amount exceeds the available balance');
_streams[streamId].remainingBalance = stream.remainingBalance - amount;
if (_streams[streamId].remainingBalance == 0) delete _streams[streamId];
IERC20(stream.tokenAddress).safeTransfer(stream.recipient, amount);
emit WithdrawFromStream(streamId, stream.recipient, amount);
return true;
}
/// @inheritdoc ICollector
/**
* @dev Throws if the id does not point to a valid stream.
* Throws if the caller is not the funds admin or the recipient of the stream.
* Throws if there is a token transfer failure.
*/
function cancelStream(
uint256 streamId
) external nonReentrant streamExists(streamId) onlyAdminOrRecipient(streamId) returns (bool) {
Stream memory stream = _streams[streamId];
uint256 senderBalance = balanceOf(streamId, stream.sender);
uint256 recipientBalance = balanceOf(streamId, stream.recipient);
delete _streams[streamId];
IERC20 token = IERC20(stream.tokenAddress);
if (recipientBalance > 0) token.safeTransfer(stream.recipient, recipientBalance);
emit CancelStream(streamId, stream.sender, stream.recipient, senderBalance, recipientBalance);
return true;
}
}