-
Notifications
You must be signed in to change notification settings - Fork 905
Description
Context
Lighthouse implements the concept of a “trusted”/”static” peer, which guarantees the ability to always remain connected to a peer ignoring defensive measures such as peer scoring, however it provides no guarantees of being part of their mesh or to send/receive full messages from them unconditionally.
Why explicit peering agreement
Gossipsub v1.1 introduces the concept of "Explicit Peering Agreement", which is an agreement that must be reached from a pair of nodes in order to “remain connected to and unconditionally forward messages to each other outside of the vagaries of the peer scoring system and other defensive measures”.
This feature if enabled in Lighthouse could allow nodes to explicitly connect to some relays networks such as Fiber or Bloxroute to boost the propagation of their blocks.
Possible implementation
In order to do that, we could simply mimic what has been done for trusted/static peers. In particular:
- set them from the command line
- allow them to be added and removed dynamically
- exclude them from peer scoring or other defensive measures
Lastly this list of nodes needs to be passed to the libp2p implementation.
If there is interest, we can open a PR that implements this functionality.