mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-11 17:57:49 +01:00
* Removes Chaincoin shitcoin which is so dead even its website is gone * Add ExchangeRateHost and FreeCurrencyRates as new rate providers * Add recommended rate providers for UGX and RSD * Fix BTX rate by switching to graviex * Fix BTC rate by switching to exmo * Fix LCAD rate script
40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Rating;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Services.Rates;
|
|
|
|
|
|
public class ExchangeRateHostRateProvider : IRateProvider
|
|
{
|
|
public RateSourceInfo RateSourceInfo => new("exchangeratehost", "Yadio", "https://api.exchangerate.host/latest?base=BTC");
|
|
private readonly HttpClient _httpClient;
|
|
public ExchangeRateHostRateProvider(HttpClient httpClient)
|
|
{
|
|
_httpClient = httpClient ?? new HttpClient();
|
|
}
|
|
|
|
public async Task<PairRate[]> GetRatesAsync(CancellationToken cancellationToken)
|
|
{
|
|
var response = await _httpClient.GetAsync(RateSourceInfo.Url, cancellationToken);
|
|
response.EnsureSuccessStatusCode();
|
|
var jobj = await response.Content.ReadAsAsync<JObject>(cancellationToken);
|
|
if(jobj["success"].Value<bool>() is not true || !jobj["base"].Value<string>().Equals("BTC", StringComparison.InvariantCulture))
|
|
throw new Exception("exchangerate.host returned a non success response or the base currency was not the requested one (BTC)");
|
|
var results = (JObject) jobj["rates"] ;
|
|
//key value is currency code to rate value
|
|
var list = new List<PairRate>();
|
|
foreach (var item in results)
|
|
{
|
|
string name = item.Key;
|
|
var value = item.Value.Value<decimal>();
|
|
list.Add(new PairRate(new CurrencyPair("BTC", name), new BidAsk(value)));
|
|
}
|
|
|
|
return list.ToArray();
|
|
}
|
|
}
|