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:
parent
1e1530e8e9
commit
c241d3150c
@ -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 you’ll 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. You’ll most often pay your max setting"
|
||||
},
|
||||
"editGasMedium": {
|
||||
"message": "Medium"
|
||||
},
|
||||
|
@ -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?.();
|
||||
|
Loading…
Reference in New Issue
Block a user