Merge pull request #6197 from mempool/nymkappa/remove-bitfinex-jpy

This commit is contained in:
wiz 2026-01-06 02:14:55 -10:00 committed by GitHub
commit be5670d47f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ import priceUpdater, { PriceFeed, PriceHistory } from '../price-updater';
class BitfinexApi implements PriceFeed {
public name: string = 'Bitfinex';
public currencies: string[] = ['USD', 'EUR', 'GPB', 'JPY'];
public currencies: string[] = ['USD', 'EUR', 'GBP'];
public url: string = 'https://api.bitfinex.com/v1/pubticker/BTC';
public urlHist: string = 'https://api-pub.bitfinex.com/v2/candles/trade:{GRANULARITY}:tBTC{CURRENCY}/hist';