2023-11-20 11:25:16 +00:00
|
|
|
import { BN_ZERO } from 'constants/math'
|
2023-06-15 11:00:46 +00:00
|
|
|
import usePrices from 'hooks/usePrices'
|
2023-05-23 13:10:26 +00:00
|
|
|
|
|
|
|
export default function usePrice(denom: string) {
|
|
|
|
const { data: prices } = usePrices()
|
|
|
|
|
2023-11-20 11:25:16 +00:00
|
|
|
return prices.find((coin) => coin.denom === denom)?.amount ?? BN_ZERO
|
2023-05-23 13:10:26 +00:00
|
|
|
}
|