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/app/pages/create-account/new-account.container.js

32 lines
1011 B

import { connect } from 'react-redux'
import * as actions from '../../store/actions'
import NewAccountCreateForm from './new-account.component'
import { getMostRecentOverviewPage } from '../../ducks/history/history'
const mapStateToProps = (state) => {
const { metamask: { network, selectedAddress, identities = {} } } = state
const numberOfExistingAccounts = Object.keys(identities).length
const newAccountNumber = numberOfExistingAccounts + 1
return {
network,
address: selectedAddress,
newAccountNumber,
mostRecentOverviewPage: getMostRecentOverviewPage(state),
}
}
const mapDispatchToProps = (dispatch) => {
return {
createAccount: (newAccountName) => {
return dispatch(actions.addNewAccount())
.then((newAccountAddress) => {
if (newAccountName) {
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName))
}
})
},
}
}
export default connect(mapStateToProps, mapDispatchToProps)(NewAccountCreateForm)