diff options
Merge branch 'develop' into clearNotices
Diffstat (limited to 'ui/app/helpers/constants/common.js')
-rw-r--r-- | ui/app/helpers/constants/common.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/app/helpers/constants/common.js b/ui/app/helpers/constants/common.js new file mode 100644 index 000000000..58fae5e5f --- /dev/null +++ b/ui/app/helpers/constants/common.js @@ -0,0 +1,13 @@ +export const ETH = 'ETH' +export const GWEI = 'GWEI' +export const WEI = 'WEI' + +export const PRIMARY = 'PRIMARY' +export const SECONDARY = 'SECONDARY' + +export const NETWORK_TYPES = { + KOVAN: 'kovan', + MAINNET: 'mainnet', + RINKEBY: 'rinkeby', + ROPSTEN: 'ropsten', +} |