Skip to content

Commit

Permalink
Release 0.78.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankC01 committed Feb 11, 2025
1 parent 216f88f commit 2e24723
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,4 @@ doc/source/pysui.rst
doc/source/pysui.sui.rst

# Misc cruft
*.txt
gas.sh
*.txt
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
11 changes: 11 additions & 0 deletions bin/gas.sh
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion pgql_s_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))


Expand Down

0 comments on commit 2e24723

Please sign in to comment.