-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathTokenDistributor.sol
414 lines (380 loc) · 13.8 KB
/
TokenDistributor.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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
// SPDX-License-Identifier: Beta Software
pragma solidity ^0.8;
import "../globals/IGlobals.sol";
import "../globals/LibGlobals.sol";
import "../tokens/IERC20.sol";
import "../utils/LibAddress.sol";
import "../utils/LibERC20Compat.sol";
import "../utils/LibRawResult.sol";
import "../utils/LibSafeCast.sol";
import "./ITokenDistributor.sol";
/// @notice Creates token distributions for parties (or any contract that
/// implements `ITokenDistributorParty`).
contract TokenDistributor is ITokenDistributor {
using LibAddress for address payable;
using LibERC20Compat for IERC20;
using LibRawResult for bytes;
using LibSafeCast for uint256;
struct DistributionState {
// The remaining member supply.
uint128 remainingMemberSupply;
// The 15-byte hash of the `DistributionInfo`.
bytes15 distributionHash15;
// Whether the distribution's feeRecipient has claimed its fee.
bool wasFeeClaimed;
// Whether a governance token has claimed its distribution share.
mapping(uint256 => bool) hasPartyTokenClaimed;
}
// Arguments for `_createDistribution()`.
struct CreateDistributionArgs {
ITokenDistributorParty party;
TokenType tokenType;
address token;
uint256 currentTokenBalance;
address payable feeRecipient;
uint16 feeBps;
}
error OnlyPartyDaoError(address notDao, address partyDao);
error OnlyPartyDaoAuthorityError(address notDaoAuthority);
error InvalidDistributionInfoError(DistributionInfo info);
error DistributionAlreadyClaimedByPartyTokenError(uint256 distributionId, uint256 partyTokenId);
error DistributionFeeAlreadyClaimedError(uint256 distributionId);
error MustOwnTokenError(address sender, address expectedOwner, uint256 partyTokenId);
error EmergencyActionsNotAllowedError();
error InvalidDistributionSupplyError(uint128 supply);
error OnlyFeeRecipientError(address caller, address feeRecipient);
error InvalidFeeBpsError(uint16 feeBps);
// Token address used to indicate a native distribution (i.e. distribution of ETH).
address private constant NATIVE_TOKEN_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
/// @notice The `Globals` contract storing global configuration values. This contract
/// is immutable and it’s address will never change.
IGlobals public immutable GLOBALS;
/// @notice Whether the DAO is no longer allowed to call emergency functions.
bool public emergencyActionsDisabled;
/// @notice Last distribution ID for a party.
mapping(ITokenDistributorParty => uint256) public lastDistributionIdPerParty;
/// Last known balance of a token, identified by an ID derived from the token.
/// Gets lazily updated when creating and claiming a distribution (transfers).
/// Allows one to simply transfer and call `createDistribution()` without
/// fussing with allowances.
mapping(bytes32 => uint256) private _storedBalances;
// tokenDistributorParty => distributionId => DistributionState
mapping(ITokenDistributorParty => mapping(uint256 => DistributionState)) private _distributionStates;
// msg.sender == DAO
modifier onlyPartyDao() {
{
address partyDao = GLOBALS.getAddress(LibGlobals.GLOBAL_DAO_WALLET);
if (msg.sender != partyDao) {
revert OnlyPartyDaoError(msg.sender, partyDao);
}
}
_;
}
// emergencyActionsDisabled == false
modifier onlyIfEmergencyActionsAllowed() {
if (emergencyActionsDisabled) {
revert EmergencyActionsNotAllowedError();
}
_;
}
// Set the `Globals` contract.
constructor(IGlobals globals) {
GLOBALS = globals;
}
/// @inheritdoc ITokenDistributor
function createNativeDistribution(
ITokenDistributorParty party,
address payable feeRecipient,
uint16 feeBps
)
external
payable
returns (DistributionInfo memory info)
{
info = _createDistribution(CreateDistributionArgs({
party: party,
tokenType: TokenType.Native,
token: NATIVE_TOKEN_ADDRESS,
currentTokenBalance: address(this).balance,
feeRecipient: feeRecipient,
feeBps: feeBps
}));
}
/// @inheritdoc ITokenDistributor
function createErc20Distribution(
IERC20 token,
ITokenDistributorParty party,
address payable feeRecipient,
uint16 feeBps
)
external
returns (DistributionInfo memory info)
{
info = _createDistribution(CreateDistributionArgs({
party: party,
tokenType: TokenType.Erc20,
token: address(token),
currentTokenBalance: token.balanceOf(address(this)),
feeRecipient: feeRecipient,
feeBps: feeBps
}));
}
/// @inheritdoc ITokenDistributor
function claim(DistributionInfo calldata info, uint256 partyTokenId)
public
returns (uint128 amountClaimed)
{
// Caller must own the party token.
{
address ownerOfPartyToken = info.party.ownerOf(partyTokenId);
if (msg.sender != ownerOfPartyToken) {
revert MustOwnTokenError(msg.sender, ownerOfPartyToken, partyTokenId);
}
}
// DistributionInfo must be correct for this distribution ID.
DistributionState storage state = _distributionStates[info.party][info.distributionId];
if (state.distributionHash15 != _getDistributionHash(info)) {
revert InvalidDistributionInfoError(info);
}
// The partyTokenId must not have claimed its distribution yet.
if (state.hasPartyTokenClaimed[partyTokenId]) {
revert DistributionAlreadyClaimedByPartyTokenError(info.distributionId, partyTokenId);
}
// Mark the partyTokenId as having claimed their distribution.
state.hasPartyTokenClaimed[partyTokenId] = true;
// Compute amount owed to partyTokenId.
amountClaimed = getClaimAmount(info.party, info.memberSupply, partyTokenId);
// Cap at the remaining member supply. Otherwise a malicious
// party could drain more than the distribution supply.
uint128 remainingMemberSupply = state.remainingMemberSupply;
amountClaimed = amountClaimed > remainingMemberSupply
? remainingMemberSupply
: amountClaimed;
state.remainingMemberSupply = remainingMemberSupply - amountClaimed;
// Transfer tokens owed.
_transfer(
info.tokenType,
info.token,
payable(msg.sender),
amountClaimed
);
emit DistributionClaimedByPartyToken(
info.party,
partyTokenId,
msg.sender,
info.tokenType,
info.token,
amountClaimed
);
}
/// @inheritdoc ITokenDistributor
function claimFee(DistributionInfo calldata info, address payable recipient)
public
{
// DistributionInfo must be correct for this distribution ID.
DistributionState storage state = _distributionStates[info.party][info.distributionId];
if (state.distributionHash15 != _getDistributionHash(info)) {
revert InvalidDistributionInfoError(info);
}
// Caller must be the fee recipient.
if (info.feeRecipient != msg.sender) {
revert OnlyFeeRecipientError(msg.sender, info.feeRecipient);
}
// Must not have claimed the fee yet.
if (state.wasFeeClaimed) {
revert DistributionFeeAlreadyClaimedError(info.distributionId);
}
// Mark the fee as claimed.
state.wasFeeClaimed = true;
// Transfer the tokens owed.
_transfer(
info.tokenType,
info.token,
recipient,
info.fee
);
emit DistributionFeeClaimed(
info.party,
info.feeRecipient,
info.tokenType,
info.token,
info.fee
);
}
/// @inheritdoc ITokenDistributor
function batchClaim(DistributionInfo[] calldata infos, uint256[] calldata partyTokenIds)
external
returns (uint128[] memory amountsClaimed)
{
amountsClaimed = new uint128[](infos.length);
for (uint256 i = 0; i < infos.length; ++i) {
amountsClaimed[i] = claim(infos[i], partyTokenIds[i]);
}
}
/// @inheritdoc ITokenDistributor
function batchClaimFee(DistributionInfo[] calldata infos, address payable[] calldata recipients)
external
{
for (uint256 i = 0; i < infos.length; ++i) {
claimFee(infos[i], recipients[i]);
}
}
/// @inheritdoc ITokenDistributor
function getClaimAmount(
ITokenDistributorParty party,
uint256 memberSupply,
uint256 partyTokenId
)
public
view
returns (uint128)
{
// getDistributionShareOf() is the fraction of the memberSupply partyTokenId
// is entitled to, scaled by 1e18.
// We round up here to prevent dust amounts getting trapped in this contract.
return (
(
uint256(party.getDistributionShareOf(partyTokenId))
* memberSupply
+ (1e18 - 1)
)
/ 1e18
).safeCastUint256ToUint128();
}
/// @inheritdoc ITokenDistributor
function wasFeeClaimed(ITokenDistributorParty party, uint256 distributionId)
external
view
returns (bool)
{
return _distributionStates[party][distributionId].wasFeeClaimed;
}
/// @inheritdoc ITokenDistributor
function hasPartyTokenIdClaimed(
ITokenDistributorParty party,
uint256 partyTokenId,
uint256 distributionId
)
external
view returns (bool)
{
return _distributionStates[party][distributionId].hasPartyTokenClaimed[partyTokenId];
}
/// @inheritdoc ITokenDistributor
function getRemainingMemberSupply(
ITokenDistributorParty party,
uint256 distributionId
)
external
view
returns (uint128)
{
return _distributionStates[party][distributionId].remainingMemberSupply;
}
/// @notice DAO-only function to clear a distribution in case something goes wrong.
function emergencyRemoveDistribution(
ITokenDistributorParty party,
uint256 distributionId
)
onlyPartyDao
onlyIfEmergencyActionsAllowed
external
{
delete _distributionStates[party][distributionId];
}
/// @notice DAO-only function to withdraw tokens in case something goes wrong.
function emergencyWithdraw(
TokenType tokenType,
address token,
address payable recipient,
uint256 amount
)
onlyPartyDao
onlyIfEmergencyActionsAllowed
external
{
_transfer(tokenType, token, recipient, amount);
}
/// @notice DAO-only function to disable emergency functions forever.
function disableEmergencyActions() onlyPartyDao external {
emergencyActionsDisabled = true;
}
function _createDistribution(CreateDistributionArgs memory args)
private
returns (DistributionInfo memory info)
{
if (args.feeBps > 1e4) {
revert InvalidFeeBpsError(args.feeBps);
}
uint128 supply;
{
bytes32 balanceId = _getBalanceId(args.tokenType, args.token);
supply = (args.currentTokenBalance - _storedBalances[balanceId])
.safeCastUint256ToUint128();
// Supply must be nonzero.
if (supply == 0) {
revert InvalidDistributionSupplyError(supply);
}
// Update stored balance.
_storedBalances[balanceId] = args.currentTokenBalance;
}
// Create a distribution.
uint128 fee = supply * args.feeBps / 1e4;
uint128 memberSupply = supply - fee;
info = DistributionInfo({
tokenType: args.tokenType,
distributionId: ++lastDistributionIdPerParty[args.party],
token: args.token,
party: args.party,
memberSupply: memberSupply,
feeRecipient: args.feeRecipient,
fee: fee
});
(
_distributionStates[args.party][info.distributionId].distributionHash15,
_distributionStates[args.party][info.distributionId].remainingMemberSupply
) = (_getDistributionHash(info), memberSupply);
emit DistributionCreated(args.party, info);
}
function _transfer(
TokenType tokenType,
address token,
address payable recipient,
uint256 amount
)
private
{
bytes32 balanceId = _getBalanceId(tokenType, token);
// Reduce stored token balance.
_storedBalances[balanceId] -= amount;
if (tokenType == TokenType.Native) {
recipient.transferEth(amount);
} else {
assert(tokenType == TokenType.Erc20);
IERC20(token).compatTransfer(recipient, amount);
}
}
function _getDistributionHash(DistributionInfo memory info)
internal
pure
returns (bytes15 hash)
{
assembly {
hash := and(
keccak256(info, 0xe0),
0xffffffffffffffffffffffffffffff0000000000000000000000000000000000
)
}
}
function _getBalanceId(TokenType tokenType, address token)
private
pure
returns (bytes32 balanceId)
{
if (tokenType == TokenType.Native) {
return bytes32(uint256(uint160(NATIVE_TOKEN_ADDRESS)));
}
assert(tokenType == TokenType.Erc20);
return bytes32(uint256(uint160(token)));
}
}