forked from curvefi/curve-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateScrvUsdSlice.ts
More file actions
567 lines (481 loc) · 21.4 KB
/
Copy pathcreateScrvUsdSlice.ts
File metadata and controls
567 lines (481 loc) · 21.4 KB
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
import BigNumber from 'bignumber.js'
import lodash from 'lodash'
import type { GetState, SetState } from 'zustand'
import type { DepositWithdrawModule, StatisticsChart } from '@/loan/components/PageCrvUsdStaking/types'
import { SCRVUSD_GAS_ESTIMATE } from '@/loan/constants'
import type { ScrvUsdUserBalances } from '@/loan/entities/scrvusdUserBalances'
import { invalidateScrvUsdUserBalances } from '@/loan/entities/scrvusdUserBalances'
import networks from '@/loan/networks'
import type { State } from '@/loan/store/useStore'
import { type ChainId, FetchStatus, TransactionStatus } from '@/loan/types/loan.types'
import { getLib, notify, useWallet } from '@ui-kit/features/connect-wallet'
import { queryClient } from '@ui-kit/lib/api/query-client'
import { t } from '@ui-kit/lib/i18n'
import type { TimeOption } from '@ui-kit/lib/types/scrvusd'
type StateKey = keyof typeof DEFAULT_STATE
type SliceState = {
estGas: { gas: number; fetchStatus: FetchStatus }
depositApproval: { approval: boolean; allowance: string; fetchStatus: FetchStatus }
preview: { fetchStatus: FetchStatus; value: string }
stakingModule: DepositWithdrawModule
selectedStatisticsChart: StatisticsChart
revenueChartTimeOption: TimeOption
inputAmount: string
scrvUsdExchangeRate: { fetchStatus: FetchStatus; value: string }
crvUsdSupplies: { fetchStatus: FetchStatus; crvUSD: string; scrvUSD: string }
approveInfinite: boolean
approveDepositTransaction: { transactionStatus: TransactionStatus; transaction: string | null; errorMessage: string }
depositTransaction: { transactionStatus: TransactionStatus; transaction: string | null; errorMessage: string }
withdrawTransaction: { transactionStatus: TransactionStatus; transaction: string | null; errorMessage: string }
}
type PreviewFlag = 'deposit' | 'withdraw' | 'redeem'
const sliceKey = 'scrvusd'
export type ScrvUsdSlice = {
[sliceKey]: SliceState & {
checkApproval: { depositApprove: (amount: string) => Promise<void> }
estimateGas: {
depositApprove: (amount: string) => Promise<void>
deposit: (amount: string) => Promise<void>
withdraw: (amount: string) => Promise<void>
redeem: (amount: string) => Promise<void>
}
previewAction: (flag: PreviewFlag, amount: string) => void
deploy: {
depositApprove: (amount: string) => Promise<boolean | undefined>
deposit: (amount: string) => Promise<void>
withdraw: (amount: string) => Promise<void>
redeem: (amount: string) => Promise<void>
}
fetchExchangeRate: () => void
fetchCrvUsdSupplies: () => void
setMax: (userAddress: string | undefined, stakingModule: DepositWithdrawModule) => void
setStakingModule: (stakingModule: DepositWithdrawModule) => void
setSelectedStatisticsChart: (chart: StatisticsChart) => void
setRevenueChartTimeOption: (timeOption: TimeOption) => void
setInputAmount: (amount: string) => void
setApproveInfinite: () => void
setPreviewReset: () => void
setStakingModuleChangeReset: () => void
setTransactionsReset: () => void
getInputAmountApproved: () => boolean
getEstimateGas: (userAddress: string) => number
setStateByActiveKey<T>(key: StateKey, activeKey: string, value: T): void
setStateByKey<T>(key: StateKey, value: T): void
setStateByKeys(SliceState: Partial<SliceState>): void
resetState(): void
}
}
const DEFAULT_STATE: SliceState = {
estGas: { gas: 0, fetchStatus: '' },
depositApproval: { approval: false, allowance: '', fetchStatus: '' },
stakingModule: 'deposit',
selectedStatisticsChart: 'savingsRate',
revenueChartTimeOption: '1M',
inputAmount: '0',
preview: { fetchStatus: '', value: '0' },
scrvUsdExchangeRate: { fetchStatus: 'loading', value: '' },
crvUsdSupplies: { fetchStatus: 'loading', crvUSD: '', scrvUSD: '' },
approveInfinite: false,
approveDepositTransaction: { transactionStatus: '', transaction: null, errorMessage: '' },
depositTransaction: { transactionStatus: '', transaction: null, errorMessage: '' },
withdrawTransaction: { transactionStatus: '', transaction: null, errorMessage: '' },
}
const createScrvUsdSlice = (set: SetState<State>, get: GetState<State>) => ({
[sliceKey]: {
...DEFAULT_STATE,
checkApproval: {
depositApprove: async (amount: string) => {
const lendApi = getLib('llamaApi')
if (!lendApi) return
get()[sliceKey].setStateByKey('depositApproval', { approval: false, allowance: '', fetchStatus: 'loading' })
try {
const [approvedResponse, allowanceResponse] = await Promise.all([
lendApi.st_crvUSD.depositIsApproved(amount),
lendApi.st_crvUSD.depositAllowance(),
])
get()[sliceKey].setStateByKey('depositApproval', {
approval: approvedResponse,
allowance: allowanceResponse[0],
fetchStatus: 'success',
})
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('depositApproval', { approval: false, allowance: '', fetchStatus: 'error' })
}
},
},
estimateGas: {
depositApprove: async (amount: string) => {
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'loading' })
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
if (!curve) return
try {
// only returns number[] on base or optimism
const estimatedGas = (await lendApi?.st_crvUSD.estimateGas.depositApprove(amount)) as number
get()[sliceKey].setStateByKey('estGas', { gas: estimatedGas, fetchStatus: 'success' })
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'error' })
}
},
deposit: async (amount: string) => {
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'loading' })
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
if (!curve) return
try {
// only returns number[] on base or optimism
const estimatedGas = (await lendApi?.st_crvUSD.estimateGas.deposit(amount)) as number
get()[sliceKey].setStateByKey('estGas', { gas: estimatedGas, fetchStatus: 'success' })
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'error' })
}
},
withdraw: async (amount: string) => {
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'loading' })
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
if (!curve) return
try {
// only returns number[] on base or optimism
const estimatedGas = (await lendApi?.st_crvUSD.estimateGas.withdraw(amount)) as number
get()[sliceKey].setStateByKey('estGas', { gas: estimatedGas, fetchStatus: 'success' })
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'error' })
}
},
redeem: async (amount: string) => {
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'loading' })
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
if (!curve) return
try {
// only returns number[] on base or optimism
const estimatedGas = (await lendApi?.st_crvUSD.estimateGas.redeem(amount)) as number
get()[sliceKey].setStateByKey('estGas', { gas: estimatedGas, fetchStatus: 'success' })
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('estGas', { gas: 0, fetchStatus: 'error' })
}
},
},
deploy: {
depositApprove: async (amount: string) => {
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
const { provider } = useWallet.getState()
const approveInfinite = get()[sliceKey].approveInfinite
// TODO: check so curve always is set when approving
if (!lendApi || !curve || !provider) return
const chainId = curve.chainId as ChainId
let dismissNotificationHandler = notify(t`Please confirm to approve ${amount} crvUSD.`, 'pending').dismiss
get()[sliceKey].setStateByKey('approveDepositTransaction', {
transactionStatus: 'confirming',
transaction: null,
errorMessage: '',
})
try {
const transactionHash = await lendApi.st_crvUSD.depositApprove(amount, approveInfinite)
get()[sliceKey].setStateByKey('approveDepositTransaction', {
transactionStatus: 'loading',
transaction: networks[chainId].scanTxPath(transactionHash[0]),
errorMessage: '',
})
dismissNotificationHandler()
dismissNotificationHandler = notify(t`Approving ${amount} crvUSD...`, 'pending').dismiss
await provider.waitForTransaction(transactionHash[0])
get()[sliceKey].setStateByKey('approveDepositTransaction', {
transactionStatus: 'success',
transaction: networks[chainId].scanTxPath(transactionHash[0]),
errorMessage: '',
})
dismissNotificationHandler()
void get()[sliceKey].checkApproval.depositApprove(amount)
const successNotificationMessage = t`Successfully approved ${amount} crvUSD!`
notify(successNotificationMessage, 'success', 15000)
return true
} catch (error) {
dismissNotificationHandler()
get()[sliceKey].setStateByKey('approveDepositTransaction', {
transactionStatus: 'error',
transaction: null,
errorMessage: error.message,
})
console.warn(error)
return false
}
},
deposit: async (amount: string) => {
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
const { provider } = useWallet.getState()
if (!lendApi || !curve || !provider) return
const chainId = curve.chainId as ChainId
let dismissNotificationHandler = notify(t`Please confirm to deposit ${amount} crvUSD.`, 'pending').dismiss
get()[sliceKey].setStateByKey('depositTransaction', {
transactionStatus: 'confirming',
transaction: null,
errorMessage: '',
})
try {
const transactionHash = await lendApi.st_crvUSD.deposit(amount)
get()[sliceKey].setStateByKey('depositTransaction', {
transactionStatus: 'loading',
transaction: networks[chainId].scanTxPath(transactionHash),
errorMessage: '',
})
dismissNotificationHandler()
dismissNotificationHandler = notify(t`Depositing ${amount} crvUSD...`, 'pending').dismiss
await provider.waitForTransaction(transactionHash)
get()[sliceKey].setStateByKey('depositTransaction', {
transactionStatus: 'success',
transaction: networks[chainId].scanTxPath(transactionHash),
errorMessage: '',
})
dismissNotificationHandler()
// invalidate user balances query
invalidateScrvUsdUserBalances({ userAddress: useWallet.getState().wallet?.account?.address })
get()[sliceKey].setStakingModuleChangeReset()
const successNotificationMessage = t`Successfully deposited ${amount} crvUSD!`
notify(successNotificationMessage, 'success', 15000)
} catch (error) {
dismissNotificationHandler()
get()[sliceKey].setStateByKey('depositTransaction', {
transactionStatus: 'error',
transaction: null,
errorMessage: error.message,
})
console.warn(error)
}
},
withdraw: async (amount: string) => {
const llamaApi = getLib('llamaApi')
const { provider } = useWallet.getState()
if (!llamaApi || !provider) return
const chainId = llamaApi.chainId as ChainId
let dismissNotificationHandler = notify(t`Please confirm to withdraw ${amount} scrvUSD.`, 'pending').dismiss
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'confirming',
transaction: null,
errorMessage: '',
})
try {
const transactionHash = await llamaApi.st_crvUSD.withdraw(amount)
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'loading',
transaction: networks[chainId].scanTxPath(transactionHash),
errorMessage: '',
})
dismissNotificationHandler()
const deployingNotificationMessage = t`Withdrawing ${amount} scrvUSD...`
dismissNotificationHandler = notify(deployingNotificationMessage, 'pending').dismiss
await provider.waitForTransaction(transactionHash)
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'success',
transaction: networks[chainId].scanTxPath(transactionHash),
errorMessage: '',
})
dismissNotificationHandler()
// invalidate user balances query
invalidateScrvUsdUserBalances({ userAddress: useWallet.getState().wallet?.account?.address })
get()[sliceKey].setStakingModuleChangeReset()
const successNotificationMessage = t`Successfully withdrew ${amount} scrvUSD!`
notify(successNotificationMessage, 'success', 15000)
} catch (error) {
dismissNotificationHandler()
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'error',
transaction: null,
errorMessage: error.message,
})
console.warn(error)
}
},
redeem: async (amount: string) => {
const lendApi = getLib('llamaApi')
const curve = getLib('llamaApi')
const { provider } = useWallet.getState()
if (!lendApi || !curve || !provider) return
const chainId = curve.chainId as ChainId
let dismissNotificationHandler = notify(t`Please confirm to withdraw ${amount} scrvUSD.`, 'pending').dismiss
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'confirming',
transaction: null,
errorMessage: '',
})
try {
const transactionHash = await lendApi.st_crvUSD.redeem(amount)
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'loading',
transaction: networks[chainId].scanTxPath(transactionHash),
errorMessage: '',
})
dismissNotificationHandler()
dismissNotificationHandler = notify(t`Withdrawing ${amount} scrvUSD...`, 'pending').dismiss
await provider.waitForTransaction(transactionHash)
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'success',
transaction: networks[chainId].scanTxPath(transactionHash),
errorMessage: '',
})
dismissNotificationHandler()
// invalidate user balances query
invalidateScrvUsdUserBalances({ userAddress: useWallet.getState().wallet?.account?.address })
get()[sliceKey].setStakingModuleChangeReset()
const successNotificationMessage = t`Successfully withdrew ${amount} scrvUSD!`
notify(successNotificationMessage, 'success', 15000)
} catch (error) {
dismissNotificationHandler()
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: 'error',
transaction: null,
errorMessage: error.message,
})
console.warn(error)
}
},
},
fetchExchangeRate: async () => {
const lendApi = getLib('llamaApi')
if (!lendApi) return
get()[sliceKey].setStateByKey('scrvUsdExchangeRate', { fetchStatus: 'loading', value: '' })
try {
const response = await lendApi.st_crvUSD.convertToShares(1)
get()[sliceKey].setStateByKey('scrvUsdExchangeRate', { fetchStatus: 'success', value: response })
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('scrvUsdExchangeRate', { fetchStatus: 'error', value: '' })
}
},
fetchCrvUsdSupplies: async () => {
const lendApi = getLib('llamaApi')
if (!lendApi) return
get()[sliceKey].setStateByKey('crvUsdSupplies', { fetchStatus: 'loading', crvUSD: '', scrvUSD: '' })
try {
const response = await lendApi.st_crvUSD.totalSupplyAndCrvUSDLocked()
get()[sliceKey].setStateByKey('crvUsdSupplies', {
fetchStatus: 'success',
crvUSD: response.crvUSD,
scrvUSD: response.st_crvUSD,
})
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('crvUsdSupplies', { fetchStatus: 'error', crvUSD: '', scrvUSD: '' })
}
},
previewAction: async (flag: PreviewFlag, amount: string) => {
const signerAddress = useWallet.getState().wallet?.account?.address.toLowerCase()
get()[sliceKey].setStateByKey('preview', { fetchStatus: 'loading', value: '0' })
const lendApi = getLib('llamaApi')
if (!lendApi || !signerAddress) return
const userBalance: ScrvUsdUserBalances = queryClient.getQueryData([
'useScrvUsdUserBalances',
{ userAddress: signerAddress },
]) ?? { crvUSD: '0', scrvUSD: '0' }
try {
let response
if (flag === 'deposit') {
response = await lendApi.st_crvUSD.previewDeposit(amount)
} else if (amount === userBalance.scrvUSD) {
response = await lendApi.st_crvUSD.previewRedeem(amount)
} else {
response = await lendApi.st_crvUSD.previewRedeem(amount)
}
get()[sliceKey].setStateByKey('preview', { fetchStatus: 'success', value: response })
} catch (error) {
console.error(error)
get()[sliceKey].setStateByKey('preview', { fetchStatus: 'error', value: '0' })
}
},
setStakingModule: (stakingModule: DepositWithdrawModule) => {
get()[sliceKey].setStateByKey('stakingModule', stakingModule)
get()[sliceKey].setStakingModuleChangeReset()
},
setSelectedStatisticsChart: (chart: StatisticsChart) => {
get()[sliceKey].setStateByKey('selectedStatisticsChart', chart)
},
setRevenueChartTimeOption: (timeOption: TimeOption) => {
get()[sliceKey].setStateByKey('revenueChartTimeOption', timeOption)
},
setMax: (userAddress: string | undefined, stakingModule: DepositWithdrawModule) => {
const userBalance = queryClient.getQueryData<ScrvUsdUserBalances>(['useScrvUsdUserBalances', { userAddress }])
if (stakingModule === 'deposit') {
get()[sliceKey].setStateByKey('inputAmount', userBalance?.crvUSD ?? '0')
} else {
get()[sliceKey].setStateByKey('inputAmount', userBalance?.scrvUSD ?? '0')
}
},
setInputAmount: (amount: string) => {
if (!amount) {
get()[sliceKey].setStateByKey('inputAmount', '0')
return
}
get()[sliceKey].setStateByKey('inputAmount', amount)
},
setApproveInfinite: () => {
get()[sliceKey].setStateByKey('approveInfinite', !get()[sliceKey].approveInfinite)
},
setPreviewReset: () => {
get()[sliceKey].setStateByKey('preview', { fetchStatus: '', value: '0' })
},
setStakingModuleChangeReset: () => {
get()[sliceKey].setStateByKey('inputAmount', '0')
get()[sliceKey].setPreviewReset()
},
setTransactionsReset: () => {
get()[sliceKey].setStateByKey('depositTransaction', {
transactionStatus: '',
transaction: null,
errorMessage: '',
})
get()[sliceKey].setStateByKey('approveDepositTransaction', {
transactionStatus: '',
transaction: null,
errorMessage: '',
})
get()[sliceKey].setStateByKey('withdrawTransaction', {
transactionStatus: '',
transaction: null,
errorMessage: '',
})
},
getInputAmountApproved: () => {
const allowance = get()[sliceKey].depositApproval.allowance ?? '0'
const inputAmount = get()[sliceKey].inputAmount
return new BigNumber(allowance).isGreaterThanOrEqualTo(inputAmount)
},
getEstimateGas: (userAddress: string) => {
const stakingModule = get()[sliceKey].stakingModule
const getInputAmountApproved = get()[sliceKey].getInputAmountApproved()
const gas = get()[sliceKey].estGas.gas
const userBalance: ScrvUsdUserBalances = queryClient.getQueryData([
'useScrvUsdUserBalances',
{ userAddress: userAddress.toLowerCase() },
]) ?? { crvUSD: '0', scrvUSD: '0' }
if (!getInputAmountApproved && stakingModule === 'deposit') {
if (new BigNumber(userBalance.crvUSD).isGreaterThan('0')) {
return gas + SCRVUSD_GAS_ESTIMATE.FIRST_DEPOSIT
}
return gas + SCRVUSD_GAS_ESTIMATE.FOLLOWING_DEPOSIT
}
return gas
},
// slice helpers
setStateByActiveKey: <T>(key: StateKey, activeKey: string, value: T) => {
get().setAppStateByActiveKey(sliceKey, key, activeKey, value)
},
setStateByKey: <T>(key: StateKey, value: T) => {
get().setAppStateByKey(sliceKey, key, value)
},
setStateByKeys: <T>(sliceState: Partial<SliceState>) => {
get().setAppStateByKeys(sliceKey, sliceState)
},
resetState: () => {
get().resetAppState(sliceKey, lodash.cloneDeep(DEFAULT_STATE))
},
},
})
export default createScrvUsdSlice