UNPKG

@knine-sdk/react

Version:

React helpers for Knine Finance projects. Part of Knine JS SDK

11 lines (8 loc) 348 B
import { getTokenAddress } from '@knine-sdk/constants'; import { useSDK } from './useSDK.js'; const useTokenAddress = (token, chainId) => { const { chainId: currentChainId } = useSDK(); const id = chainId !== null && chainId !== void 0 ? chainId : currentChainId; return getTokenAddress(id, token); }; export { useTokenAddress };