chainlib/chainlib/eth/address.py

14 lines
262 B
Python
Raw Normal View History

2021-02-08 10:39:42 +01:00
# third-party imports
import sha3
from hexathon import (
strip_0x,
uniform,
)
2021-04-04 14:55:27 +02:00
from crypto_dev_signer.encoding import (
is_address,
is_checksum_address,
to_checksum_address,
)
2021-02-08 10:39:42 +01:00
2021-04-04 14:55:27 +02:00
to_checksum = to_checksum_address