diff --git a/pyproject.toml b/pyproject.toml index 8dc7148..afcbe08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "poktroll-clients" -version = "0.2.0a0.dev0" +version = "0.2.0a0.dev1" description = "Python bindings for the Pocket Network protocol client library (libpoktroll-clients)" readme = "README.md" requires-python = ">=3.8" diff --git a/src/poktroll_clients/__init__.py b/src/poktroll_clients/__init__.py index bc7f70c..d5efcd3 100644 --- a/src/poktroll_clients/__init__.py +++ b/src/poktroll_clients/__init__.py @@ -5,6 +5,7 @@ from .depinject import Supply, SupplyMany from .events_query_client import EventsQueryClient from .block_client import BlockClient, BlockQueryClient +from .query_client import QueryClient from .tx_context import TxContext from .tx_client import TxClient @@ -13,6 +14,7 @@ 'BlockQueryClient', 'TxContext', 'TxClient', + 'QueryClient', 'EventsQueryClient', 'Supply', 'SupplyMany',