jolestar
jolestar
Cargo adds a `--exact` flag to test for this. ``` cargo test test_fn_name -- --exact ``` Maybe add a new flag also an option? like: ``` move package test --filter...
@LemonHX Do you know the author?
I was thinking about this too. I think we can use the blockchain as the package repo and also put the package metadata on-chain. * All move package has an...
> * All move package has an address and can be published to a chain. > => Is there a way to reliably scan/get this address from the Move.toml or...
> I think connecting Movey package data to Move code published on various chains is an intriguing item for future work. But I do not think we should use the...
How to define the tier is a challenge. Option 1: Like Rust, a project is a workspace, which corresponds to an address in Move, and there are many crates in...
We encountered this bug in the starcoin project, when upgrading the module, there is a cache incoherence bug, we provide a method to clear all the loader's code cache. ```...
I add this feature to plan, and will be released in April. it would be better if you could help to this feature. @deepakprabhakara
> Is the idea here that external modules can still see private structs (e.g., include `StructHandle`'s that refer to private structs), but not perform sensitive operations (pack, unpack, borrow_field, ...)...
> The strongest motivation I can see for private structs (or a feature like it) is the ability to use `private` as a type constraint (similar to `phantom`). This would...