HIghlights
- Sui Move now limits the number of object IDs you can create
object::new()
, deleteobject::delete(*)
, or transfertransfer::transfer(*)
to2048
per transaction that involves Move calls. For more information, see: #8170 - #8189 changes the layout of
CommitteeInfo
,CheckpointSummary
, andSuiSystemState
. This change requires all Full nodes to upgrade to this release, v0.26.0. App builders must also rebuild using the most recent version of the Sui SDK. - #7991 adds a new mutable field to SharedObjectRefs. The mutable flag controls whether transaction acquires shared lock for write or for read. Transactions that take immutable SharedObjectRefs can execute in parallel resulting in a lower contention on the shared object and lower finality time for transaction.
Full Changelog: https://github.com/MystenLabs/sui/commits/devnet-0.26.0