stargaze-studio/config/token.ts

39 lines
689 B
TypeScript
Raw Normal View History

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-07-27 14:26:51 +00:00
denom: 'ibc/atom',
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',
denom: 'ibc/usdc',
displayName: 'USDC',
decimalPlaces: 6,
}
2023-07-27 14:26:51 +00:00
export const ibcFrenz: TokenInfo = {
id: 'ibc-frenz',
denom: 'ibc/frenz',
displayName: 'FRENZ',
2023-07-26 19:26:27 +00:00
decimalPlaces: 6,
}
2023-07-27 14:26:51 +00:00
2023-07-30 18:11:37 +00:00
export const tokensList = [stars, ibcAtom, ibcUsdc, ibcFrenz]