diff --git a/core/src/main/java/bisq/core/locale/CurrencyUtil.java b/core/src/main/java/bisq/core/locale/CurrencyUtil.java index 598d4ee443..5f8016deea 100644 --- a/core/src/main/java/bisq/core/locale/CurrencyUtil.java +++ b/core/src/main/java/bisq/core/locale/CurrencyUtil.java @@ -267,32 +267,39 @@ public class CurrencyUtil { return currencies; } - //https://www.revolut.com/pa/faq#can-i-hold-multiple-currencies + // https://www.revolut.com/help/getting-started/exchanging-currencies/what-fiat-currencies-are-supported-for-holding-and-exchange public static List getAllRevolutCurrencies() { ArrayList currencies = new ArrayList<>(Arrays.asList( - new FiatCurrency("USD"), - new FiatCurrency("GBP"), - new FiatCurrency("EUR"), - new FiatCurrency("PLN"), - new FiatCurrency("CHF"), - new FiatCurrency("DKK"), - new FiatCurrency("NOK"), - new FiatCurrency("SEK"), - new FiatCurrency("RON"), - new FiatCurrency("SGD"), - new FiatCurrency("HKD"), - new FiatCurrency("AUD"), - new FiatCurrency("NZD"), - new FiatCurrency("TRY"), - new FiatCurrency("ILS"), new FiatCurrency("AED"), + new FiatCurrency("AUD"), + new FiatCurrency("BGN"), new FiatCurrency("CAD"), + new FiatCurrency("CHF"), + new FiatCurrency("CZK"), + new FiatCurrency("DKK"), + new FiatCurrency("EUR"), + new FiatCurrency("GBP"), + new FiatCurrency("HKD"), + new FiatCurrency("HRK"), new FiatCurrency("HUF"), - new FiatCurrency("INR"), + new FiatCurrency("ILS"), + new FiatCurrency("ISK"), new FiatCurrency("JPY"), new FiatCurrency("MAD"), + new FiatCurrency("MXN"), + new FiatCurrency("NOK"), + new FiatCurrency("NZD"), + new FiatCurrency("PLN"), new FiatCurrency("QAR"), + new FiatCurrency("RON"), + new FiatCurrency("RSD"), + new FiatCurrency("RUB"), + new FiatCurrency("SAR"), + new FiatCurrency("SEK"), + new FiatCurrency("SGD"), new FiatCurrency("THB"), + new FiatCurrency("TRY"), + new FiatCurrency("USD"), new FiatCurrency("ZAR") )); diff --git a/desktop/src/main/java/bisq/desktop/components/paymentmethods/RevolutForm.java b/desktop/src/main/java/bisq/desktop/components/paymentmethods/RevolutForm.java index 6a4ca7279f..a89803c835 100644 --- a/desktop/src/main/java/bisq/desktop/components/paymentmethods/RevolutForm.java +++ b/desktop/src/main/java/bisq/desktop/components/paymentmethods/RevolutForm.java @@ -147,8 +147,8 @@ public class RevolutForm extends PaymentMethodForm { private void addCurrenciesGrid(boolean isEditable) { FlowPane flowPane = addTopLabelFlowPane(gridPane, ++gridRow, - Res.get("payment.supportedCurrencies"), Layout.FLOATING_LABEL_DISTANCE, - Layout.FLOATING_LABEL_DISTANCE).second; + Res.get("payment.supportedCurrencies"), Layout.FLOATING_LABEL_DISTANCE * 3, + Layout.FLOATING_LABEL_DISTANCE * 3).second; if (isEditable) flowPane.setId("flow-pane-checkboxes-bg");