Skip to content

Commit

Permalink
Release 0.64.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankC01 committed Jun 28, 2024
1 parent fd232d0 commit 670df61
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down
2 changes: 1 addition & 1 deletion pgql_s_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions pysui/sui/sui_txn/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 670df61

Please sign in to comment.