forked from PanoraExchange/Aptos-Tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
30 lines (29 loc) · 731 Bytes
/
types.ts
File metadata and controls
30 lines (29 loc) · 731 Bytes
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
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" | "Echo" | null
panoraSymbol: string
logoUrl: string | null
websiteUrl: string | null
panoraUI: boolean
panoraTags?: string[] | null
panoraIndex?: number | null
coinGeckoId: string | null
coinMarketCapId: number | null
}