Reorder fields
This commit is contained in:
parent
9484ed59e2
commit
eaa018e207
@ -150,12 +150,6 @@ const Details: React.FC<DetailsProps> = ({
|
|||||||
)}
|
)}
|
||||||
{txData.type === 2 && (
|
{txData.type === 2 && (
|
||||||
<>
|
<>
|
||||||
<InfoRow title="Max Fee Per Gas">
|
|
||||||
<span>
|
|
||||||
<FormattedBalance value={txData.maxFeePerGas!} /> Ether (
|
|
||||||
<FormattedBalance value={txData.maxFeePerGas!} decimals={9} /> Gwei)
|
|
||||||
</span>
|
|
||||||
</InfoRow>
|
|
||||||
<InfoRow title="Max Priority Fee Per Gas">
|
<InfoRow title="Max Priority Fee Per Gas">
|
||||||
<span>
|
<span>
|
||||||
<FormattedBalance value={txData.maxPriorityFeePerGas!} /> Ether (
|
<FormattedBalance value={txData.maxPriorityFeePerGas!} /> Ether (
|
||||||
@ -166,6 +160,12 @@ const Details: React.FC<DetailsProps> = ({
|
|||||||
Gwei)
|
Gwei)
|
||||||
</span>
|
</span>
|
||||||
</InfoRow>
|
</InfoRow>
|
||||||
|
<InfoRow title="Max Fee Per Gas">
|
||||||
|
<span>
|
||||||
|
<FormattedBalance value={txData.maxFeePerGas!} /> Ether (
|
||||||
|
<FormattedBalance value={txData.maxFeePerGas!} decimals={9} /> Gwei)
|
||||||
|
</span>
|
||||||
|
</InfoRow>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<InfoRow title="Transaction Fee">
|
<InfoRow title="Transaction Fee">
|
||||||
|
Loading…
Reference in New Issue
Block a user