aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/customize-gas/customize-gas.util.js
blob: 6ba4a7705a479623155397fad41c1794dd50b410 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import ethUtil from 'ethereumjs-util'
import { conversionUtil } from '../../../conversion-util'

export function getDecimalGasLimit (hexGasLimit) {
  return conversionUtil(hexGasLimit, {
    fromNumericBase: 'hex',
    toNumericBase: 'dec',
  })
}

export function getDecimalGasPrice (hexGasPrice) {
  return conversionUtil(hexGasPrice, {
    fromNumericBase: 'hex',
    toNumericBase: 'dec',
    fromDenomination: 'WEI',
    toDenomination: 'GWEI',
  })
}

export function getPrefixedHexGasLimit (gasLimit) {
  return ethUtil.addHexPrefix(conversionUtil(gasLimit, {
    fromNumericBase: 'dec',
    toNumericBase: 'hex',
  }))
}

export function getPrefixedHexGasPrice (gasPrice) {
  return ethUtil.addHexPrefix(conversionUtil(gasPrice, {
    fromNumericBase: 'dec',
    toNumericBase: 'hex',
    fromDenomination: 'GWEI',
    toDenomination: 'WEI',
  }))
}