From 9986f1da90329ec3810706845d3120b3b8cb6296 Mon Sep 17 00:00:00 2001 From: "Frank V. Castellucci" Date: Sat, 21 Sep 2024 16:53:00 -0400 Subject: [PATCH] Release 0.69.0 --- README.md | 4 ++-- pysui/sui/sui_pgql/pgql_query.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8f88bc1..e8abb4e 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ Python Client SDK for Sui blockchain **Release-0.69.0** -- Supports _SUI 1.34.x RPC API_ and _SUI 1.34.x GRAPHQL_ -- Backwards compatable to _Sui 1.29.x RPC API_ and _2024.7.0 GraphQL schema_ +- Supports _SUI 1.34.x RPC API_, _SUI 1.34.x GRAPHQL (devnet)_ +- Backwards compatable to _Sui 1.29.x RPC API_ See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md) diff --git a/pysui/sui/sui_pgql/pgql_query.py b/pysui/sui/sui_pgql/pgql_query.py index 9d68847..e9b6e74 100644 --- a/pysui/sui/sui_pgql/pgql_query.py +++ b/pysui/sui/sui_pgql/pgql_query.py @@ -575,11 +575,11 @@ def __init__( """QueryNode initializer to query chain events emitted by modules. :param event_filter: Filter key/values aligned to Sui GraphQL schema's EventFilter - :type event_filter: str + :type event_filter: dict :param next_page: pgql_type.PagingCursor to advance query, defaults to None :type next_page: pgql_type.PagingCursor """ - self.event_filter = event_filter or {} + self.event_filter = event_filter self.next_page = next_page def as_document_node(self, schema: DSLSchema) -> DocumentNode: