looking at different projects that interest me, and making small contributions to get familiar with them.
ethereum fork monitor
a simple webapp that monitors multiple eth nodes and reports whether any nodes have forked, with information about last shared state.
we currently have two different apps for the consensus client and the execution client, and one of the suggested projects involves building a common fork monitoring utility, since we now need to run both clients for a complete node setup.
i started building this, over at github.com/anukul/xmon
prysm
an ethereum consensus client written in go.
the prysm beacon node currently implements a GRPC API, which is not compatible with other validators (context here).
one of the suggested projects involves implementing the standard HTTP beacon node validator API, so the prysm beacon node can be used with different validators.