aztec-packages
aztec-packages copied to clipboard
Depends on https://github.com/AztecProtocol/aztec-packages/issues/8006 As a network engineer, I want to measure our P2P network so that we can ensure its stability and performance under various adverse conditions. ## QoS Metrics...
[Design](https://github.com/AztecProtocol/engineering-designs/pull/12) ```[tasklist] ### Tasks - [ ] https://github.com/AztecProtocol/aztec-packages/issues/7999 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8000 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8001 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8002 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8003 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8004 - [...
```[tasklist] ### Tasks - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8025 ```
The collateral that is deposited into the fee bridge needs to decide which instance it honours in case of an upgrade. For example, it is following along, an upgrade would...
Following Gerousia and Apella, the portal should figure out how to deal with message boxes and what it follows. They current code just follows the latest rollup, but that should...
The upgradability is based on the design outlined in [Gerousia & Apella](https://hackmd.io/1DSIr7ymRPWCGuNChvPZCw?view) ```[tasklist] ### Tasks - [ ] https://github.com/AztecProtocol/aztec-packages/issues/7937 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/7959 - [ ] https://github.com/AztecProtocol/aztec-packages/issues/8135 - [ ]...
It should be possible to alter the `SLOT_DURATION` to be a `>1` multiple of the underlying l1 slot duration without it bricking the absolute everything out of the testing setup.
The code quality of the sequencer client and sequencing contracts are not at part with what we expect. They are written with unnecessary abstraction and complexity. As the 🐢 will...
We currently allocate storage slots using the `Storage` trait, which reads: ```rust trait Storage where T: Serialize + Deserialize { fn get_storage_slot(self) -> Field { self.storage_slot } } ``` Note...