mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 20:14:12 +00:00
780f3ba94f
* balance fetching * fix tests * bump deps * validate custom token form * equiv values * fix rates saga naming * address review comments
16 lines
268 B
JavaScript
16 lines
268 B
JavaScript
// @flow
|
|
|
|
export type SetRatesAction = {
|
|
type: 'RATES_SET',
|
|
payload: { [string]: number }
|
|
};
|
|
|
|
export type RatesAction = SetRatesAction;
|
|
|
|
export function setRates(payload: { [string]: number }): SetRatesAction {
|
|
return {
|
|
type: 'RATES_SET',
|
|
payload
|
|
};
|
|
}
|