mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-16 04:57:08 +00:00
* Component layer and routing for transaction status. * Initial start on redux for transactions. * Initial crack at reducer / actions / saga for transactions. * Finish off check transaction saga, reducer, component, and page.
40 lines
981 B
TypeScript
40 lines
981 B
TypeScript
import configSaga from './config';
|
|
import deterministicWallets from './deterministicWallets';
|
|
import notifications from './notifications';
|
|
import rates from './rates';
|
|
import {
|
|
swapTimerSaga,
|
|
pollBityOrderStatusSaga,
|
|
postBityOrderSaga,
|
|
postShapeshiftOrderSaga,
|
|
pollShapeshiftOrderStatusSaga,
|
|
restartSwapSaga
|
|
} from './swap/orders';
|
|
import { liteSend } from './swap/liteSend';
|
|
import { getBityRatesSaga, getShapeShiftRatesSaga, swapProviderSaga } from './swap/rates';
|
|
import wallet from './wallet';
|
|
import { ens } from './ens';
|
|
import { transaction } from './transaction';
|
|
import transactions from './transactions';
|
|
|
|
export default {
|
|
ens,
|
|
liteSend,
|
|
configSaga,
|
|
postBityOrderSaga,
|
|
postShapeshiftOrderSaga,
|
|
pollBityOrderStatusSaga,
|
|
pollShapeshiftOrderStatusSaga,
|
|
getBityRatesSaga,
|
|
getShapeShiftRatesSaga,
|
|
swapTimerSaga,
|
|
restartSwapSaga,
|
|
notifications,
|
|
wallet,
|
|
transaction,
|
|
deterministicWallets,
|
|
swapProviderSaga,
|
|
rates,
|
|
transactions
|
|
};
|