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