mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
28 lines
781 B
JavaScript
28 lines
781 B
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props';
|
|
import {
|
|
getCurrentChainId,
|
|
getRpcPrefsForCurrentProvider,
|
|
} from '../../../../selectors';
|
|
import { removeAccount } from '../../../../store/actions';
|
|
import ConfirmRemoveAccount from './confirm-remove-account.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
chainId: getCurrentChainId(state),
|
|
rpcPrefs: getRpcPrefsForCurrentProvider(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
removeAccount: (address) => dispatch(removeAccount(address)),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmRemoveAccount);
|