2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-07 23:47:39 -04:00
|
|
|
import { selectReceiveAddress, selectGettingNewAddress } from 'redux/selectors/wallet';
|
|
|
|
import { doCheckAddressIsMine, doGetNewAddress } from 'redux/actions/wallet';
|
2017-12-21 18:08:54 -03:00
|
|
|
import WalletAddress from './view';
|
2019-10-29 23:07:30 -07:00
|
|
|
import { withRouter } from 'react-router';
|
2017-05-10 20:59:47 -04:00
|
|
|
|
2021-10-07 23:47:39 -04:00
|
|
|
const select = (state) => ({
|
2017-05-10 20:59:47 -04:00
|
|
|
receiveAddress: selectReceiveAddress(state),
|
|
|
|
gettingNewAddress: selectGettingNewAddress(state),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-10 20:59:47 -04:00
|
|
|
|
2021-10-07 23:47:39 -04:00
|
|
|
const perform = (dispatch) => ({
|
|
|
|
checkAddressIsMine: (address) => dispatch(doCheckAddressIsMine(address)),
|
2017-05-10 20:59:47 -04:00
|
|
|
getNewAddress: () => dispatch(doGetNewAddress()),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-05-10 20:59:47 -04:00
|
|
|
|
2021-10-07 23:47:39 -04:00
|
|
|
export default withRouter(connect(select, perform)(WalletAddress));
|