36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { ensSaga as ens } from './ens/sagas';
|
|
import { configSaga as config } from './config/sagas';
|
|
import {
|
|
swapOrdersSaga as swapOrders,
|
|
swapRatesSaga as swapRates,
|
|
swapLiteSendSaga as swapLiteSend
|
|
} from './swap/sagas';
|
|
import { notificationsSaga as notifications } from './notifications/sagas';
|
|
import { walletSaga as wallet } from './wallet/sagas';
|
|
import { transactionsSaga as transactions } from './transactions/sagas';
|
|
import { messageSaga as message } from './message/sagas';
|
|
import { deterministicWalletsSaga as deterministicWallets } from './deterministicWallets/sagas';
|
|
import { ratesSaga as rates } from './rates/sagas';
|
|
import { transactionSaga as transaction } from './transaction/sagas';
|
|
import { gasSaga as gas } from './gas/sagas';
|
|
import { scheduleSaga as schedule } from './schedule/sagas';
|
|
import { addressBookSaga as addressBook } from './addressBook/sagas';
|
|
|
|
export default {
|
|
ens,
|
|
config,
|
|
swapOrders,
|
|
swapRates,
|
|
swapLiteSend,
|
|
notifications,
|
|
wallet,
|
|
transaction,
|
|
message,
|
|
deterministicWallets,
|
|
rates,
|
|
transactions,
|
|
gas,
|
|
schedule,
|
|
addressBook
|
|
};
|