Raphael Panic
Raphael Panic
Currently the old block explorer has vanished from the main branch mysteriously. In the future however, we want a modular and reusable block explorer for protokit. We can either: -...
Currently, we have 1:1 relationship between the BlockProof and the aggregated TransactionProof of that given block with respect to the proveBlock() circuit method. This has the drawback of having to...
Currently, all operations and computation we do is blocking the main thread (except for proving tasks). This includes heavy things like block and batch productions. We should spawn separate threads...
The only currently implemented FeeStrategy is ConstantFeeStrategy, that lets the user configure a fee that will always be used for settlement. However, this is rarely how real scenarios work. For...
Currently we don't order transactions explicitly, but users might want to do so, especially in regards to fees or other protocol modules. Best case would be if we could somehow...
A recent ecosystem project implemented Frost for the Pasta Curves and Mina Transactions https://github.com/Raspberry-Devs/mina-multi-sig/ This could be benefitial for the resiliency of sequencer operations by distributing the sequencer key over...
The current starter kit is very bulky and unflexible to use, customize and configure. So we should revamp the structure a bit to make it easier to understand and use....
Currently, query is a manually-crafted object inside the ClientAppchain. Lets make this a service that we resolve by class reference. This enables us to 1. have a cleaner separation of...