A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/modals/account-modal-container/account-modal-container.con...

23 lines
580 B

import { connect } from 'react-redux';
import { hideModal } from '../../../../store/actions';
import { getSelectedIdentity } from '../../../../selectors';
import AccountModalContainer from './account-modal-container.component';
function mapStateToProps(state, ownProps) {
return {
selectedIdentity: ownProps.selectedIdentity || getSelectedIdentity(state),
};
}
function mapDispatchToProps(dispatch) {
return {
hideModal: () => {
dispatch(hideModal());
},
};
}
export default connect(
mapStateToProps,
mapDispatchToProps,
)(AccountModalContainer);