mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { updateSend } from '../../store/actions';
|
|
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: (txData) => {
|
|
const { id, txParams } = txData;
|
|
const { from, gas: gasLimit, gasPrice, to, value: amount } = txParams;
|
|
|
|
dispatch(
|
|
updateSend({
|
|
from,
|
|
gasLimit,
|
|
gasPrice,
|
|
gasTotal: null,
|
|
to,
|
|
amount,
|
|
errors: { to: null, amount: null },
|
|
editingTransactionId: id?.toString(),
|
|
}),
|
|
);
|
|
|
|
dispatch(clearConfirmTransaction());
|
|
},
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmSendEther);
|