19 lines
547 B
TypeScript
19 lines
547 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';
|
|
import { transaction } from './transaction';
|
|
export default {
|
|
transaction,
|
|
bityTimeRemaining,
|
|
configSaga,
|
|
postBityOrderSaga,
|
|
pollBityOrderStatusSaga,
|
|
getBityRatesSaga,
|
|
notifications,
|
|
wallet,
|
|
deterministicWallets
|
|
};
|