From 2e247238e466516cefa58cf028653a569c6da14c Mon Sep 17 00:00:00 2001 From: "Frank V. Castellucci" Date: Tue, 11 Feb 2025 03:40:44 -0500 Subject: [PATCH] Release 0.78.0 --- .gitignore | 3 +-- CHANGELOG.md | 4 +++- README.md | 6 +++--- bin/gas.sh | 11 +++++++++++ pgql_s_example.py | 1 - 5 files changed, 18 insertions(+), 7 deletions(-) create mode 100755 bin/gas.sh diff --git a/.gitignore b/.gitignore index 49b635f2..8af6b81e 100644 --- a/.gitignore +++ b/.gitignore @@ -59,5 +59,4 @@ doc/source/pysui.rst doc/source/pysui.sui.rst # Misc cruft -*.txt -gas.sh \ No newline at end of file +*.txt \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f6f82c1..28786311 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.78.0] - Unpublished +## [0.78.0] - 2025-02-11 ### Added @@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Bumpted to pysui-fastcrypto 0.6.0 to support public key signature verification + ### Removed - `sign_message` on SuiKeyPair deprecated since "0.71.0" diff --git a/README.md b/README.md index b41450b4..3debbb4d 100644 --- a/README.md +++ b/README.md @@ -17,16 +17,16 @@ Python Client SDK for Sui blockchain **Release-0.78.0** -- Supports _SUI 1.42.x JSON RPC API_, _SUI 1.41.x GRAPHQL_ +- Supports _SUI 1.42.x JSON RPC API_, _SUI 1.42.x GRAPHQL_ - JSON RPC API backwards compatable to _Sui 1.34.x_ See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md) ## PyPi current -**Release-0.77.0 - Released 2025-02-02** +**Release-0.78.0 - Released 2025-02-11** -- Supports _SUI 1.41.x JSON RPC API_, _SUI 1.41.x GRAPHQL_ +- Supports _SUI 1.41.x JSON RPC API_, _SUI 1.42.x GRAPHQL_ - JSON RPC API backwards compatable to _Sui 1.34.x_ - [Latest PyPi Version](https://pypi.org/project/pysui/) diff --git a/bin/gas.sh b/bin/gas.sh new file mode 100755 index 00000000..11e75f83 --- /dev/null +++ b/bin/gas.sh @@ -0,0 +1,11 @@ +#! /bin/bash + +# Copyright Frank V. Castellucci +# SPDX-License-Identifier: Apache-2.0 + +# Refresh gas on address + +for i in {1..10} +do + sui client faucet --address $1 +done diff --git a/pgql_s_example.py b/pgql_s_example.py index f7d7a0fe..67234910 100644 --- a/pgql_s_example.py +++ b/pgql_s_example.py @@ -334,7 +334,6 @@ def do_staked_sui(client: SyncGqlClient): def do_latest_cp(client: SyncGqlClient): """.""" qnode = qn.GetLatestCheckpointSequence() - # print(qnode.query_as_string()) handle_result(client.execute_query_node(with_node=qnode))