Ashok Menon
Ashok Menon
Currently, `bcs` accumulates registered types in a singleton, updated by static functions so it's only possible to have one interface for each type name. This proposal suggests adding the ability...
To complement the release of dynamic fields and an announcement to the community that child objects are going away. Some changes in approach compared to the previous docs: - I...
The error type returned by the move compiler keeps track of the reasons why the build failed, but within the Sui Adapter, we were losing that context when converting the...
Running `sui move build` can take a long time to run and currently produces no output on success. This can make it difficult to distinguish a long build that's making...
## Motivation When an object is wrapped (made a field of) another object over the course of a move transaction, it disappears from the perspective of external tools, which can...
`SequenceNumber::decrement` is used primarily to revert state updates (e.g. when an update crosses an epoch or configuration change and then needs to be rolled back). With the introduction of lamport...
Spotted while working on lamport timestamps. This function is only called in one place (`AuthorityAggregator::get_object_info_execute`) to check that a validator that object info is being read from isn't Byzantine, but...
If a validator is aware of an owned object but not aware that it was made shared, it was not able to correctly figure out its version as a shared...
After launching Dynamic Fields, the documentation in [Use Sui Move Library](https://docs.sui.io/build/move/sui-move-library) is now out-of-date (it mentions `transfer_to_object` etc which have now been replaced with the APIs documented [here](https://docs.sui.io/build/programming-with-objects/ch5-dynamic-fields)). We should...
There is currently no documentation for how to depend on an on-chain package, although we did supply [this answer](https://stackoverflow.com/questions/73958046/local-dependency-cannot-be-resolved) on Stack Overflow. We should find a home for it in...