2017-07-31 23:14:30 +00:00
|
|
|
import {
|
|
|
|
postBityOrderSaga,
|
|
|
|
bityTimeRemaining,
|
|
|
|
pollBityOrderStatusSaga
|
|
|
|
} from './swap/orders';
|
|
|
|
import { getBityRatesSaga } from './swap/rates';
|
2017-07-28 00:31:59 +00:00
|
|
|
import contracts from './contracts';
|
|
|
|
import ens from './ens';
|
|
|
|
import notifications from './notifications';
|
|
|
|
import rates from './rates';
|
|
|
|
import wallet from './wallet';
|
2017-08-28 18:05:38 +00:00
|
|
|
import handleConfigChanges from './config';
|
2017-08-28 17:43:57 +00:00
|
|
|
import deterministicWallets from './deterministicWallets';
|
2017-07-28 00:31:59 +00:00
|
|
|
|
2017-07-31 23:14:30 +00:00
|
|
|
export default {
|
|
|
|
bityTimeRemaining,
|
2017-08-28 18:05:38 +00:00
|
|
|
handleConfigChanges,
|
2017-07-31 23:14:30 +00:00
|
|
|
postBityOrderSaga,
|
|
|
|
pollBityOrderStatusSaga,
|
|
|
|
getBityRatesSaga,
|
|
|
|
contracts,
|
|
|
|
ens,
|
|
|
|
notifications,
|
|
|
|
rates,
|
2017-08-28 17:43:57 +00:00
|
|
|
wallet,
|
|
|
|
deterministicWallets
|
2017-07-31 23:14:30 +00:00
|
|
|
};
|