49 lines
850 B
JavaScript
Raw Normal View History

import {
SWAP_DESTINATION_AMOUNT,
SWAP_DESTINATION_KIND,
SWAP_ORIGIN_AMOUNT,
SWAP_ORIGIN_KIND,
SWAP_UPDATE_BITY_RATES
} from './swapConstants';
2017-06-11 20:00:28 -05:00
export const SWAP_ORIGIN_KIND_TO = (originKind, bityRates) => {
2017-06-19 00:39:07 -05:00
return {
type: SWAP_ORIGIN_KIND,
payload: {
originKind,
bityRates
}
2017-06-19 00:39:07 -05:00
};
2017-06-11 20:00:28 -05:00
};
export const SWAP_DESTINATION_KIND_TO = (destinationKind, bityRates) => {
2017-06-19 00:39:07 -05:00
return {
type: SWAP_DESTINATION_KIND,
payload: {
destinationKind,
bityRates
}
2017-06-19 00:39:07 -05:00
};
2017-06-18 19:56:11 -05:00
};
2017-06-11 20:00:28 -05:00
2017-06-19 00:39:07 -05:00
export const SWAP_ORIGIN_AMOUNT_TO = value => {
return {
type: SWAP_ORIGIN_AMOUNT,
value
};
2017-06-11 20:00:28 -05:00
};
2017-06-19 00:39:07 -05:00
export const SWAP_DESTINATION_AMOUNT_TO = value => {
return {
type: SWAP_DESTINATION_AMOUNT,
value
};
2017-06-18 19:56:11 -05:00
};
2017-06-11 20:00:28 -05:00
2017-06-19 00:39:07 -05:00
export const SWAP_UPDATE_BITY_RATES_TO = value => {
return {
type: SWAP_UPDATE_BITY_RATES,
value
};
2017-06-18 19:56:11 -05:00
};