import React, { Component } from 'react' import PropTypes from 'prop-types' import GasPriceButtonGroup from '../../gas-price-button-group' export default class BasicTabContent extends Component { static contextTypes = { t: PropTypes.func, } static propTypes = { gasPriceButtonGroupProps: PropTypes.object, } render () { return (
Estimated Processing Times
Select a higher gas fee to accelerate the processing of your transaction.*
* Accelerating a transaction by using a higher gas price increases its chances of getting processed by the network faster, but it is not always guaranteed.
) } }