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.
31 lines
862 B
31 lines
862 B
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { ASSET_TYPES, editTransaction } from '../../ducks/send';
|
|
import { clearConfirmTransaction } from '../../ducks/confirm-transaction/confirm-transaction.duck';
|
|
import ConfirmSendEther from './confirm-send-ether.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
confirmTransaction: { txData: { txParams } = {} },
|
|
} = state;
|
|
|
|
return {
|
|
txParams,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
editTransaction: async (txData) => {
|
|
const { id } = txData;
|
|
await dispatch(editTransaction(ASSET_TYPES.NATIVE, id.toString()));
|
|
dispatch(clearConfirmTransaction());
|
|
},
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmSendEther);
|
|
|