forked from PanoraExchange/Aptos-Tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.ts
31 lines (30 loc) · 768 Bytes
/
types.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
export type SubmitTokenRequestInfo = {
chainId: number
tokenAddress: `0x${string}` | null
faAddress: `0x${string}` | null
name: string
symbol: string
decimals: number
logoUrl: string
websiteUrl: string
coinGeckoId: string | null
coinMarketCapId: number | null
}
export type TokenInfo = {
chainId: number
tokenAddress: `0x${string}` | null
faAddress: `0x${string}` | null
name: string
symbol: string
decimals: number
bridge: "LayerZero" | "Wormhole" | "Celer" | null
panoraSymbol: string
logoUrl: string | null
websiteUrl: string | null
category: "Native" | "Bridged" | "Meme"
isInPanoraTokenList: boolean
isBanned: boolean
panoraOrderIndex: number | null
coinGeckoId: string | null
coinMarketCapId: number | null
}