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/pages/mobile-sync/mobile-sync.container.js

37 lines
1.1 KiB

import { connect } from 'react-redux';
import {
displayWarning,
requestRevealSeedWords,
fetchInfoToSync,
exportAccounts,
hideWarning,
} from '../../store/actions';
import { getMostRecentOverviewPage } from '../../ducks/history/history';
import { getMetaMaskKeyrings } from '../../selectors';
import MobileSyncPage from './mobile-sync.component';
const mapDispatchToProps = (dispatch) => {
return {
requestRevealSeedWords: (password) =>
dispatch(requestRevealSeedWords(password)),
fetchInfoToSync: () => dispatch(fetchInfoToSync()),
displayWarning: (message) => dispatch(displayWarning(message || null)),
exportAccounts: (password, addresses) =>
dispatch(exportAccounts(password, addresses)),
hideWarning: () => dispatch(hideWarning()),
};
};
const mapStateToProps = (state) => {
const {
metamask: { selectedAddress },
} = state;
return {
mostRecentOverviewPage: getMostRecentOverviewPage(state),
selectedAddress,
keyrings: getMetaMaskKeyrings(state),
};
};
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage);