It is worth noting that this module does not include any message signing for broadcasts. The reason for this is that libp2p-pubsub supports message signing and enables it by default, which means the message you received has been verified to be from the originator, so we can trust that the peer information we have received is indeed from the peer who owns it. This doesn't mean the peer can't falsify its own records, but this module isn't currently concerned with that scenario.
constnode = awaitcreateLibp2p({ transports: [ websockets() ], // Any libp2p transport(s) can be used streamMuxers: [ yamux() ], connectionEncryption: [ noise() ], peerDiscovery: [ pubsubPeerDiscovery() ], services: { pubsub:gossipsub(), identify:identify() } })
Example: Customizing Pubsub Peer Discovery
There are a few options you can use to customize Pubsub Peer Discovery. You can see the detailed options below.
// ... Other imports from above importPubSubPeerDiscoveryfrom'@libp2p/pubsub-peer-discovery'
// Custom topics consttopics = [ `myApp._peer-discovery._p2p._pubsub`, // It's recommended but not required to extend the global space '_peer-discovery._p2p._pubsub'// Include if you want to participate in the global space ]
When the discovery module is started by libp2p it subscribes to the discovery pubsub topic(s)
It will immediately broadcast your peer data via pubsub and repeat the broadcast on the configured
interval
Security Considerations
It is worth noting that this module does not include any message signing for broadcasts. The reason for this is that libp2p-pubsub supports message signing and enables it by default, which means the message you received has been verified to be from the originator, so we can trust that the peer information we have received is indeed from the peer who owns it. This doesn't mean the peer can't falsify its own records, but this module isn't currently concerned with that scenario.
Requirements
This module MUST be used on a libp2p node that is running Pubsub. If Pubsub does not exist, or is not running, this module will not work.
To run a PubSub service, include a
pubsub
implementation in your services map such as@chainsafe/libp2p-gossipsub
.For more information see the docs on customizing libp2p.
Example: Usage in js-libp2p
See the js-libp2p configuration docs for how to include this module as a peer discovery module in js-libp2p.
If you are only interested in listening to the global pubsub topic the minimal configuration for using this with libp2p is:
Example: Customizing Pubsub Peer Discovery
There are a few options you can use to customize
Pubsub Peer Discovery
. You can see the detailed options below.Options
number
ms
), after initial broadcast, your node should broadcast your peer data. Default (10000ms
)Array<string>
boolean
false
)Default Topic
The default pubsub topic the module subscribes to is
_peer-discovery._p2p._pubsub
, which is also set onPubsubPeerDiscovery.TOPIC
.