-
Notifications
You must be signed in to change notification settings - Fork 22
/
token.ts
233 lines (206 loc) · 6.28 KB
/
token.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
import cloneDeep from 'lodash.clonedeep'
import { HugeDecimal } from '@dao-dao/math'
import {
GenericToken,
GenericTokenSource,
LooseGenericToken,
PfmMemo,
SortFn,
TokenCardInfo,
TokenType,
UncheckedDenom,
} from '@dao-dao/types'
import { getChainForChainName, getIbcTransferInfoFromChannel } from './chain'
import { objectMatchesStructure } from './objectMatchesStructure'
export const tokensEqual = (
a: LooseGenericToken,
b: LooseGenericToken
): boolean =>
a.chainId === b.chainId &&
a.type === b.type &&
a.denomOrAddress === b.denomOrAddress
export const tokenSourcesEqual = (
a: GenericToken | GenericTokenSource,
b: GenericToken | GenericTokenSource
): boolean => serializeTokenSource(a) === serializeTokenSource(b)
export const serializeTokenSource = (
tokenOrSource: GenericToken | GenericTokenSource
): string => {
const source =
'source' in tokenOrSource ? tokenOrSource.source : tokenOrSource
return [source.chainId, source.type, source.denomOrAddress].join(':')
}
export const deserializeTokenSource = (source: string): GenericTokenSource => {
const [chainId, type, denomOrAddress] = source.split(':')
return {
chainId,
type: type as GenericTokenSource['type'],
denomOrAddress,
}
}
/**
* Validate if a string or object is a valid packet-forward-middleware memo.
*/
export const isValidPfmMemo = (
memo: string | Record<string, unknown>
): boolean => {
try {
const memoObj: PfmMemo = typeof memo === 'string' ? JSON.parse(memo) : memo
return (
objectMatchesStructure(memoObj, {
forward: {
receiver: {},
port: {},
channel: {},
},
}) &&
// Validate next if present.
(!memoObj.forward.next || isValidPfmMemo(memoObj.forward.next!))
)
} catch {
return false
}
}
/**
* Parse a valid packet-forward-middleware memo and return a typed object or
* undefined if invalid.
*/
export const parseValidPfmMemo = (
memo: string | Record<string, unknown>
): PfmMemo | undefined => {
if (!isValidPfmMemo(memo)) {
return
}
const memoObj: PfmMemo =
typeof memo === 'string' ? JSON.parse(memo) : cloneDeep(memo)
if (memoObj.forward.next) {
memoObj.forward.next = parseValidPfmMemo(memoObj.forward.next)
}
return memoObj
}
/**
* Get the sequence of chains in a packet-forward-middleware memo.
*/
export const getPfmChainPathFromMemo = (
sourceChainId: string,
sourceChannelId: string,
memo?: PfmMemo
): string[] => {
const memoObj = memo && parseValidPfmMemo(memo)
const {
destinationChain: { chain_name },
} = getIbcTransferInfoFromChannel(sourceChainId, sourceChannelId)
const toChainId = getChainForChainName(chain_name).chainId
return [
sourceChainId,
...(memoObj
? getPfmChainPathFromMemo(
toChainId,
memoObj.forward.channel,
memoObj.forward.next
)
: [toChainId]),
]
}
/**
* Get the last receiver in a packet-forward-middleware memo.
*/
export const getPfmFinalReceiverFromMemo = (memo: PfmMemo): string =>
memo.forward.next
? getPfmFinalReceiverFromMemo(memo.forward.next)
: memo.forward.receiver
/**
* Function to sort token lists descending by USD value.
*/
export const sortTokensValueDescending: SortFn<
Pick<TokenCardInfo, 'token' | 'unstakedBalance' | 'lazyInfo'>
> = (a, b) => {
const aBalance = a.lazyInfo.loading
? a.unstakedBalance
: a.lazyInfo.data.totalBalance
const aPrice =
a.lazyInfo.loading || !a.lazyInfo.data.usdUnitPrice?.usdPrice
? undefined
: a.lazyInfo.data.totalBalance.times(
a.lazyInfo.data.usdUnitPrice.usdPrice
)
const bBalance = b.lazyInfo.loading
? b.unstakedBalance
: b.lazyInfo.data.totalBalance
const bPrice =
b.lazyInfo.loading || !b.lazyInfo.data.usdUnitPrice?.usdPrice
? undefined
: b.lazyInfo.data.totalBalance.times(
b.lazyInfo.data.usdUnitPrice.usdPrice
)
// If prices are equal, sort alphabetically by symbol.
const symbolComparison = a.token.symbol
.toLocaleLowerCase()
.localeCompare(b.token.symbol.toLocaleLowerCase())
return aPrice && bPrice && aPrice.eq(bPrice)
? symbolComparison
: !aPrice && bPrice?.isPositive()
? 1
: !bPrice && aPrice?.isPositive()
? -1
: aPrice && bPrice
? compareHugeDecimalDescending(aPrice, bPrice) || symbolComparison
: compareHugeDecimalDescending(aBalance, bBalance) || symbolComparison
}
/**
* Function to sort token lists ascending by USD value.
*/
export const sortTokensValueAscending: SortFn<
Pick<TokenCardInfo, 'token' | 'unstakedBalance' | 'lazyInfo'>
> = (a, b) => {
const aBalance = a.lazyInfo.loading
? a.unstakedBalance
: a.lazyInfo.data.totalBalance
const aPrice =
a.lazyInfo.loading || !a.lazyInfo.data.usdUnitPrice?.usdPrice
? undefined
: a.lazyInfo.data.totalBalance.times(
a.lazyInfo.data.usdUnitPrice.usdPrice
)
const bBalance = b.lazyInfo.loading
? b.unstakedBalance
: b.lazyInfo.data.totalBalance
const bPrice =
b.lazyInfo.loading || !b.lazyInfo.data.usdUnitPrice?.usdPrice
? undefined
: b.lazyInfo.data.totalBalance.times(
b.lazyInfo.data.usdUnitPrice.usdPrice
)
// If prices are equal, sort alphabetically by symbol.
const symbolComparison = a.token.symbol
.toLocaleLowerCase()
.localeCompare(b.token.symbol.toLocaleLowerCase())
return aPrice && bPrice && aPrice.eq(bPrice)
? symbolComparison
: !aPrice && bPrice?.isPositive()
? 1
: !bPrice && aPrice?.isPositive()
? -1
: aPrice && bPrice
? compareHugeDecimalAscending(aPrice, bPrice) || symbolComparison
: compareHugeDecimalAscending(aBalance, bBalance) || symbolComparison
}
const compareHugeDecimalAscending = (a: HugeDecimal, b: HugeDecimal): number =>
a.eq(b) ? 0 : a.gt(b) ? 1 : -1
const compareHugeDecimalDescending = (a: HugeDecimal, b: HugeDecimal): number =>
a.eq(b) ? 0 : a.gt(b) ? -1 : 1
/**
* Convert GenericToken into UncheckedDenom for contract calls.
*/
export const tokenToUncheckedDenom = (token: GenericToken): UncheckedDenom => {
if (token.type === TokenType.Native) {
return {
native: token.denomOrAddress,
}
} else if (token.type === TokenType.Cw20) {
return {
cw20: token.denomOrAddress,
}
}
throw new Error('Unsupported token type')
}