A Metamask fork with Infura removed and default networks editable
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.
ciphermask/ui/app/components/send_/send-content/send-gas-row/send-gas-row.component.js

50 lines
1.3 KiB

7 years ago
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import SendRowWrapper from '../send-row-wrapper/send-row-wrapper.component'
import GasFeeDisplay from '../../../send/gas-fee-display-v2'
export default class SendGasRow extends Component {
static propTypes = {
closeFromDropdown: PropTypes.func,
conversionRate: PropTypes.number,
convertedCurrency: PropTypes.string,
7 years ago
from: PropTypes.string,
fromAccounts: PropTypes.array,
fromDropdownOpen: PropTypes.bool,
gasLoadingError: PropTypes.bool,
gasTotal: PropTypes.string,
7 years ago
openFromDropdown: PropTypes.func,
showCustomizeGasModal: PropTypes.func,
7 years ago
tokenContract: PropTypes.object,
updateSendFrom: PropTypes.func,
};
render () {
const {
conversionRate,
convertedCurrency,
gasLoadingError,
gasTotal,
showCustomizeGasModal,
7 years ago
} = this.props
return (
<SendRowWrapper label={`${this.context.t('gasFee')}:`}>
<GasFeeDisplay
conversionRate={conversionRate}
convertedCurrency={convertedCurrency}
gasLoadingError={gasLoadingError}
gasTotal={gasTotal}
onClick={() => showCustomizeGasModal()}
7 years ago
/>
</SendRowWrapper>
)
7 years ago
}
}
SendGasRow.contextTypes = {
t: PropTypes.func,
}