2017-10-10 22:04:49 -07:00
|
|
|
import configSaga from './config';
|
2017-09-24 19:06:28 -07:00
|
|
|
import deterministicWallets from './deterministicWallets';
|
|
|
|
import notifications from './notifications';
|
2017-07-31 18:14:30 -05:00
|
|
|
import {
|
|
|
|
bityTimeRemaining,
|
2017-09-24 19:06:28 -07:00
|
|
|
pollBityOrderStatusSaga,
|
|
|
|
postBityOrderSaga
|
2017-07-31 18:14:30 -05:00
|
|
|
} from './swap/orders';
|
|
|
|
import { getBityRatesSaga } from './swap/rates';
|
2017-07-27 20:31:59 -04:00
|
|
|
import wallet from './wallet';
|
|
|
|
|
2017-07-31 18:14:30 -05:00
|
|
|
export default {
|
|
|
|
bityTimeRemaining,
|
2017-10-10 22:04:49 -07:00
|
|
|
configSaga,
|
2017-07-31 18:14:30 -05:00
|
|
|
postBityOrderSaga,
|
|
|
|
pollBityOrderStatusSaga,
|
|
|
|
getBityRatesSaga,
|
|
|
|
notifications,
|
2017-08-28 13:43:57 -04:00
|
|
|
wallet,
|
|
|
|
deterministicWallets
|
2017-07-31 18:14:30 -05:00
|
|
|
};
|