| 694 | public CompletableFuture<IsolatedBorrowRate> fetchIsolatedBorrowRateAsync(String symbol) { return fetchIsolatedBorrowRateAsync(symbol, (Map<String, Object>) null); } |
| 695 | |
| 696 | @SuppressWarnings("unchecked") |
| 697 | public Ticker fetchTicker(String symbol, Map<String, Object> params) { |
| 698 | Object res = Helpers.joinUnwrapped(super.fetchTicker(symbol, params)); |
| 699 | return new Ticker(res); |
| 700 | } |
| 701 | public Ticker fetchTicker(String symbol) { return fetchTicker(symbol, (Map<String, Object>) null); } |
| 702 | @SuppressWarnings("unchecked") |
| 703 | public CompletableFuture<Ticker> fetchTickerAsync(String symbol, Map<String, Object> params) { |