diff --git a/CHANGELOG.md b/CHANGELOG.md index 863fd88b..58ca1292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.62.0] - 2024-06-08 +## [0.62.1] - 2024-06-08 ### Added diff --git a/README.md b/README.md index 8c946786..5c8fbef0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Python Client SDK for Sui blockchain ## pysui SDK current (github) -**Release-0.62.0** +**Release-0.62.1** - Supports _SUI 1.27.x RPC API_ - Backwards compatable to _Sui 1.20.x RPC API_ @@ -26,7 +26,7 @@ See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md) ## PyPi current -**Release-0.62.0 - Released 2024-06-08** +**Release-0.62.1 - Released 2024-06-08** - Supports _SUI 1.27.x RPC API_ - Backwards compatable to _Sui 1.20.x RPC API_ diff --git a/pysui/version.py b/pysui/version.py index 5bd34ee2..8094cc97 100644 --- a/pysui/version.py +++ b/pysui/version.py @@ -12,5 +12,5 @@ # -*- coding: utf-8 -*- # Read in command line and posting to PyPi -__version__ = "0.62.0" +__version__ = "0.62.1" """Pysui Version.""" diff --git a/samples/cmdsg.py b/samples/cmdsg.py index c2e09a7b..9ba4c632 100644 --- a/samples/cmdsg.py +++ b/samples/cmdsg.py @@ -58,8 +58,8 @@ def transaction_execute( ) # Execute the transaction handle_result( - txb.client.execute_query( - with_query_node=qn.ExecuteTransaction( + txb.client.execute_query_node( + with_node=qn.ExecuteTransaction( tx_bytestr=tx_b64, sig_array=[x.value for x in sig_array] ) )