--- tags: epf, ethereum --- # EPF Dev Update #7 A lot of focus has been on project execution this week, and we've made some really good progress! This is the list of things I've worked on this week, and more details in below sections: - Add Lighthouse to `eip-4844-interop` repo - Beacon API & Builder Spec updates for EIP-4844 - Implement builder updates in Lighthouse - Some other small improvements on related projects ## Add Lighthouse to `eip4844-interop` Pull Requests: - [eip4844-interop#77](https://github.com/Inphi/eip4844-interop/pull/77) My [preivous attempt](https://github.com/Inphi/eip4844-interop/pull/47) on this didn't get merged as there were too many moving parts, and Lighthouse wasn't ready for interop back then, but the work wasn't wasted! [**@realbigsean**](https://github.com/realbigsean) continued the testing on [his branch here](https://github.com/sigp/lighthouse/pull/3783), and I've built on his work and created a new [Pull Request](https://github.com/Inphi/eip4844-interop/pull/77). There's been a lot of good progress in the last few weeks by the Lighthouse team on EIP-4844 implementation, and Lighthouse is now close to ready for Devnet V3. [**@realbigsean**](https://github.com/realbigsean) has written some instructions to test Lighthouse/Geth pair in this [Pull Request here](https://github.com/sigp/lighthouse/pull/3783). I haven't able to get it fully working on the interop repo though - looks like it may be related to how the genesis was generated in my script, there are investigations documented on the [PR](https://github.com/Inphi/eip4844-interop/pull/77), and I'll continue to work on this. ## Beacon API & Builder Spec updates for EIP-4844 Pull Requests: - [beacon-APIs#271](https://github.com/ethereum/beacon-APIs/pull/271) - [builder-specs#58](https://github.com/ethereum/builder-specs/pull/58) We had the initial draft PRs created last week. Then [**@0xGabi**](https://github.com/0xGabi) presented our work in the last [EIP-4844 Implementers Call #8](https://github.com/ethereum/pm/issues/686) to raise awareness and get feedback from implementers. He's also created a nice summary on [this HackMD page](https://hackmd.io/@0xGabi/BkSG-jHuo). We've reived some good and constructive feedback from [**@ralexstokes**](https://github.com/ralexstokes) since then, and I think we're now close to getting these merged! The PRs are getting quite big now as they includes both Capella and EIP-4844 changes, so I've also created a separate issue to add a blob download endpoint to Beacon API here: https://github.com/ethereum/beacon-APIs/issues/282 Smaller pull requests next time! ## Implement builder updates in Lighthouse Pull Requests: - [lighthouse#3808](https://github.com/sigp/lighthouse/pull/3808) (draft) With the [Builder Spec updates](https://github.com/ethereum/builder-specs/pull/58) getting close to ready, I've started the implementation in Lighthouse, and have created a draft PR (link above) with [**@realbigsean**](https://github.com/realbigsean)'s help. I initially thought it was going to be a small change, but realised there's a lot more than just adding a new field :sweat_smile: I had to learn about the different data structures and how to define them using [SuperStruct](https://sigp.github.io/superstruct/), as well as how to serialize / derialize them with the Rust [Serde](https://serde.rs) framework, and then of course - there's still a lot to learn about memory management in Rust. The following resources have been useful: - [SuperStruct Guide](https://sigp.github.io/superstruct/) - [Serde](https://serde.rs) ## Some other small improvements on related projects - [lighthouse#3792](https://github.com/sigp/lighthouse/pull/3792): Fixed CI tests - local testnet for MacOS - [realbigsean/lighthouse#32](https://github.com/realbigsean/lighthouse/pull/25): Fixed compilation errors in `beacon-node/http_api` tests - [eip4844-interop#75](https://github.com/Inphi/eip4844-interop/pull/75): CI imporvement - Add docker layer caching and improved build time by approximately 5 minutes.