Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement cchecksum for ~2x faster checksumming #74

Merged
merged 2 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion evm_trace/display.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading