From 125276d66d0f569abd9798a52a9e24740c8101e1 Mon Sep 17 00:00:00 2001 From: Manuel <5877862+manuelsc@users.noreply.github.com> Date: Fri, 3 Nov 2023 10:31:18 +0100 Subject: [PATCH] unify rpl rounding --- src/app/utils/EthereumUnits.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/utils/EthereumUnits.ts b/src/app/utils/EthereumUnits.ts index bc0092ac..110aa5d2 100644 --- a/src/app/utils/EthereumUnits.ts +++ b/src/app/utils/EthereumUnits.ts @@ -34,7 +34,7 @@ export default class Unit { public static ETHER = new Unit('ETH', new BigNumber('1'), 5, 'XXX-ETH', 'Ether') public static KETHER = new Unit('KETH', new BigNumber('0.001')) - public static RPL = new Unit('RPL', new BigNumber('1'), 1) // RPL TO ETH + public static RPL = new Unit('RPL', new BigNumber('1'), 2) // RPL TO ETH public static RPL_NAKED = new Unit('RPL', new BigNumber('1'), 2) public static NO_CURRENCY = new Unit('', new BigNumber('1'), 0) public static RETH = new Unit('RETH', new BigNumber('1'), 2)