mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
32 lines
874 B
JavaScript
32 lines
874 B
JavaScript
import { connect } from 'react-redux';
|
|
import { showModal, setAccountLabel } from '../../../../store/actions';
|
|
import {
|
|
getSelectedIdentity,
|
|
getRpcPrefsForCurrentProvider,
|
|
getCurrentChainId,
|
|
} from '../../../../selectors';
|
|
import AccountDetailsModal from './account-details-modal.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
chainId: getCurrentChainId(state),
|
|
selectedIdentity: getSelectedIdentity(state),
|
|
keyrings: state.metamask.keyrings,
|
|
rpcPrefs: getRpcPrefsForCurrentProvider(state),
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
showExportPrivateKeyModal: () =>
|
|
dispatch(showModal({ name: 'EXPORT_PRIVATE_KEY' })),
|
|
setAccountLabel: (address, label) =>
|
|
dispatch(setAccountLabel(address, label)),
|
|
};
|
|
};
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(AccountDetailsModal);
|