mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
33f5ede22a
* Refactor swaps: * Remove references to bity fallback, it aint happening * Consolidate sagas to single orchestrator function like other sagas * Grab rates once, dont continuously poll * tscheck * Re-instate the auto-fetching behavior. This time, only notify the first time. * Make CurrentRates responsible for redux actions. Fix up some typings. * Remove commented code. * Update snapshot.
28 lines
645 B
TypeScript
28 lines
645 B
TypeScript
import configSaga from './config';
|
|
import deterministicWallets from './deterministicWallets';
|
|
import notifications from './notifications';
|
|
import rates from './rates';
|
|
import swapOrders from './swap/orders';
|
|
import swapLiteSend from './swap/liteSend';
|
|
import swapRates from './swap/rates';
|
|
import wallet from './wallet';
|
|
import { ens } from './ens';
|
|
import { transaction } from './transaction';
|
|
import transactions from './transactions';
|
|
import gas from './gas';
|
|
|
|
export default {
|
|
ens,
|
|
configSaga,
|
|
swapOrders,
|
|
swapRates,
|
|
swapLiteSend,
|
|
notifications,
|
|
wallet,
|
|
transaction,
|
|
deterministicWallets,
|
|
rates,
|
|
transactions,
|
|
gas
|
|
};
|