mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
32 lines
960 B
JavaScript
32 lines
960 B
JavaScript
import { connect } from 'react-redux'
|
|
import * as actions from '../../store/actions'
|
|
import NewAccountCreateForm from './new-account.component'
|
|
|
|
const mapStateToProps = state => {
|
|
const { metamask: { network, selectedAddress, identities = {} } } = state
|
|
const numberOfExistingAccounts = Object.keys(identities).length
|
|
const newAccountNumber = numberOfExistingAccounts + 1
|
|
|
|
return {
|
|
network,
|
|
address: selectedAddress,
|
|
newAccountNumber,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
toCoinbase: address => dispatch(actions.buyEth({ network: '1', address, amount: 0 })),
|
|
createAccount: newAccountName => {
|
|
return dispatch(actions.addNewAccount())
|
|
.then(newAccountAddress => {
|
|
if (newAccountName) {
|
|
dispatch(actions.setAccountLabel(newAccountAddress, newAccountName))
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(NewAccountCreateForm)
|