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-07-31 23:14:30 +00:00
|
|
|
export default {
|
|
|
|
bityTimeRemaining,
|
|
|
|
postBityOrderSaga,
|
|
|
|
pollBityOrderStatusSaga,
|
|
|
|
getBityRatesSaga,
|
|
|
|
contracts,
|
|
|
|
ens,
|
|
|
|
notifications,
|
|
|
|
rates,
|
|
|
|
wallet
|
|
|
|
};
|