binance-exchange / binance-java-api

binance-java-api is a lightweight Java library for the Binance API, supporting synchronous and asynchronous requests, as well as event streaming using WebSockets.
MIT License
831 stars 628 forks source link

Update the list of FIAT currencies #336

Open icemagno opened 3 years ago

icemagno commented 3 years ago

Please update the line 16 in Utils.java to as follow:

    /**
     * List of fiat currencies.
     */
    public static final List<String> FIAT_CURRENCY = Collections.unmodifiableList(Arrays.asList( 
            "USDT", 
            "BUSD", 
            "AUD", 
            "BRL", 
            "EUR", 
            "GBP", 
            "RUB", 
            "TRY", 
            "TUSD", 
            "USDC",
            "PAX",
            "BIDR",
            "DAI",
            "IDRT",
            "ZAR",
            "NGN",
            "UAH",
            "VAI",
            "BVN")
    );