Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

useChainId

Usage

import { useChainId } from '@ivem/kit-react'
 
const chainId = useChainId()

Parameters

  • None

Return Type

  • string

Examples

function CurrentChain() {
  const chainId = useChainId()
  return <span>{chainId}</span>
}

Related