From 670df61b270bd53977b109ad8fb855e955c80c89 Mon Sep 17 00:00:00 2001 From: "Frank V. Castellucci" Date: Fri, 28 Jun 2024 04:01:24 -0400 Subject: [PATCH] Release 0.64.0 --- README.md | 2 +- pgql_s_example.py | 2 +- pysui/sui/sui_txn/transaction.py | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4a0fd4..fb450db 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ See [CHANGELOG](https://github.com/FrankC01/pysui/blob/main/CHANGELOG.md) ## PyPi current -**Release-0.63.0 - Released 2024-06-18** +**Release-0.63.0 - Released 2024-06-28** - Supports _SUI 1.28.x RPC API_ - Backwards compatable to _Sui 1.21.x RPC API_ diff --git a/pgql_s_example.py b/pgql_s_example.py index c1c9e57..3a70664 100644 --- a/pgql_s_example.py +++ b/pgql_s_example.py @@ -730,7 +730,7 @@ def do_unstake(client: SuiGQLClient): ## QueryNodes (fetch) # do_coin_meta(client_init) # do_coins_for_type(client_init) - # do_gas(client_init) + do_gas(client_init) # do_all_gas(client_init) # do_gas_ids(client_init) # do_sysstate(client_init) diff --git a/pysui/sui/sui_txn/transaction.py b/pysui/sui/sui_txn/transaction.py index 5b6d031..890ce14 100644 --- a/pysui/sui/sui_txn/transaction.py +++ b/pysui/sui/sui_txn/transaction.py @@ -528,6 +528,9 @@ def _serialize(self, include_sender_sponsor) -> bcs.SuiTransaction: version="0.35.0", reason="Option to omit sender/sponsor", ) + @deprecated( + version="0.64.0", reason="Use GraphQL serialize_to_wallet_standard function" + ) def serialize(self, include_sender_sponsor: Optional[bool] = True) -> bytes: """.""" tbuilder = self._serialize(include_sender_sponsor) @@ -538,6 +541,9 @@ def serialize(self, include_sender_sponsor: Optional[bool] = True) -> bytes: version="0.32.0", reason="DeSerialize transaction builder state", ) + @deprecated( + version="0.64.0", reason="Use GraphQL deserialize_to_transaction function" + ) def deserialize(self, state_ser: bytes): """.""" tx_state = bcs.SuiTransaction.deserialize(state_ser)