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.
46 lines
1.1 KiB
46 lines
1.1 KiB
7 years ago
|
import { connect } from 'react-redux'
|
||
|
import { compose } from 'recompose'
|
||
|
import { withRouter } from 'react-router-dom'
|
||
6 years ago
|
import { updateSend } from '../../store/actions'
|
||
|
import { clearConfirmTransaction } from '../../ducks/confirm-transaction/confirm-transaction.duck'
|
||
7 years ago
|
import ConfirmSendEther from './confirm-send-ether.component'
|
||
|
|
||
6 years ago
|
const mapStateToProps = state => {
|
||
|
const { confirmTransaction: { txData: { txParams } = {} } } = state
|
||
|
|
||
|
return {
|
||
|
txParams,
|
||
|
}
|
||
|
}
|
||
|
|
||
7 years ago
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
editTransaction: txData => {
|
||
|
const { id, txParams } = txData
|
||
|
const {
|
||
|
gas: gasLimit,
|
||
|
gasPrice,
|
||
|
to,
|
||
|
value: amount,
|
||
|
} = txParams
|
||
|
|
||
|
dispatch(updateSend({
|
||
|
gasLimit,
|
||
|
gasPrice,
|
||
|
gasTotal: null,
|
||
|
to,
|
||
|
amount,
|
||
|
errors: { to: null, amount: null },
|
||
|
editingTransactionId: id && id.toString(),
|
||
|
}))
|
||
|
|
||
|
dispatch(clearConfirmTransaction())
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default compose(
|
||
|
withRouter,
|
||
6 years ago
|
connect(mapStateToProps, mapDispatchToProps)
|
||
7 years ago
|
)(ConfirmSendEther)
|