mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
28 lines
1.0 KiB
JavaScript
28 lines
1.0 KiB
JavaScript
import { combineReducers } from 'redux';
|
|
import { AlertTypes } from '../../shared/constants/alerts';
|
|
import metamaskReducer from './metamask/metamask';
|
|
import localeMessagesReducer from './locale/locale';
|
|
import sendReducer from './send/send';
|
|
import domainReducer from './domains';
|
|
import appStateReducer from './app/app';
|
|
import confirmTransactionReducer from './confirm-transaction/confirm-transaction.duck';
|
|
import gasReducer from './gas/gas.duck';
|
|
import { invalidCustomNetwork, unconnectedAccount } from './alerts';
|
|
import swapsReducer from './swaps/swaps';
|
|
import historyReducer from './history/history';
|
|
|
|
export default combineReducers({
|
|
[AlertTypes.invalidCustomNetwork]: invalidCustomNetwork,
|
|
[AlertTypes.unconnectedAccount]: unconnectedAccount,
|
|
activeTab: (s) => (s === undefined ? null : s),
|
|
metamask: metamaskReducer,
|
|
appState: appStateReducer,
|
|
DNS: domainReducer,
|
|
history: historyReducer,
|
|
send: sendReducer,
|
|
confirmTransaction: confirmTransactionReducer,
|
|
swaps: swapsReducer,
|
|
gas: gasReducer,
|
|
localeMessages: localeMessagesReducer,
|
|
});
|