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