Commit dae9125c authored by isstuev's avatar isstuev

change tooltip

parent 628fac3d
...@@ -340,7 +340,8 @@ const TxDetails = () => { ...@@ -340,7 +340,8 @@ const TxDetails = () => {
{ data.l1_fee && ( { data.l1_fee && (
<DetailsInfoItem <DetailsInfoItem
title="L1 fee" title="L1 fee"
hint="L1 fee" // eslint-disable-next-line max-len
hint={ `L1 Data Fee which is used to cover the L1 "security" cost from the batch submission mechanism. In combination with L2 execution fee, L1 fee makes the total amount of fees that a transaction pays.` }
> >
<CurrencyValue <CurrencyValue
value={ data.l1_fee } value={ data.l1_fee }
...@@ -353,7 +354,7 @@ const TxDetails = () => { ...@@ -353,7 +354,7 @@ const TxDetails = () => {
{ data.l1_fee_scalar && ( { data.l1_fee_scalar && (
<DetailsInfoItem <DetailsInfoItem
title="L1 fee scalar" title="L1 fee scalar"
hint="L1 fee scalar" hint="A Dynamic overhead (fee scalar) premium, which serves as a buffer in case L1 prices rapidly increase."
> >
<Text>{ data.l1_fee_scalar }</Text> <Text>{ data.l1_fee_scalar }</Text>
</DetailsInfoItem> </DetailsInfoItem>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment