From 14aaa4cc5ef29d706f773da62eeab1cb64a9e05a Mon Sep 17 00:00:00 2001 From: Bruno Sette Date: Sat, 19 Jan 2019 19:16:50 -0300 Subject: [PATCH] added Brazilian Real (BRL) as new fiatUnit --- models/fiatUnit.js | 1 + 1 file changed, 1 insertion(+) diff --git a/models/fiatUnit.js b/models/fiatUnit.js index 03c6c7e5c..3896b7131 100644 --- a/models/fiatUnit.js +++ b/models/fiatUnit.js @@ -1,6 +1,7 @@ export const FiatUnit = Object.freeze({ USD: { endPointKey: 'USD', symbol: '$', locale: 'en-US' }, AUD: { endPointKey: 'AUD', symbol: '$', locale: 'en-AU' }, + BRL: { endPointKey: 'BRL', symbol: 'R$', locale: 'pt-BR' }, CAD: { endPointKey: 'CAD', symbol: '$', locale: 'en-CA' }, CZK: { endPointKey: 'CZK', symbol: 'Kč', locale: 'cs-CZ' }, CNY: { endPointKey: 'CNY', symbol: '¥', locale: 'zh-CN' },