import React, { PropsWithChildren, useState } from 'react' import { Chains } from '../../core' import { ChainContext } from '../../store/wallet/chain-context' interface ChainProviderProps { chains: Chains } export const ChainProvider: React.FC> = ({ chains, children }) => { const [chainId, setChainId] = useState() return ( {children} ) }