diff --git a/README.md b/README.md index d66055c1..c300be48 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ ## Injective Python SDK -Note: Apple `M1` processor is not supported - ### Dependences **Ubuntu** @@ -24,18 +22,18 @@ import injective.exchange_api ### Usage Requires Python 3.7+ -[examples](https://github.com/InjectiveLabs/sdk-python/tree/master/examples): https://github.com/InjectiveLabs/sdk-python/tree/master/examples +[Examples](https://github.com/InjectiveLabs/sdk-python/tree/master/examples) ```bash $ pipenv shell $ pipenv install # connecting to Injective Exchange API # and listening for new orders from one specific spot market -$ python examples/exchange_api_example/examples/spot_exchange_rpc/8_StreamOrdersRequest.py +$ python examples/exchange_api_examples/spot_exchange_rpc/8_StreamOrdersRequest.py # sending a msg with bank transfer # signs and posts a Tx to the Injective Chain -$ python examples/chain_client_example/examples/example.py +$ python examples/chain_client_examples/1_CosmosBankMsgSend.py ``` Upgrade `pip` to the latest version, if you see these warnings: ``` diff --git a/setup.py b/setup.py index 9392e0b1..3e1a9c3e 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ EMAIL = "max@injectiveprotocol.com" AUTHOR = "Injective Labs" REQUIRES_PYTHON = ">=3.7.0" -VERSION = "0.3.2" +VERSION = "0.4.1" REQUIRED = [ "grpcio", @@ -28,6 +28,7 @@ "mnemonic", "hdwallets", "pysha3", + "protobuf", ] # The rest you shouldn't have to touch too much :) @@ -114,7 +115,7 @@ def run(self): "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ],