From 05dcdb5eaf30442dfdbb53d9ac2f6292e14cb808 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Thu, 5 Dec 2024 09:52:33 -0600 Subject: [PATCH] chore: fix lint and vers --- ape_alchemy/provider.py | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/ape_alchemy/provider.py b/ape_alchemy/provider.py index 94d9d81..9cdfef5 100644 --- a/ape_alchemy/provider.py +++ b/ape_alchemy/provider.py @@ -18,6 +18,7 @@ from web3.exceptions import ContractLogicError as Web3ContractLogicError from web3.exceptions import ExtraDataLengthError from web3.gas_strategies.rpc import rpc_gas_price_strategy + try: from web3.middleware import ExtraDataToPOAMiddleware # type: ignore except ImportError: diff --git a/setup.py b/setup.py index 3fde6b1..4cdbc25 100644 --- a/setup.py +++ b/setup.py @@ -80,6 +80,7 @@ "evm-trace>=0.2.3,<0.3", "web3>=7.6.0,<8", "requests>=2.32.3,<3", + "evmchains>=0.1.3,<0.2", # Dependent on networks (not imports) ], python_requires=">=3.9,<4", extras_require=extras_require,