diff --git a/evm_trace/display.py b/evm_trace/display.py index 7d3f996..44441f7 100644 --- a/evm_trace/display.py +++ b/evm_trace/display.py @@ -1,8 +1,9 @@ from collections.abc import Iterator from typing import TYPE_CHECKING, Optional, Union, cast +from cchecksum import to_checksum_address from eth_typing import ChecksumAddress -from eth_utils import to_checksum_address, to_hex +from eth_utils import to_hex from evm_trace.enums import CallType diff --git a/setup.py b/setup.py index 0709716..93346ad 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ "eth-utils>=2.3.1,<6", "msgspec>=0.8; python_version < '3.13'", "eth-pydantic-types>=0.1.3,<0.2", + "cchecksum>=0.0.3,<1", ], python_requires=">=3.9,<4", extras_require=extras_require,