sui icon indicating copy to clipboard operation
sui copied to clipboard

Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language

Results 2445 sui issues
Sort by recently updated
recently updated
newest added

This [TODO](https://github.com/MystenLabs/sui/blob/4ff357324a9f4e7998fa1155d69d1544f98f2734/crates/sui-types/src/messages_checkpoint.rs#L634): Fragments could be sent from byzantine nodes. We need to verify that: 1. Every transaction certificate is valid 2. the certs includes all missing certs on either side

sui-node
good first issue

This PR is the first step towards implementing so called one-time-witness in the form of so called characteristic type. The idea is to guarantee that a given [witness type](http://examples.sui.io/patterns/witness.html) can...

Add workload spec in benchmark to support passing in different workload combinations. ``` cargo run --release --package sui-benchmark --bin stress -- --target-qps 1000 workload-spec --shared-counter 50 --transfer-object 50

Opening and using DBMaps require lots of boilerplate code. [Example](https://github.com/MystenLabs/sui/blob/main/crates/sui-core/src/authority/authority_store_tables.rs) Other features like dump also need to be hand written and maintained. See https://github.com/MystenLabs/mysten-infra/issues/104

Type: Enhancement
sui-node
better-engineering

For debugging, we want to be able to dump any db table We currently have this for validator and gateway dbs, but want it for others

Type: Enhancement
sui-node
better-engineering

This causes `start_admin_server` to never get to execute

`Transaction` includes user's sig as well, but because we also have a struct called `SignedTransaction` it always causes confusion when reviewing code on what _Signed_ means. Let's fix that. Note:...

crypto

### Problem Currently, authorities do not sign over user signatures. This means that certain types of transactions are not agreed upon. For example, a threshold multi-signature transaction would not be...

For the Sui Explorer, we're planning on adding tests that execute against localnet. To do this reliably, we need to be able to start the validator in an action with...