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.
19 lines
598 B
19 lines
598 B
import { connect } from 'react-redux';
|
|
import { getAccountsWithLabels, getAddressBookEntry } from '../../../selectors';
|
|
import ConfirmPageContainer from './confirm-page-container.component';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
const to = ownProps.toAddress;
|
|
|
|
const contact = getAddressBookEntry(state, to);
|
|
return {
|
|
contact,
|
|
toName: contact?.name || ownProps.toName,
|
|
isOwnedAccount: getAccountsWithLabels(state)
|
|
.map((accountWithLabel) => accountWithLabel.address)
|
|
.includes(to),
|
|
to,
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(ConfirmPageContainer);
|
|
|