sui
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
We should be able to filter the fullnode map by how recently a fullnode was seen. This should involve keeping track of a timestamp in our DB to collect how...
At each epoch boundary, after gas rewards have been distributed and storage fund processed, the total amount of SUI token in circulation should always be a fixed constant. We should...
Currently when we generate new fragment we send it to consensus and do not have any persistent retry mechanism. After we generate fragment for each authority, we simply assume that...
This is to support key derivation in Sui wallet - https://github.com/MystenLabs/sui/pull/2900/files This PR seemed to be reverted, need to land this. Also need to support for Secp256k1 key derivation.
There are a few recurring requests for allowing the following types as entrypoint arguments that I think we should consider granting: - `object::ID` - `ASCII::String` - `string::String` (i.e., UTF8 strings)...
authority_server spawns tasks on each incoming request for transaction or certificate, this PR allows to monitor number of such pending tasks.
- pending PR#851 merge & proper nw pointer update contains changes - Update public narwhal network interface
We traced the root cause of the devnet stoppage (two node failures) to the fact that `consensus_db` filled all disk space: ``` root@sui-validator-0:/build# du -h /data/sui_config/consensus_db/89cafd721eeb1b13483d5fb0968500e78103e8146b45edb30d93781d946d0aeb/ 9.8G /data/sui_config/consensus_db/89cafd721eeb1b13483d5fb0968500e78103e8146b45edb30d93781d946d0aeb/ ``` It...
Part of the initiative to move towards more modular storage, and also important for scalability and maintainability. The object storage covers existing objects, parent_sync, owners tables at the very least,...