4 lines
88 B
Python
4 lines
88 B
Python
from typing import Union
|
|
|
|
def to_checksum_address(value: Union[str, bytes]) -> str: ...
|