MyCrypto/common/sagas/index.js
William O'Beirne 1d235cf67a Trezor Unlock + Deterministic Wallet Groundwork (#137)
* Basic reducer / action / saga setup, rendering wallets.

* Better address rows, with values.

* Styling + back and next buttons.

* Formatting, dpath changing.

* Derived -> Deterministic

* Set wallet on confirm.

* Flesh out Trezor wallet, add transaction signing.

* Custom dpath, better handling of canceled switches and over-rendering / prop calling.

* Token empty string value.

* Move DPaths to config file.

* Clarifying comments.
2017-08-28 12:43:57 -05:00

26 lines
565 B
JavaScript

import {
postBityOrderSaga,
bityTimeRemaining,
pollBityOrderStatusSaga
} from './swap/orders';
import { getBityRatesSaga } from './swap/rates';
import contracts from './contracts';
import ens from './ens';
import notifications from './notifications';
import rates from './rates';
import wallet from './wallet';
import deterministicWallets from './deterministicWallets';
export default {
bityTimeRemaining,
postBityOrderSaga,
pollBityOrderStatusSaga,
getBityRatesSaga,
contracts,
ens,
notifications,
rates,
wallet,
deterministicWallets
};