mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 01:13:17 +01:00
15 lines
388 B
TypeScript
15 lines
388 B
TypeScript
import { tokens } from '@/constants'
|
|
import type { Token, TokenAddress } from '@/types'
|
|
|
|
export function getTokenBySymbol(symbol: string): Token | undefined {
|
|
const token = tokens.find((t) => t.symbol === symbol)
|
|
return token
|
|
}
|
|
|
|
export function getTokenAddressBySymbol(
|
|
symbol: string
|
|
): TokenAddress | undefined {
|
|
const token = getTokenBySymbol(symbol)
|
|
return token?.address
|
|
}
|