Skip to content

Commit 5f8c4bf

Browse files
committed
chore: bump 2.9.5
1 parent 9a3567a commit 5f8c4bf

7 files changed

Lines changed: 10 additions & 6 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.4"
1+
__version__ = "2.9.5"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.4"
1+
__version__ = "2.9.5"

pragma-sdk/pragma_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.4"
1+
__version__ = "2.9.5"

pragma-sdk/pragma_sdk/common/fetchers/fetchers/defillama.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ async def fetch_pair(
2626
return PublisherFetchError(
2727
f"Unknown price pair, do not know how to query Coingecko for {pair.base_currency.id}"
2828
)
29+
# Ignore some base currencies
30+
if pair.base_currency.id in ("UNIBTC", "LBTC"):
31+
return PublisherFetchError(f"No data found for {pair} from Defillama")
32+
2933
if pair.quote_currency.id not in ("USD", "USDPLUS"):
3034
return await self.operate_usd_hop(pair, session)
3135

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.4"
1+
__version__ = "2.9.5"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.4"
1+
__version__ = "2.9.5"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.4"
1+
__version__ = "2.9.5"

0 commit comments

Comments
 (0)