UNPKG

biuauthui

Version:
14 lines (10 loc) 249 B
import { useNetwork } from "wagmi"; const useActiveChainId = () => { const { chain } = useNetwork(); const chainId = chain?.id; return { chainId, isWrongNetwork: chain?.unsupported ?? false, }; }; export default useActiveChainId;