From 5e6a3e7c637307df14ed054f055bb696dc9b0338 Mon Sep 17 00:00:00 2001 From: Mikko Ohtamaa Date: Wed, 20 Sep 2023 13:45:37 +0200 Subject: [PATCH] Refactor/changelog --- CHANGELOG.md | 4 ++++ eth_defi/chain.py | 2 +- eth_defi/provider/{llamarpc.py => llamanodes.py} | 0 3 files changed, 5 insertions(+), 1 deletion(-) rename eth_defi/provider/{llamarpc.py => llamanodes.py} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index b43f205c..f6121a60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.22.11 + +- Add `eth_defi.provider.llamanodes` and work around issues with LlamaNodes.com + # 0.22.10 - Move Ankr specific functionality to its own `eth_defi.provider.ankr` module diff --git a/eth_defi/chain.py b/eth_defi/chain.py index 8ad8b4d5..78239812 100644 --- a/eth_defi/chain.py +++ b/eth_defi/chain.py @@ -19,7 +19,7 @@ from eth_defi.event_reader.conversion import convert_jsonrpc_value_to_int from eth_defi.middleware import http_retry_request_with_sleep_middleware -from eth_defi.provider.llamarpc import is_llama_bad_grapql_reply +from eth_defi.provider.llamanodes import is_llama_bad_grapql_reply from eth_defi.provider.named import NamedProvider #: List of chain ids that need to have proof-of-authority middleweare installed diff --git a/eth_defi/provider/llamarpc.py b/eth_defi/provider/llamanodes.py similarity index 100% rename from eth_defi/provider/llamarpc.py rename to eth_defi/provider/llamanodes.py