2017-07-02 00:49:06 -05:00

7 lines
152 B
JavaScript

// @flow
import type { State } from 'reducers';
export function getEnsAddress(state: State, ensName: string): ?string {
return state.ens[ensName];
}