move icon indicating copy to clipboard operation
move copied to clipboard

Results 238 move issues
Sort by recently updated
recently updated
newest added

# πŸš€ Feature Request ## Motivation I have mentioned the idea of TypeTable in the documentation of Table, and I describe it in more detail here. According to the implementation...

enhancement

Right now, various places in the package system and CLI (e.g. running builds, tests, or the prover) have no way to access any options which might have been defined in...

enhancement

As highlighted in #127, `abort_code` annotation in unit tests is not super expressive. We should support - Location (The module that gave the abort) - More general major + sub...

enhancement

## Motivation Now, all default outputs should be `0xCAPS`. Additionally, there is now a `from_hex_fuzzy()` which handles both `0x` and non-`0x` inputs for the time being. This is built as...

- [x] #106 - [ ] Unify `move --ethereum package build` and `move package test --evm` - [ ] Update the documentation for `move-cli` - [x] Remove build dir before...

enhancement

``` struct Foo { a: u64, } #[test] fun ice() { use Std::Vector; let v = Vector::empty(); Vector::push_back(&mut v, Foo {a: 10}); let b = Vector::borrow(&v, 0); while (true) {...

bug

Package system should expose `build` and `build_and_report` variants that return errors or report errors to stdout respectively. Currently it always reports to stdout and exits

bug

This fixes a small bug I found while looking looking for a "[trojan source](https://trojansource.codes/trojan-source.pdf)" using bidirectional override unicode codepoints. Fortunately, Move is not vulnerable because the it's parser only allows...

Before publish a module, vm checks if it’s abi compatible with existing one. (https://github.com/diem/move/blob/180a066094704b2411d3970758b2a05d2e406213/language/move-vm/runtime/src/runtime.rs#L115) vm has a loader that caches the deserialized module if it’s loaded before otherwise it loads...

bug

# πŸš€ Feature Request ## Motivation **Is your feature request related to a problem? Please describe.** To provide unit test or e2e tests for move-resource-viewer since there is not sufficient...

enhancement