7 lines
152 B
JavaScript
Raw Normal View History

2017-06-27 02:27:55 +04:00
// @flow
import type { State } from 'reducers';
export function getEnsAddress(state: State, ensName: string): ?string {
2017-07-02 00:49:06 -05:00
return state.ens[ensName];
2017-06-27 02:27:55 +04:00
}