MyCrypto/common/sagas/index.ts
Maciej Hirsz cf59688896 Enable Parity Signer Message Signing (#1663)
* Enable Parity Signer to sign messages

* Verify that message signature is correct

* Type systems are awesome :)
2018-04-25 19:36:29 -05:00

32 lines
744 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 { message } from './message';
import transactions from './transactions';
import gas from './gas';
import { schedule } from './schedule';
export default {
ens,
configSaga,
swapOrders,
swapRates,
swapLiteSend,
notifications,
wallet,
transaction,
message,
deterministicWallets,
rates,
transactions,
gas,
schedule
};