mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 12:04:21 +00:00
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
// @flow
|
|
import type { State } from 'reducers';
|
|
|
|
export function getEnsAddress(state: State, ensName: string): ?string {
|
|
return state.ens[ensName];
|
|
}
|