Blazej Kolad
Blazej Kolad
### Implementation ideas The `blob_get_all` RPC method yields a `Result`. When no blobs are published under a specified namespace and height, I am getting the forllowing error: `error is: ErrorObject...
Web3 runs fine with the following tokio settings: `#[tokio::main]` but it blocks indefinitely with `#[tokio::main(max_threads = 4)]` or `#[tokio::main(core_threads = 40, max_threads = 40)]`
Relevant comment here: https://github.com/Sovereign-Labs/sovereign/pull/128#discussion_r1135650909
## Description Here is the comprehensive list of Ethereum JSON-RPC endpoints: [link to the documentation](https://ethereum.org/en/developers/docs/apis/json-rpc/). While it would be ideal to support all of them, we need to prioritize the...
**Is your feature request related to a problem? Please describe.** Our `Evm` module does not support account destruction. **Describe the solution you'd like** Determine what is the desired behaviour (should...
## Summary Recently, we added new functionality to the roll-up integration tests. This functionality allows us to verify the execution in the zkp context. Within our `EVM`, there's a specific...
# Description ## Linked Issues - Fixes # (issue, if applicable) - Related to # (issue) ## Testing Describe how these changes were tested. If you've added new features, have...
The `StateTransitionRunner` currently delegates the responsibility of proving the correctness of the state transition to the `ProverService` upon receiving each DA block. However, the depicted process needs to be revised...
## Summary `WorkingSet` should be tested in the crate where it is defined.
## Summary Currently, the `RollupTemplate` takes `Runtime` as an associated type. This means we need a separate implementation for each `Runtime`. It would be nice if we could define `MockRollup`,...