mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
01fc5f1a89
* Start splitting networks into their own reducers * Split out nodes and networks into their own reducers * Cleanup file structure * Make selectors for new state * Change custom network typing * re-type repo * Fix up components to use selectors, work on fixing sagas * Provide consistency in naming, fix more sagas * Get non web3 node switching working * Split config rehydration off into a different file for store * Inline auth for custom nodes * Include typing for app state * moar selectors * Get web3 working + cleanup sagas * Cleanup tsc errors * Use forof loop instead of foreach for clearing pruning custom networks * Add reducer tests for new redux state * Export needed variables * Add console error * Remove old comment * Work on saga tests * Get passing existing saga tests * Fix more tests * Remove irrlevant tests * add console error * Get rest of tests passing * Fix merge errors * Remove random text * Fix store saving * Fix selector lib only grabbing from static nodes * Fix custom node removal crashing app * Infer selected network via node * Prune custom networks properly on node removal * Infer network name from chainid from selecting state * Cleanup tsc errors * Remove MEW nodes for main and testnet
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { routerReducer } from 'react-router-redux';
|
|
import { combineReducers } from 'redux';
|
|
import { config, State as ConfigState } from './config';
|
|
import { customTokens, State as CustomTokensState } from './customTokens';
|
|
import { deterministicWallets, State as DeterministicWalletsState } from './deterministicWallets';
|
|
import { ens, State as EnsState } from './ens';
|
|
import { notifications, State as NotificationsState } from './notifications';
|
|
import { rates, State as RatesState } from './rates';
|
|
import { State as SwapState, swap } from './swap';
|
|
import { State as WalletState, wallet } from './wallet';
|
|
import { State as TransactionState, transaction } from './transaction';
|
|
import { onboardStatus, State as OnboardStatusState } from './onboardStatus';
|
|
|
|
export interface AppState {
|
|
// Custom reducers
|
|
config: ConfigState;
|
|
notifications: NotificationsState;
|
|
onboardStatus: OnboardStatusState;
|
|
ens: EnsState;
|
|
wallet: WalletState;
|
|
customTokens: CustomTokensState;
|
|
rates: RatesState;
|
|
deterministicWallets: DeterministicWalletsState;
|
|
// Third party reducers (TODO: Fill these out)
|
|
form: any;
|
|
routing: any;
|
|
swap: SwapState;
|
|
transaction: TransactionState;
|
|
}
|
|
|
|
export default combineReducers<AppState>({
|
|
config,
|
|
swap,
|
|
notifications,
|
|
onboardStatus,
|
|
ens,
|
|
wallet,
|
|
customTokens,
|
|
rates,
|
|
deterministicWallets,
|
|
routing: routerReducer,
|
|
transaction
|
|
});
|