fix: correct decimal places in network params table (#416)

This commit is contained in:
Dexter Edwards 2022-05-20 11:13:35 +01:00 committed by GitHub
parent ef18ac8483
commit 29c3ed5180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ export const renderRow = ({
) : isNaN(Number(value)) ? (
value
) : BIG_NUMBER_PARAMS.includes(key) ? (
addDecimalsFormatNumber(Number(value), 4)
addDecimalsFormatNumber(Number(value), 18)
) : (
formatNumber(Number(value), 4)
)}