51 lines
835 B
JavaScript
51 lines
835 B
JavaScript
import {
|
|
SWAP_DESTINATION_AMOUNT,
|
|
SWAP_DESTINATION_KIND,
|
|
SWAP_ORIGIN_AMOUNT,
|
|
SWAP_ORIGIN_KIND,
|
|
SWAP_UPDATE_BITY_RATES,
|
|
SWAP_PART_ONE_COMPLETE
|
|
} from './swapConstants';
|
|
|
|
export const originKindSwap = value => {
|
|
return {
|
|
type: SWAP_ORIGIN_KIND,
|
|
value
|
|
};
|
|
};
|
|
|
|
export const destinationKindSwap = value => {
|
|
return {
|
|
type: SWAP_DESTINATION_KIND,
|
|
value
|
|
};
|
|
};
|
|
|
|
export const originAmountSwap = value => {
|
|
return {
|
|
type: SWAP_ORIGIN_AMOUNT,
|
|
value
|
|
};
|
|
};
|
|
|
|
export const destinationAmountSwap = value => {
|
|
return {
|
|
type: SWAP_DESTINATION_AMOUNT,
|
|
value
|
|
};
|
|
};
|
|
|
|
export const updateBityRatesSwap = value => {
|
|
return {
|
|
type: SWAP_UPDATE_BITY_RATES,
|
|
value
|
|
};
|
|
};
|
|
|
|
export const partOneCompleteSwap = (value: boolean) => {
|
|
return {
|
|
type: SWAP_PART_ONE_COMPLETE,
|
|
value
|
|
};
|
|
};
|