MyCrypto/common/selectors/ens.js

7 lines
152 B
JavaScript
Raw Normal View History

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