-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathBalances.tsx
533 lines (488 loc) · 18.5 KB
/
Balances.tsx
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
import React, {
createContext,
useContext,
useReducer,
useState,
useRef,
useMemo,
useCallback,
useEffect,
ReactNode
} from 'react'
import { BigNumber } from '@uniswap/sdk'
import { ethers } from 'ethers'
import { useWeb3React, useDebounce } from '../hooks'
import { getEtherBalance, getTokenBalance, isAddress, getNFTTokenBalance } from '../utils'
import { useBlockNumber } from './Application'
import { useTokenDetails, useAllTokenDetails } from './Tokens'
import { getUSDPrice } from '../utils/price'
const LOCAL_STORAGE_KEY = 'BALANCES'
const SHORT_BLOCK_TIMEOUT = (60 * 2) / 15 // in seconds, represented as a block number delta
const LONG_BLOCK_TIMEOUT = (60 * 15) / 15 // in seconds, represented as a block number delta
const EXCHANGES_BLOCK_TIMEOUT = (60 * 5) / 15 // in seconds, represented as a block number delta
interface BalancesState {
[chainId: number]: {
[address: string]: {
[tokenAddress: string]: {
value?: string | null
blockNumber?: number
listenerCount: number
}
}
}
}
function initialize(): BalancesState {
try {
return JSON.parse(window.localStorage.getItem(LOCAL_STORAGE_KEY) as string)
} catch {
return {}
}
}
enum Action {
START_LISTENING,
STOP_LISTENING,
UPDATE,
BATCH_UPDATE_ACCOUNT,
BATCH_UPDATE_EXCHANGES
}
function reducer(state: BalancesState, { type, payload }: { type: Action; payload: any }) {
switch (type) {
case Action.START_LISTENING: {
const { chainId, address, tokenAddress } = payload
const uninitialized = !!!state ?.[chainId] ?.[address] ?.[tokenAddress]
return {
...state,
[chainId]: {
...state ?.[chainId],
[address]: {
...state ?.[chainId] ?.[address],
[tokenAddress]: uninitialized
? {
listenerCount: 1
}
: {
...state[chainId][address][tokenAddress],
listenerCount: state[chainId][address][tokenAddress].listenerCount + 1
}
}
}
}
}
case Action.STOP_LISTENING: {
const { chainId, address, tokenAddress } = payload
return {
...state,
[chainId]: {
...state ?.[chainId],
[address]: {
...state ?.[chainId] ?.[address],
[tokenAddress]: {
...state ?.[chainId] ?.[address] ?.[tokenAddress],
listenerCount: state[chainId][address][tokenAddress].listenerCount - 1
}
}
}
}
}
case Action.UPDATE: {
const { chainId, address, tokenAddress, value, blockNumber } = payload
return {
...state,
[chainId]: {
...state ?.[chainId],
[address]: {
...state ?.[chainId] ?.[address],
[tokenAddress]: {
...state ?.[chainId] ?.[address] ?.[tokenAddress],
value,
blockNumber
}
}
}
}
}
case Action.BATCH_UPDATE_ACCOUNT: {
const { chainId, address, tokenAddresses, values, blockNumber } = payload
return {
...state,
[chainId]: {
...state ?.[chainId],
[address]: {
...state ?.[chainId] ?.[address],
...tokenAddresses.reduce((accumulator: any, tokenAddress: string, i: number) => {
const value = values[i]
accumulator[tokenAddress] = {
...state ?.[chainId] ?.[address] ?.[tokenAddress],
value,
blockNumber
}
return accumulator
}, {})
}
}
}
}
case Action.BATCH_UPDATE_EXCHANGES: {
const { chainId, exchangeAddresses, tokenAddresses, values, blockNumber } = payload
return {
...state,
[chainId]: {
...state ?.[chainId],
...exchangeAddresses.reduce((accumulator: any, exchangeAddress: string, i: number) => {
const tokenAddress = tokenAddresses[i]
const value = values[i]
accumulator[exchangeAddress] = {
...state ?.[chainId] ?.[exchangeAddress],
...accumulator ?.[exchangeAddress],
[tokenAddress]: {
...state ?.[chainId] ?.[exchangeAddress] ?.[tokenAddress],
value,
blockNumber
}
}
return accumulator
}, {})
}
}
}
default: {
throw Error(`Unexpected action type in BalancesContext reducer: '${type}'.`)
}
}
}
const BalancesContext = createContext<[BalancesState, { [k: string]: (...args: any) => void }]>([{}, {}])
function useBalancesContext() {
return useContext(BalancesContext)
}
export default function Provider({ children }: { children: ReactNode }) {
const [state, dispatch] = useReducer(reducer, undefined, initialize)
const startListening = useCallback((chainId, address, tokenAddress) => {
dispatch({ type: Action.START_LISTENING, payload: { chainId, address, tokenAddress } })
}, [])
const stopListening = useCallback((chainId, address, tokenAddress) => {
dispatch({ type: Action.STOP_LISTENING, payload: { chainId, address, tokenAddress } })
}, [])
const update = useCallback((chainId, address, tokenAddress, value, blockNumber) => {
dispatch({ type: Action.UPDATE, payload: { chainId, address, tokenAddress, value, blockNumber } })
}, [])
const batchUpdateAccount = useCallback((chainId, address, tokenAddresses, values, blockNumber) => {
dispatch({ type: Action.BATCH_UPDATE_ACCOUNT, payload: { chainId, address, tokenAddresses, values, blockNumber } })
}, [])
const batchUpdateExchanges = useCallback((chainId, exchangeAddresses, tokenAddresses, values, blockNumber) => {
dispatch({
type: Action.BATCH_UPDATE_EXCHANGES,
payload: { chainId, exchangeAddresses, tokenAddresses, values, blockNumber }
})
}, [])
return (
<BalancesContext.Provider
value={useMemo(
() => [state, { startListening, stopListening, update, batchUpdateAccount, batchUpdateExchanges }],
[state, startListening, stopListening, update, batchUpdateAccount, batchUpdateExchanges]
)}
>
{children}
</BalancesContext.Provider>
)
}
export function Updater() {
const { chainId, account, library } = useWeb3React()
const blockNumber = useBlockNumber()
const [state, { update, batchUpdateAccount, batchUpdateExchanges }] = useBalancesContext()
// debounce state a little bit to prevent useEffect craziness
const debouncedState = useDebounce(state, 1000)
// cache this debounced state in localstorage
useEffect(() => {
window.localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(debouncedState))
}, [debouncedState])
// (slightly janky) balances-wide cache to prevent double/triple/etc. fetching
const fetchedAsOfCache = useRef<{
[chainId: number]: {
[address: string]: {
[tokenAddress: string]: number
}
}
}>({})
// generic balances fetcher abstracting away difference between fetching ETH + token balances
// have to add condition for LAND Balance
const fetchBalance = useCallback(
(address: string, tokenAddress: string) =>
// call different nft balance for LAND TOKEN
(tokenAddress === 'ETH' ? getEtherBalance(address, library) : tokenAddress == '0xd1981d74abae2ec51e045242d8bb86a9daaa76b5' ? getNFTTokenBalance(tokenAddress, address, library) : getTokenBalance(tokenAddress, address, library))
.then(value => {
return value.toString()
})
.catch(() => {
return null
}),
[library]
)
// ensure that all balances with >=1 listeners are updated every block
useEffect(() => {
if (typeof chainId === 'number' && typeof blockNumber === 'number') {
for (const address of Object.keys(debouncedState ?.[chainId] ?? {})) {
for (const tokenAddress of Object.keys(debouncedState ?.[chainId][address])) {
const active = debouncedState[chainId][address][tokenAddress].listenerCount > 0
if (active) {
const cachedFetchedAsOf = fetchedAsOfCache.current ?.[chainId] ?.[address] ?.[tokenAddress]
const fetchedAsOf = debouncedState[chainId][address][tokenAddress] ?.blockNumber ?? cachedFetchedAsOf
if (fetchedAsOf !== blockNumber) {
// fetch the balance...
fetchBalance(address, tokenAddress).then(value => {
update(chainId, address, tokenAddress, value, blockNumber)
})
// ...and cache the fetch
fetchedAsOfCache.current = {
...fetchedAsOfCache.current,
[chainId]: {
...fetchedAsOfCache.current ?.[chainId],
[address]: {
...fetchedAsOfCache.current ?.[chainId] ?.[address],
[tokenAddress]: blockNumber
}
}
}
}
}
}
}
}
}, [chainId, blockNumber, debouncedState, fetchBalance, update])
// get a state ref for batch updates
const stateRef = useRef(state)
useEffect(() => {
stateRef.current = state
}, [state])
const allTokenDetails = useAllTokenDetails()
// ensure that we have the user balances for all tokens
const allTokens = useMemo(() => Object.keys(allTokenDetails), [allTokenDetails])
useEffect(() => {
if (typeof chainId === 'number' && typeof account === 'string' && typeof blockNumber === 'number') {
Promise.all(
allTokens
.filter(tokenAddress => {
const hasValue = !!stateRef.current ?.[chainId] ?.[account] ?.[tokenAddress] ?.value
const cachedFetchedAsOf = fetchedAsOfCache.current ?.[chainId] ?.[account] ?.[tokenAddress]
const fetchedAsOf = stateRef.current ?.[chainId] ?.[account] ?.[tokenAddress] ?.blockNumber ?? cachedFetchedAsOf
// if there's no value, and it's not being fetched, we need to fetch!
if (!hasValue && typeof cachedFetchedAsOf !== 'number') {
return true
// else, if there's a value, check if it's stale
} else if (hasValue) {
const blocksElapsedSinceLastCheck = blockNumber - fetchedAsOf
const stale =
blocksElapsedSinceLastCheck >=
(stateRef.current[chainId][account][tokenAddress].value === '0'
? LONG_BLOCK_TIMEOUT
: SHORT_BLOCK_TIMEOUT)
return stale
} else {
return false
}
})
.map(async tokenAddress => {
fetchedAsOfCache.current = {
...fetchedAsOfCache.current,
[chainId]: {
...fetchedAsOfCache.current ?.[chainId],
[account]: {
...fetchedAsOfCache.current ?.[chainId] ?.[account],
[tokenAddress]: blockNumber
}
}
}
return fetchBalance(account, tokenAddress).then(value => ({ tokenAddress, value }))
})
).then(results => {
batchUpdateAccount(
chainId,
account,
results.map(result => result.tokenAddress),
results.map(result => result.value),
blockNumber
)
})
}
}, [chainId, account, blockNumber, allTokens, fetchBalance, batchUpdateAccount])
// ensure that we have the eth and token balances for all exchanges
const allExchanges = useMemo(
() =>
Object.keys(allTokenDetails)
.filter(tokenAddress => tokenAddress !== 'ETH')
.map(tokenAddress => ({
tokenAddress,
exchangeAddress: allTokenDetails[tokenAddress].exchangeAddress
})),
[allTokenDetails]
)
useEffect(() => {
if (typeof chainId === 'number' && typeof blockNumber === 'number') {
Promise.all(
allExchanges
.filter(({ exchangeAddress, tokenAddress }) => {
const hasValueToken = !!stateRef.current ?.[chainId] ?.[exchangeAddress] ?.[tokenAddress] ?.value
const hasValueETH = !!stateRef.current ?.[chainId] ?.[exchangeAddress] ?.['ETH'] ?.value
const cachedFetchedAsOfToken = fetchedAsOfCache.current ?.[chainId] ?.[exchangeAddress] ?.[tokenAddress]
const cachedFetchedAsOfETH = fetchedAsOfCache.current ?.[chainId] ?.[exchangeAddress] ?.['ETH']
const fetchedAsOfToken =
stateRef.current ?.[chainId] ?.[exchangeAddress] ?.[tokenAddress] ?.blockNumber ?? cachedFetchedAsOfToken
const fetchedAsOfETH =
stateRef.current ?.[chainId] ?.[exchangeAddress] ?.['ETH'] ?.blockNumber ?? cachedFetchedAsOfETH
// if there's no values, and they're not being fetched, we need to fetch!
if (
(!hasValueToken || !hasValueETH) &&
(typeof cachedFetchedAsOfToken !== 'number' || typeof cachedFetchedAsOfETH !== 'number')
) {
return true
// else, if there are values, check if they's stale
} else if (hasValueToken && hasValueETH) {
const blocksElapsedSinceLastCheckToken = blockNumber - fetchedAsOfToken
const blocksElapsedSinceLastCheckETH = blockNumber - fetchedAsOfETH
const stale =
fetchedAsOfToken !== fetchedAsOfETH ||
blocksElapsedSinceLastCheckToken >= EXCHANGES_BLOCK_TIMEOUT ||
blocksElapsedSinceLastCheckETH >= EXCHANGES_BLOCK_TIMEOUT
return stale
} else {
return false
}
})
.map(async ({ exchangeAddress, tokenAddress }) => {
fetchedAsOfCache.current = {
...fetchedAsOfCache.current,
[chainId]: {
...fetchedAsOfCache.current ?.[chainId],
[exchangeAddress]: {
...fetchedAsOfCache.current ?.[chainId] ?.[exchangeAddress],
[tokenAddress]: blockNumber,
ETH: blockNumber
}
}
}
return Promise.all([
fetchBalance(exchangeAddress, tokenAddress),
fetchBalance(exchangeAddress, 'ETH')
]).then(([valueToken, valueETH]) => ({ exchangeAddress, tokenAddress, valueToken, valueETH }))
})
).then(results => {
batchUpdateExchanges(
chainId,
results.flatMap(result => [result.exchangeAddress, result.exchangeAddress]),
results.flatMap(result => [result.tokenAddress, 'ETH']),
results.flatMap(result => [result.valueToken, result.valueETH]),
blockNumber
)
})
}
}, [chainId, account, blockNumber, allExchanges, fetchBalance, batchUpdateExchanges])
return null
}
export function useAllBalances() {
const { chainId } = useWeb3React()
const [state] = useBalancesContext()
return useMemo(() => (typeof chainId === 'number' ? state ?.[chainId] ?? {} : {}), [chainId, state])
}
export function useAddressBalance(address: string, tokenAddress: string): ethers.utils.BigNumber | undefined | null {
const { chainId } = useWeb3React()
const [state, { startListening, stopListening }] = useBalancesContext()
useEffect(() => {
if (typeof chainId === 'number' && isAddress(address) && isAddress(tokenAddress)) {
startListening(chainId, address, tokenAddress)
return () => {
stopListening(chainId, address, tokenAddress)
}
}
}, [chainId, address, tokenAddress, startListening, stopListening])
const value = typeof chainId === 'number' ? state ?.[chainId] ?.[address] ?.[tokenAddress] ?.value : undefined
return useMemo(() => (typeof value === 'string' ? ethers.utils.bigNumberify(value) : value), [value])
}
export function useExchangeReserves(tokenAddress: string) {
const { exchangeAddress } = useTokenDetails(tokenAddress)
const reserveETH = useAddressBalance(exchangeAddress, 'ETH')
const reserveToken = useAddressBalance(exchangeAddress, tokenAddress)
return { reserveETH, reserveToken }
}
const buildReserveObject = (
chainId: number,
tokenAddress: string,
ethReserveAmount: any,
tokenReserveAmount: any,
decimals: number
) => ({
token: {
chainId,
address: tokenAddress,
decimals
},
ethReserve: {
token: {
chainId,
decimals: 18
},
amount: ethReserveAmount
},
tokenReserve: {
token: {
chainId,
address: tokenAddress,
decimals
},
amount: tokenReserveAmount
}
})
const daiTokenAddress = '0x6B175474E89094C44Da98b954EedeAC495271d0F'
const daiExchangeAddress = '0x2a1530C4C41db0B0b2bB646CB5Eb1A67b7158667'
const usdcTokenAddress = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
const usdcExchangeAddress = '0x97deC872013f6B5fB443861090ad931542878126'
const tusdTokenAddress = '0x0000000000085d4780B73119b644AE5ecd22b376'
const tusdExchangeAddress = '0x5048b9d01097498Fd72F3F14bC9Bc74A5aAc8fA7'
export function useETHPriceInUSD() {
const { chainId } = useWeb3React()
let daiReserveETH = useAddressBalance(daiExchangeAddress, 'ETH')
let daiReserveToken = useAddressBalance(daiExchangeAddress, daiTokenAddress)
let usdcReserveETH = useAddressBalance(usdcExchangeAddress, 'ETH')
let usdcReserveToken = useAddressBalance(usdcExchangeAddress, usdcTokenAddress)
let tusdReserveETH = useAddressBalance(tusdExchangeAddress, 'ETH')
let tusdReserveToken = useAddressBalance(tusdExchangeAddress, tusdTokenAddress)
const [price, setPrice] = useState<undefined | null>()
useEffect(() => {
if (
chainId &&
daiReserveETH &&
daiReserveToken &&
usdcReserveETH &&
usdcReserveToken &&
tusdReserveETH &&
tusdReserveToken
) {
const daiReservesObject = buildReserveObject(
chainId,
daiTokenAddress,
new BigNumber(daiReserveETH.toString()),
new BigNumber(daiReserveToken.toString()),
18
)
const tusdReservesObject = buildReserveObject(
chainId,
tusdTokenAddress,
new BigNumber(tusdReserveETH.toString()),
new BigNumber(tusdReserveToken.toString()),
18
)
const usdcReservesObject = buildReserveObject(
chainId,
usdcTokenAddress,
new BigNumber(usdcReserveETH.toString()),
new BigNumber(usdcReserveToken.toString()),
6
)
const stablecoinReserves = [daiReservesObject, usdcReservesObject, tusdReservesObject]
try {
setPrice(getUSDPrice(stablecoinReserves))
} catch {
setPrice(null)
}
}
}, [daiReserveETH, daiReserveToken, usdcReserveETH, usdcReserveToken, tusdReserveETH, tusdReserveToken, chainId])
return price
}