mirror of
https://github.com/cerc-io/mars-interface.git
synced 2025-09-16 22:44:06 +00:00
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import useStore from 'store'
|
|
|
|
export const useRedBankAsset = (denom: string) => {
|
|
const redBankAssets = useStore((s) => s.redBankAssets)
|
|
return redBankAssets.find((asset) => asset.denom === denom)
|
|
}
|