NetworkSelectorChainProps
type NetworkSelectorChainProps = {  chain: Chain;  close?: () => void;  switchChain: () => void;  switchFailed: boolean;  switching: boolean;};
Chain  object for the chain to be displayed
type chain = Chain;
flag indicating whether the SDK failed to switch to the given chain
type switchFailed = boolean;
flag indicating whether the SDK is currently switching to the given chain
type switching = boolean;