mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-26 10:59:04 +00:00
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
|
import { AppState } from 'features/reducers';
|
||
|
|
||
|
const getNetworks = (state: AppState) => state.config.networks;
|
||
|
|
||
|
export const getCustomNetworkConfigs = (state: AppState) => getNetworks(state).customNetworks;
|