mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +00:00
1aad9d1c21
* Convert Swap to consistent style * Generate wallet reducer cleanup. * Confirm empty action in swap reducer * Union types. Fix gen wallet collision * Fix not using all actions in reducer. Added reducer state for is fetching from bity. Added todo to make that a loader. * Readme instructions. * Remove common action constants. * Bring all actions and reducers inline with readme instructions. * Readme fixes * address comments
40 lines
679 B
JavaScript
40 lines
679 B
JavaScript
// @flow
|
|
|
|
/*** Resolve ENS name ***/
|
|
export type ResolveEnsNameAction = {
|
|
type: 'ENS_RESOLVE',
|
|
payload: string
|
|
};
|
|
|
|
export function resolveEnsName(name: string): ResolveEnsNameAction {
|
|
return {
|
|
type: 'ENS_RESOLVE',
|
|
payload: name
|
|
};
|
|
}
|
|
|
|
/*** Cache ENS address ***/
|
|
export type CacheEnsAddressAction = {
|
|
type: 'ENS_CACHE',
|
|
payload: {
|
|
ensName: string,
|
|
address: string
|
|
}
|
|
};
|
|
|
|
export function cacheEnsAddress(
|
|
ensName: string,
|
|
address: string
|
|
): CacheEnsAddressAction {
|
|
return {
|
|
type: 'ENS_CACHE',
|
|
payload: {
|
|
ensName,
|
|
address
|
|
}
|
|
};
|
|
}
|
|
|
|
/*** Union Type ***/
|
|
export type EnsAction = ResolveEnsNameAction | CacheEnsAddressAction;
|