Skip to content

Commit

Permalink
unify rpl rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelsc committed Nov 3, 2023
1 parent a683915 commit 125276d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/utils/EthereumUnits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 125276d

Please sign in to comment.