Skip to content

Commit

Permalink
Release 0.69.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankC01 committed Sep 21, 2024
1 parent a3a15d3 commit 9986f1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions pysui/sui/sui_pgql/pgql_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9986f1d

Please sign in to comment.