2023-07-26 19:26:27 +00:00
|
|
|
export interface TokenInfo {
|
|
|
|
id: string
|
|
|
|
denom: string
|
|
|
|
displayName: string
|
|
|
|
decimalPlaces: number
|
|
|
|
imageURL?: string
|
|
|
|
symbol?: string
|
|
|
|
}
|
|
|
|
|
2023-07-27 14:26:51 +00:00
|
|
|
export const stars: TokenInfo = {
|
|
|
|
id: 'stars',
|
|
|
|
denom: 'ustars',
|
|
|
|
displayName: 'STARS',
|
|
|
|
decimalPlaces: 6,
|
|
|
|
}
|
|
|
|
|
2023-07-26 19:26:27 +00:00
|
|
|
export const ibcAtom: TokenInfo = {
|
|
|
|
id: 'ibc-atom',
|
2023-08-07 09:59:23 +00:00
|
|
|
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
2023-07-26 19:26:27 +00:00
|
|
|
displayName: 'ATOM',
|
|
|
|
decimalPlaces: 6,
|
|
|
|
}
|
|
|
|
|
2023-07-30 18:11:37 +00:00
|
|
|
export const ibcUsdc: TokenInfo = {
|
|
|
|
id: 'ibc-usdc',
|
2023-08-07 09:59:23 +00:00
|
|
|
denom: 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858',
|
2023-07-30 18:11:37 +00:00
|
|
|
displayName: 'USDC',
|
|
|
|
decimalPlaces: 6,
|
|
|
|
}
|
|
|
|
|
2023-08-07 09:59:23 +00:00
|
|
|
export const ibcFrnz: TokenInfo = {
|
|
|
|
id: 'ibc-frnz',
|
|
|
|
denom: 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9',
|
|
|
|
displayName: 'FRNZ',
|
2023-07-26 19:26:27 +00:00
|
|
|
decimalPlaces: 6,
|
|
|
|
}
|
2023-07-27 14:26:51 +00:00
|
|
|
|
2023-08-07 09:59:23 +00:00
|
|
|
export const tokensList = [stars, ibcAtom, ibcUsdc, ibcFrnz]
|