-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLockupCore.ts
499 lines (427 loc) · 15.2 KB
/
LockupCore.ts
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
import BigNumber from "bignumber.js";
import _ from "lodash";
import { zeroAddress } from "viem";
import { getAccount, readContract, readContracts, waitForTransactionReceipt, writeContract } from "wagmi/actions";
import { config } from "../components/Web3";
import { ABI, SEPOLIA_CHAIN_ID, contracts } from "../constants";
import type {
IAddress,
IAmountWithDecimals,
IAmountWithDecimals18,
ICreateDynamicWithDurations,
ICreateDynamicWithTimestamps,
ICreateLinearWithDurations,
ICreateLinearWithTimestamps,
ICreateTranchedWithDurations,
ICreateTranchedWithTimestamps,
ISeconds,
ISegmentD,
ITrancheD,
IWithdrawLockup,
} from "../types";
import { erroneous, expect } from "../utils";
class LockupCore {
static async doCreateLinear(
state: {
amount: string | undefined;
cancelability: boolean;
cliff: string | undefined;
duration: string | undefined;
recipient: string | undefined;
token: string | undefined;
transferability: boolean;
},
log: (value: string) => void,
) {
try {
if (
!expect(state.amount, "amount") ||
!expect(state.cancelability, "cancelability") ||
!expect(state.duration, "duration") ||
!expect(state.recipient, "recipient") ||
!expect(state.token, "token") ||
!expect(state.transferability, "transferability")
) {
return;
}
const decimals = await readContract(config, {
address: state.token as IAddress,
abi: ABI.ERC20.abi,
functionName: "decimals",
});
/** We use BigNumber to convert float values to decimal padded BigInts */
const padding = new BigNumber(10).pow(new BigNumber(decimals.toString()));
const amount = BigInt(new BigNumber(state.amount).times(padding).toFixed());
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
const cliff = (() => {
try {
if (!_.isNil(state.cliff) && BigInt(state.cliff).toString() === state.cliff) {
return Number(state.cliff);
}
} catch (_error) {}
return 0;
})();
const payload: ICreateLinearWithDurations = {
sender,
recipient: state.recipient as IAddress,
totalAmount: amount,
asset: state.token as IAddress,
cancelable: state.cancelability,
transferable: state.transferability,
durations: { cliff, total: _.toNumber(state.duration) },
broker: { account: zeroAddress, fee: 0n },
};
console.info("Payload", payload);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupLinear,
abi: ABI.SablierLockupLinear.abi,
functionName: "createWithDurations",
args: [payload],
});
if (hash) {
log(`LL Stream sent to the blockchain with hash: ${hash}.`);
}
const receipt = await waitForTransactionReceipt(config, { hash });
if (receipt?.status === "success") {
log(`LL Stream successfully created.`);
} else {
log(`LL Stream creation failed.`);
}
} catch (error) {
erroneous(error);
}
}
static async doCreateDynamic(
state: {
cancelability: boolean;
recipient: string | undefined;
segments: {
amount: string | undefined;
duration: string | undefined;
exponent: string | undefined;
}[];
token: string | undefined;
transferability: boolean;
},
log: (value: string) => void,
) {
try {
if (
!expect(state.segments, "segments") ||
!expect(state.cancelability, "cancelability") ||
!expect(state.recipient, "recipient") ||
!expect(state.token, "token") ||
!expect(state.transferability, "transferability")
) {
return;
}
const decimals = await readContract(config, {
address: state.token as IAddress,
abi: ABI.ERC20.abi,
functionName: "decimals",
});
/** We use BigNumber to convert float values to decimal padded BigInts */
const padding = new BigNumber(10).pow(new BigNumber(decimals.toString()));
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
const segments: ISegmentD<number>[] = state.segments.map((segment) => {
if (
!expect(segment.amount, "segment amount") ||
!expect(segment.duration, "segment duration") ||
!expect(segment.exponent, "segment exponent")
) {
throw new Error("Expected valid segments.");
}
const amount: IAmountWithDecimals = BigInt(new BigNumber(segment.amount).times(padding).toFixed());
const duration: ISeconds<number> = _.toNumber(segment.duration);
const exponent: IAmountWithDecimals18 = BigInt(segment.exponent) * 10n ** 18n;
const result: ISegmentD<number> = { amount, exponent, duration };
return result;
});
const amount = segments.reduce((prev, curr) => prev + (curr?.amount || 0n), 0n);
const payload: ICreateDynamicWithDurations = {
sender,
cancelable: state.cancelability,
transferable: state.transferability,
recipient: state.recipient as IAddress,
totalAmount: amount,
asset: state.token as IAddress,
broker: { account: zeroAddress, fee: 0n },
segments,
};
console.info("Payload", payload);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupDynamic,
abi: ABI.SablierLockupDynamic.abi,
functionName: "createWithDurations",
args: [payload],
});
if (hash) {
log(`LD Stream sent to the blockchain with hash: ${hash}.`);
}
const receipt = await waitForTransactionReceipt(config, { hash });
if (receipt?.status === "success") {
log(`LD Stream successfully created.`);
} else {
log(`LD Stream creation failed.`);
}
} catch (error) {
erroneous(error);
}
}
static async doCreateTranched(
state: {
cancelability: boolean;
recipient: string | undefined;
tranches: {
amount: string | undefined;
duration: string | undefined;
}[];
token: string | undefined;
transferability: boolean;
},
log: (value: string) => void,
) {
try {
if (
!expect(state.tranches, "tranches") ||
!expect(state.cancelability, "cancelability") ||
!expect(state.recipient, "recipient") ||
!expect(state.token, "token") ||
!expect(state.transferability, "transferability")
) {
return;
}
const decimals = await readContract(config, {
address: state.token as IAddress,
abi: ABI.ERC20.abi,
functionName: "decimals",
});
/** We use BigNumber to convert float values to decimal padded BigInts */
const padding = new BigNumber(10).pow(new BigNumber(decimals.toString()));
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
const tranches: ITrancheD<number>[] = state.tranches.map((tranche) => {
if (!expect(tranche.amount, "tranche amount") || !expect(tranche.duration, "tranche duration")) {
throw new Error("Expected valid tranches.");
}
const amount: IAmountWithDecimals = BigInt(new BigNumber(tranche.amount).times(padding).toFixed());
const duration: ISeconds<number> = _.toNumber(tranche.duration);
const result: ITrancheD<number> = { amount, duration };
return result;
});
const amount = tranches.reduce((prev, curr) => prev + (curr?.amount || 0n), 0n);
const payload: ICreateTranchedWithDurations = {
sender,
cancelable: state.cancelability,
transferable: state.transferability,
recipient: state.recipient as IAddress,
totalAmount: amount,
asset: state.token as IAddress,
broker: { account: zeroAddress, fee: 0n },
tranches,
};
console.info("Payload", payload);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupTranched,
abi: ABI.SablierLockupTranched.abi,
functionName: "createWithDurations",
args: [payload],
});
if (hash) {
log(`LT Stream sent to the blockchain with hash: ${hash}.`);
}
const receipt = await waitForTransactionReceipt(config, { hash });
if (receipt?.status === "success") {
log(`LT Stream successfully created.`);
} else {
log(`LT Stream creation failed.`);
}
} catch (error) {
erroneous(error);
}
}
static async doCreateLinearWithDurationsRaw(payload: ICreateLinearWithDurations) {
const data = _.clone(payload);
if (data.sender.toString() === "<< YOUR CONNECTED ADDRESS AS THE SENDER >>") {
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
data.sender = sender;
}
console.info("Payload", data);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupLinear,
abi: ABI.SablierLockupLinear.abi,
functionName: "createWithDurations",
args: [data],
});
return waitForTransactionReceipt(config, { hash });
}
static async doCreateLinearWithTimestampsRaw(payload: ICreateLinearWithTimestamps) {
const data = _.clone(payload);
if (data.sender.toString() === "<< YOUR CONNECTED ADDRESS AS THE SENDER >>") {
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
data.sender = sender;
}
console.info("Payload", data);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupLinear,
abi: ABI.SablierLockupLinear.abi,
functionName: "createWithTimestamps",
args: [data],
});
return waitForTransactionReceipt(config, { hash });
}
static async doCreateDynamicWithDurationsRaw(payload: ICreateDynamicWithDurations) {
const data = _.clone(payload);
if (data.sender.toString() === "<< YOUR CONNECTED ADDRESS AS THE SENDER >>") {
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
data.sender = sender;
}
console.info("Payload", data);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupDynamic,
abi: ABI.SablierLockupDynamic.abi,
functionName: "createWithDurations",
args: [data],
});
return waitForTransactionReceipt(config, { hash });
}
static async doCreateDynamicWithTimestampsRaw(payload: ICreateDynamicWithTimestamps) {
const data = _.clone(payload);
if (data.sender.toString() === "<< YOUR CONNECTED ADDRESS AS THE SENDER >>") {
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
data.sender = sender;
}
console.info("Payload", data);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupDynamic,
abi: ABI.SablierLockupDynamic.abi,
functionName: "createWithTimestamps",
args: [data],
});
return waitForTransactionReceipt(config, { hash });
}
static async doCreateTranchedWithDurationsRaw(payload: ICreateTranchedWithDurations) {
const data = _.clone(payload);
if (data.sender.toString() === "<< YOUR CONNECTED ADDRESS AS THE SENDER >>") {
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
data.sender = sender;
}
console.info("Payload", data);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupTranched,
abi: ABI.SablierLockupTranched.abi,
functionName: "createWithDurations",
args: [data],
});
return waitForTransactionReceipt(config, { hash });
}
static async doCreateTranchedWithTimestampsRaw(payload: ICreateTranchedWithTimestamps) {
const data = _.clone(payload);
if (data.sender.toString() === "<< YOUR CONNECTED ADDRESS AS THE SENDER >>") {
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
data.sender = sender;
}
console.info("Payload", data);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupTranched,
abi: ABI.SablierLockupTranched.abi,
functionName: "createWithTimestamps",
args: [data],
});
return waitForTransactionReceipt(config, { hash });
}
static async doWithdraw(
state: {
contract: string | undefined;
streamId: string | undefined;
amount: string | undefined;
},
log: (value: string) => void,
) {
try {
if (
!expect(state.streamId, "streamId") ||
!expect(state.contract, "contract") ||
!expect(state.amount, "amount")
) {
return;
}
const [asset, to] = await readContracts(config, {
contracts: [
{
address: state.contract as IAddress,
abi: ABI.SablierLockupLinear.abi, // These methods are included in the ISablierLockup interfaces, so common across all variants (LL, LT, LD)
functionName: "getAsset",
args: [BigInt(state.streamId)],
},
{
address: state.contract as IAddress,
abi: ABI.SablierLockupLinear.abi, // These methods are included in the ISablierLockup interfaces, so common across all variants (LL, LT, LD)
functionName: "getRecipient",
args: [BigInt(state.streamId)],
},
],
allowFailure: false,
});
const decimals = await readContract(config, {
address: asset,
abi: ABI.ERC20.abi,
functionName: "decimals",
});
/** We use BigNumber to convert float values to decimal padded BigInts */
const padding = new BigNumber(10).pow(new BigNumber(decimals.toString()));
const sender = await getAccount(config).address;
if (!expect(sender, "sender")) {
return;
}
const amount = BigInt(new BigNumber(state.amount).times(padding).toFixed());
/** The public withdraw is locked to the recipient's address. Recipients themselves can chose a different withdraw address. */
const payload: IWithdrawLockup = [BigInt(state.streamId), to, amount];
console.info("Payload", payload);
const hash = await writeContract(config, {
address: contracts[SEPOLIA_CHAIN_ID].SablierLockupLinear,
abi: ABI.SablierLockupLinear.abi,
functionName: "withdraw",
args: payload,
});
if (hash) {
log(`Withdrawal for Stream #${state.streamId} sent to the blockchain with hash: ${hash}.`);
}
const receipt = await waitForTransactionReceipt(config, { hash });
if (receipt?.status === "success") {
log(`Withdrawal for Stream #${state.streamId} successful.`);
} else {
log(`Withdrawal for Stream #${state.streamId} failed.`);
}
} catch (error) {
erroneous(error);
}
}
}
export default LockupCore;