Haelius
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# The current state of Waku v2 peer discovery ***2021-10-15*** The question of _peer discovery_ for Waku v2 has been a focus area since the [protocol was first conceptualized](https://vac.dev/waku-v2-plan). Since then several different approaches to discovery had been proposed, investigated, implemented or placed on development roadmaps. This post aims to: - give an accurate picture of the current state of research and implementation of peer discovery mechanisms for Waku v2, - collate the diverse requirements Waku v2 applications may have for peer discovery, and - revisit the benefits and tradeoffs of different discovery schemes. It is meant to be an interactive discussion, with feedback from as many Waku v2 stakeholders as possible, to get a clear picture of where we are, what the specific peer discovery requirements are for different use cases, and how to proceed from here. ## Implementation status | method | nim-waku (Nim) | go-waku (Go) | js-waku | | ---- | -------------- | ------------ | ----------------- | |DNS-based discovery|✔|✔|🚧| |GossipSub peer exchange||✔|?| |Node Discovery v5|🚧|| |Rendezvous||✔|| ## Background _Peer discovery_ is the method by which nodes become aware of each other's existence. This definition should be general enough to cover the use case of discovering peers _with selected capabilities_, although "peer ID discovery" and "capability discovery" could be treated as separate problem domains in implementation. ## Waku v2 design goals Since the problem of discovery is (mostly) orthogonal to the messenger-oriented problems addressed by Waku v2 protocols, Waku v2 can in theory be used in conjunction with any discovery mechanism. We are, however, researching more integrated approaches that are specifically geared towards Waku v2 design goals. Specifically, we want to maximize the following properties in selecting discovery schemes: - scalability - resource-efficiency - decentralization In practice every discovery mechanism implies a tradeoff between these three properties. ## Capability discovery Waku v2 nodes may also be interested in peers with specific capabilities, for example: 1. peers within a specific pubsub topic mesh, 2. peers with `store` capability, 3. `store` peers with x days of history for a specific content topic, etc. There may be ways for some of these capabilities to be advertised and discoverable within any of the mechanisms described below, although this could increase the complexity of finding a node with specific capabilities within the larger network (a needle in a haystack). ## Peer discovery candidates ### 1. DNS-based discovery #### Definition Using this method a new node can retrieve an authenticated, updateable list of peers via DNS to bootstrap connection to a Waku v2 network. Our implementation is based on [EIP-1459](https://eips.ethereum.org/EIPS/eip-1459). #### Benefits - highly scalable - resource-efficient - existing implementations in [go](https://github.com/ethereum/go-ethereum/tree/master/p2p/dnsdisc), [nim](https://github.com/status-im/nim-dnsdisc) and [ts](https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/devp2p/src/dns/dns.ts) #### Tradeoffs - centralized, and therefore vulnerable to censorship/attacks - requires multi-step, centralized updating to add new nodes to the discoverable list (i.e. retrieving the current tree, updating and signing the tree, and redeploying to a DNS provider) - although useful for bootstrapping connection to a Waku v2 network, it must be used in conjunction with other [ambient peer discovery](https://github.com/libp2p/specs/blob/master/pubsub/gossipsub/gossipsub-v1.0.md#ambient-peer-discovery) methods for a peer to become aware of more nodes in the network. #### Implementation notes Based on [EIP-1459](https://eips.ethereum.org/EIPS/eip-1459) across all three Waku v2 implementations. Since EIP-1459 operates on [EIP-778 Ethereum Node Records](https://eips.ethereum.org/EIPS/eip-778) there is an [ongoing conversation](https://github.com/vacp2p/rfc/issues/462) about how to encode `multiaddr` information for which there exists no key definition in EIP-778. These include websocket ports, DNS addresses, etc. which are required for running Waku from a browser. > IMPORTANT NOTE: RFC [25/LIBP2P-DNS-DISCOVERY](https://rfc.vac.dev/spec/25/) proposes an alternative approach to DNS discovery not based on EIP-778 ENR. This specification is not currently implemented or on a roadmap to be implemented. ##### go-waku [EIP-1459 implementation done](https://github.com/ethereum/go-ethereum/tree/master/p2p/dnsdisc) and integrated in go-waku ##### nim-waku [EIP-1459 implementation done](https://github.com/status-im/nim-dnsdisc) and integrated in nim-waku ##### js-waku WIP. Awaiting consensus on `multiaddr` encoding in EIP-778 ENR. ### 2. GossipSub peer exchange #### Definition [GossipSub Peer Exchange](https://github.com/libp2p/specs/blob/master/pubsub/gossipsub/gossipsub-v1.1.md#prune-backoff-and-peer-exchange) (PX) is a GossipSub v1.1 mechanism whereby a pruning peer may provide a pruned peer with a set of alternative peers where it can connect to reform its mesh. This is a very suitable mechanism to gradually discover more peers from an initial connection to a small set of bootstrap peers. #### Benefits - scales with the network - fairly resource efficient, as it piggybacks on existing control signalling - specified by libp2p and already implemented in many languages #### Tradeoffs - not useful as a general out-of-band discovery mechanism, as it piggybacks on in-band control signalling - requires trusting the information provided by pruning nodes - since this is a libp2p mechanism, not Waku v2, it relies on the respective libp2p libraries for an implementation - requires a bootstrapping mechanism to initiate connection to the network #### Implementation notes ##### go-waku Implemented in [go-libp2p](https://github.com/libp2p/go-libp2p/). Enabled and integrated in go-waku. ##### nim-waku Not yet implemented in [nim-libp2p](https://github.com/status-im/nim-libp2p). Implementation is likely to form part of the medium term nim-libp2p goal of [peer and connection management](https://github.com/status-im/nim-libp2p/issues/537). A shorter term minimal implementation is possible by adding support in nim-libp2p for: - signed peer records - a callback function whenever a `PRUNE` is received and contains peer exchange information. `nim-waku` could then implement this callback function, handling and connecting to the discovered peers. ##### js-waku ??? ### 3. Node Discovery v5 #### Definition [Node Discovery Protocol v5](https://github.com/ethereum/devp2p/blob/master/discv5/discv5.md) is a DHT-based discovery mechanism adapted to store and relay _node records_. #### Benefits - decentralized - existing implementations in [nim](https://github.com/status-im/nim-eth/blob/master/eth/p2p/discoveryv5/protocol.nim), [go](https://github.com/ethereum/go-ethereum/blob/master/p2p/discover/v5_udp.go), etc. #### Tradeoffs - [high resource-usage](https://discuss.status.im/t/discv5-feasibility-study/1632), specifically i.t.o. CPU and memory usage. - "needle in a haystack": finding a peer with _specific capabilities_ may [not be feasible](https://github.com/vacp2p/research/issues/15) within the resource-restricted world of mobile clients and mobile data. - requires a bootstrapping mechanism to initiate connection to the network #### Implementation notes ##### go-waku Not yet implemented. ##### nim-waku [POC implementation in progress](https://github.com/status-im/nim-waku/tree/feat/discv5). The POC proposes that discv5 can be started and stopped via API calls to limit resource usage. ##### js-waku Not yet implemented. ### 4. Rendezvous #### Definition [Rendezvous protocol](https://github.com/libp2p/specs/blob/master/rendezvous/README.md) is a discovery method whereby peers register and discover other registered peers at rendezvous points. [Status rendezvous](https://github.com/status-im/rendezvous) introduces some differences with the original specification, including using ENR for peer information. #### Benefits - suitable for resource-restricted devices - less centralized than DNS discovery #### Tradeoffs - [susceptible to adversary attacks]((https://github.com/status-im/rendezvous/issues/8)) - requires a bootstrapping mechanism to configure/discover rendezvous points - no existing implementation in nim. Unknown how useful the [js implementation](https://github.com/libp2p/js-libp2p-rendezvous) will be for js-waku, due to the differences with [Status rendezvous](https://github.com/status-im/rendezvous). #### Implementation notes ##### go-waku Implemented and integrated in go-waku. ##### nim-waku Not yet implemented. ##### js-waku Not yet implemented.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully