diff options
author | F. Eugene Aumson <feuGeneA@users.noreply.github.com> | 2018-12-13 09:47:25 +0800 |
---|---|---|
committer | F. Eugene Aumson <feuGeneA@users.noreply.github.com> | 2018-12-15 05:53:15 +0800 |
commit | b6c8126589a94c2986c591ad7741cd3787a96e58 (patch) | |
tree | a4befde8c6ae5b364bd91ffe176ff0c6b1fd66ff /python-packages/order_utils/stubs | |
parent | f9a6c45a038206c863d745fdf9c98f463f03e269 (diff) | |
download | dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.gz dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.bz2 dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.lz dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.xz dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.tar.zst dexon-sol-tools-b6c8126589a94c2986c591ad7741cd3787a96e58.zip |
Move zero_ex.json_schemas to its own package
Diffstat (limited to 'python-packages/order_utils/stubs')
3 files changed, 26 insertions, 11 deletions
diff --git a/python-packages/order_utils/stubs/jsonschema/__init__.pyi b/python-packages/order_utils/stubs/jsonschema/__init__.pyi deleted file mode 100644 index 442e2f65e..000000000 --- a/python-packages/order_utils/stubs/jsonschema/__init__.pyi +++ /dev/null @@ -1,11 +0,0 @@ -from typing import Any, Dict, Tuple - - -class RefResolver: - def resolve(self, url: str) -> Tuple[str, Dict]: - ... - - -class ValidationError(Exception): pass - -def validate(instance: Any, schema: Dict, cls=None, *args, **kwargs) -> None: pass diff --git a/python-packages/order_utils/stubs/jsonschema/exceptions.pyi b/python-packages/order_utils/stubs/jsonschema/exceptions.pyi deleted file mode 100644 index e69de29bb..000000000 --- a/python-packages/order_utils/stubs/jsonschema/exceptions.pyi +++ /dev/null diff --git a/python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi b/python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi new file mode 100644 index 000000000..fcecc7434 --- /dev/null +++ b/python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi @@ -0,0 +1,26 @@ +from typing import Dict, Optional, Union + +from web3.utils import datatypes + + +class Web3: + class HTTPProvider: ... + + def __init__(self, provider: HTTPProvider) -> None: ... + + @staticmethod + def sha3( + primitive: Optional[Union[bytes, int, None]] = None, + text: Optional[str] = None, + hexstr: Optional[str] = None + ) -> bytes: ... + + class net: + version: str + ... + + class eth: + @staticmethod + def contract(address: str, abi: Dict) -> datatypes.Contract: ... + ... + ... |