aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/order_utils/stubs/web3/__init__.pyi
blob: c6f357009994534c23607b273c825505dba44a3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from typing import Optional, Union

class Web3:
    @staticmethod
    def sha3(
        primitive: Optional[Union[bytes, int, None]] = None,
        text: Optional[str] = None,
        hexstr: Optional[str] = None
    ) -> bytes: ...
    ...