mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-15 05:24:24 +00:00
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
|
import { AppState } from 'reducers';
|
||
|
|
||
|
export function getEnsAddress(state: AppState, ensName: string): null | string {
|
||
|
return state.ens[ensName];
|
||
|
}
|