mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-19 22:38:12 +00:00
* 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.
26 lines
565 B
JavaScript
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
|
|
};
|