File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
app/pages/RuntimeTransactionDetailPage Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ import { base64ToHex } from '../../utils/helpers'
3737import { DappBanner } from '../../components/DappBanner'
3838import { getFiatCurrencyForScope , showFiatValues } from '../../../config'
3939import { convertToNano , getGasPrice } from '../../utils/number-utils'
40+ import Tooltip from '@mui/material/Tooltip'
41+ import HelpIcon from '@mui/icons-material/Help'
4042
4143type TransactionSelectionResult = {
4244 wantedTransaction ?: RuntimeTransaction
@@ -322,6 +324,10 @@ export const RuntimeTransactionDetailView: FC<{
322324 ...getPreciseNumberFormat ( convertToNano ( gasPrice ) ) ,
323325 ticker : `n${ tickerName } ` ,
324326 } ) }
327+
328+ < Tooltip title = { t ( 'transaction.tooltips.gasPriceExplanation' ) } >
329+ < HelpIcon />
330+ </ Tooltip >
325331 </ dd >
326332 </ >
327333 ) }
Original file line number Diff line number Diff line change 459459 "txEncrypted" : " This transaction is encrypted." ,
460460 "txNotEncrypted" : " This transaction is <strong>not</strong> encrypted." ,
461461 "senderTooltipUnavailable" : " Sender not available in selected address format" ,
462- "recipientTooltipUnavailable" : " Recipient not available in selected address format"
462+ "recipientTooltipUnavailable" : " Recipient not available in selected address format" ,
463+ "gasPriceExplanation" : " For each transaction, you're charged a certain amount for the gas you use and is measured in nano ROSE(Gwei)."
463464 }
464465 },
465466 "runtimeEvent" : {
You can’t perform that action at this time.
0 commit comments