1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

EIP-1559 - Provide tooltip text for all advanced gas controls (#11529)

This commit is contained in:
David Walsh 2021-07-15 12:23:37 -05:00 committed by GitHub
parent 1e1530e8e9
commit c241d3150c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View File

@ -650,15 +650,24 @@
"editGasHigh": {
"message": "High"
},
"editGasLimitTooltip": {
"message": "Gas limit is the maximum units of gas you are willing to use. Units of gas are a multiplier to “Max priority fee” and “Max fee”."
},
"editGasLow": {
"message": "Low"
},
"editGasMaxFeeLow": {
"message": "Max fee too low for network conditions"
},
"editGasMaxFeeTooltip": {
"message": "The max fee is the most youll pay (base fee + priority fee)."
},
"editGasMaxPriorityFeeLow": {
"message": "Max priority fee too low for network conditions"
},
"editGasMaxPriorityFeeTooltip": {
"message": "Max priority fee (aka “miner tip”) goes directly to miners and incentivizes them to prioritize your transaction. Youll most often pay your max setting"
},
"editGasMedium": {
"message": "Medium"
},

View File

@ -64,7 +64,7 @@ export default function AdvancedGasControls({
<FormField
titleText={t('gasLimit')}
onChange={setGasLimit}
tooltipText=""
tooltipText={t('editGasLimitTooltip')}
value={gasLimit}
numeric
autoFocus
@ -74,7 +74,7 @@ export default function AdvancedGasControls({
<FormField
titleText={t('maxPriorityFee')}
titleUnit="(GWEI)"
tooltipText=""
tooltipText={t('editGasMaxPriorityFeeTooltip')}
onChange={(value) => {
setMaxPriorityFee(value);
onManualChange?.();
@ -111,7 +111,7 @@ export default function AdvancedGasControls({
<FormField
titleText={t('maxFee')}
titleUnit="(GWEI)"
tooltipText=""
tooltipText={t('editGasMaxFeeTooltip')}
onChange={(value) => {
setMaxFee(value);
onManualChange?.();