Init TokenInfo
This commit is contained in:
parent
adeba3e9d3
commit
75fe1d3387
22
config/token.ts
Normal file
22
config/token.ts
Normal file
@ -0,0 +1,22 @@
|
||||
export interface TokenInfo {
|
||||
id: string
|
||||
denom: string
|
||||
displayName: string
|
||||
decimalPlaces: number
|
||||
imageURL?: string
|
||||
symbol?: string
|
||||
}
|
||||
|
||||
export const ibcAtom: TokenInfo = {
|
||||
id: 'ibc-atom',
|
||||
denom: 'ibc/',
|
||||
displayName: 'ATOM',
|
||||
decimalPlaces: 6,
|
||||
}
|
||||
|
||||
export const stars: TokenInfo = {
|
||||
id: 'stars',
|
||||
denom: 'ustars',
|
||||
displayName: 'STARS',
|
||||
decimalPlaces: 6,
|
||||
}
|
Loading…
Reference in New Issue
Block a user