22 lines
494 B
TypeScript
22 lines
494 B
TypeScript
import configSaga from './config';
|
|
import deterministicWallets from './deterministicWallets';
|
|
import notifications from './notifications';
|
|
import {
|
|
bityTimeRemaining,
|
|
pollBityOrderStatusSaga,
|
|
postBityOrderSaga
|
|
} from './swap/orders';
|
|
import { getBityRatesSaga } from './swap/rates';
|
|
import wallet from './wallet';
|
|
|
|
export default {
|
|
bityTimeRemaining,
|
|
configSaga,
|
|
postBityOrderSaga,
|
|
pollBityOrderStatusSaga,
|
|
getBityRatesSaga,
|
|
notifications,
|
|
wallet,
|
|
deterministicWallets
|
|
};
|