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.
30 lines
1.0 KiB
30 lines
1.0 KiB
import { connect } from 'react-redux'
|
|
import { displayWarning, requestRevealSeedWords, fetchInfoToSync, exportAccounts } 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)),
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: {
|
|
selectedAddress,
|
|
},
|
|
} = state
|
|
|
|
return {
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
selectedAddress,
|
|
keyrings: getMetaMaskKeyrings(state),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage)
|
|
|