import type { Config } from '../createConfig.js' export type GetChainIdReturnType = config['chains'][number]['id'] /** https://wagmi.sh/core/api/actions/getChainId */ export function getChainId( config: config, ): GetChainIdReturnType { return config.state.chainId }