-
Notifications
You must be signed in to change notification settings - Fork 510
feat: address and proto books #590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
a1617e6
8dab477
72dea96
d3e4ad2
eb27b8d
f938535
1662065
7dcc78e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,6 +17,17 @@ | |
| * [`contentRouting.put`](#contentroutingput) | ||
| * [`contentRouting.get`](#contentroutingget) | ||
| * [`contentRouting.getMany`](#contentroutinggetmany) | ||
| * [`peerStore.addressBook.delete`](#peerstoreaddressbookdelete) | ||
| * [`peerStore.addressBook.get`](#peerstoreaddressbookget) | ||
| * [`peerStore.addressBook.getMultiaddrsForPeer`](#peerstoreaddressbookgetmultiaddrsforpeer) | ||
| * [`peerStore.addressBook.set`](#peerstoreaddressbookset) | ||
| * [`peerStore.protoBook.delete`](#peerstoreprotobookdelete) | ||
| * [`peerStore.protoBook.get`](#peerstoreprotobookget) | ||
| * [`peerStore.protoBook.set`](#peerstoreprotobookset) | ||
| * [`peerStore.protoBook.supports`](#peerstoreprotobooksupports) | ||
| * [`peerStore.delete`](#peerstoredelete) | ||
| * [`peerStore.find`](#peerstorefind) | ||
| * [`peerStore.peers`](#peerstorepeers) | ||
| * [`pubsub.getSubscribers`](#pubsubgetsubscribers) | ||
| * [`pubsub.getTopics`](#pubsubgettopics) | ||
| * [`pubsub.publish`](#pubsubpublish) | ||
|
|
@@ -507,6 +518,345 @@ const key = '/key' | |
| const { from, val } = await libp2p.contentRouting.get(key) | ||
| ``` | ||
|
|
||
| ### peerStore.addressBook.delete | ||
|
|
||
| Delete the provided peer from the book. | ||
|
|
||
| `peerStore.addressBook.delete(peerId)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to remove | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `boolean` | true if found and removed | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.addressBook.delete(peerId) | ||
| // false | ||
| peerStore.addressBook.set(peerId, discoveredMultiaddr) | ||
| peerStore.addressBook.delete(peerId) | ||
| // true | ||
| ``` | ||
|
|
||
| ### peerStore.addressBook.get | ||
|
|
||
| Get the known `multiaddrInfos` of a provided peer. | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| `peerStore.addressBook.get(peerId)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to get | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `Array<multiaddrInfo>` | Array of peer's multiaddr with their relevant information | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.addressBook.get(peerId) | ||
| // undefined | ||
| peerStore.addressBook.set(peerId, discoveredMultiaddr) | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| peerStore.addressBook.get(peerId) | ||
| // [ | ||
| // { | ||
| // multiaddr: /ip4/140.10.2.1/tcp/8000, | ||
| // ... | ||
| // }, | ||
| // { | ||
| // multiaddr: /ip4/140.10.2.1/ws/8001 | ||
| // ... | ||
| // }, | ||
| // ] | ||
| ``` | ||
|
|
||
| ## peerStore.addressBook.getMultiaddrsForPeer | ||
|
|
||
| Get the known `multiaddr` of a provided peer. All returned multiaddrs will include the encapsulated `PeerId` of the peer. | ||
|
|
||
| `peerStore.addressBook.getMultiaddrsForPeer(peerId)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to get | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `Array<multiaddr>` | Array of peer's multiaddr | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.addressBook.getMultiaddrsForPeer(peerId) | ||
| // undefined | ||
| peerStore.addressBook.set(peerId, discoveredMultiaddr) | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| peerStore.addressBook.getMultiaddrsForPeer(peerId) | ||
| // [ | ||
| // /ip4/140.10.2.1/tcp/8000/p2p/QmW8rAgaaA6sRydK1k6vonShQME47aDxaFidbtMevWs73t | ||
| // /ip4/140.10.2.1/ws/8001/p2p/QmW8rAgaaA6sRydK1k6vonShQME47aDxaFidbtMevWs73t | ||
| // ] | ||
| ``` | ||
|
|
||
| ### peerStore.addressBook.set | ||
|
|
||
| Set known `multiaddrs` of a given peer. | ||
|
|
||
| `peerStore.addressBook.set(peerId, multiaddrs, options)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to set | | ||
| | multiaddrs | `multiaddr|Array<multiaddr>` | multiaddrs to store | | ||
| | [options] | `object` | options to set | | ||
| | [options.replace] | `Object` | replace stored data (if exists) or unique union (default: true) | | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `Array<multiaddrInfo>` | Array of peer's multiaddr with their relevant information | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.addressBook.set(peerId, discoveredMultiaddr) | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| // [ | ||
| // { | ||
| // multiaddr: /ip4/140.10.2.1/tcp/8000, | ||
| // ... | ||
| // }, | ||
| // { | ||
| // multiaddr: /ip4/140.10.2.1/ws/8001 | ||
| // ... | ||
| // }, | ||
| // ] | ||
| ``` | ||
|
|
||
| ### peerStore.protoBook.delete | ||
|
|
||
| Delete the provided peer from the book. | ||
|
|
||
| `peerStore.protoBook.delete(peerId)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to remove | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `boolean` | true if found and removed | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.protoBook.delete(peerId) | ||
| // false | ||
| peerStore.protoBook.set(peerId, supportedProtocols) | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| peerStore.protoBook.delete(peerId) | ||
| // true | ||
| ``` | ||
|
|
||
| ### peerStore.protoBook.get | ||
|
|
||
| Get the known `protocols` of a provided peer. | ||
|
|
||
| `peerStore.protoBook.get(peerId)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to get | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `Array<string>` | Array of peer's supported protocols | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.protoBook.get(peerId) | ||
| // undefined | ||
| peerStore.protoBook.set(peerId, supportedProtocols) | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| peerStore.protoBook.get(peerId) | ||
| // [ '/proto/1.0.0', '/proto/1.1.0' ] | ||
| ``` | ||
|
|
||
| ### peerStore.protoBook.set | ||
|
|
||
| Set known `protocols` of a given peer. | ||
|
|
||
| `peerStore.protoBook.set(peerId, protocols, options)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to set | | ||
| | protocols | `string|Array<string>` | protocols to store | | ||
| | [options] | `object` | options to set | | ||
| | [options.replace] | `Object` | replace stored data (if exists) or unique union (default: true) | | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `Array<string>` | Array of peer's supported protocols | | ||
vasco-santos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.protoBook.set(peerId, supportedProtocols) | ||
| // [ '/proto/1.0.0', '/proto/1.1.0' ] | ||
| ``` | ||
|
|
||
| ### peerStore.protoBook.supports | ||
|
|
||
| Verify if the provided peer supports the given `protocols`. | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| `peerStore.protoBook.supports(peerId, protocols)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to get | | ||
| | protocols | `string|Array<string>` | protocols to verify | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `boolean` | true if found and removed | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| const supportedProtocols = [ '/proto/1.0.0', '/proto/1.1.0' ] | ||
| peerStore.protoBook.supports(peerId, supportedProtocols) | ||
| // false | ||
| peerStore.protoBook.supports(peerId, supportedProtocols[0]) | ||
| // false | ||
| peerStore.protoBook.set(peerId, supportedProtocols) | ||
| peerStore.protoBook.supports(peerId, supportedProtocols) | ||
| // true | ||
| peerStore.protoBook.supports(peerId, supportedProtocols[0]) | ||
| // true | ||
| ``` | ||
|
|
||
| ### peerStore.delete | ||
|
|
||
| Delete the provided peer from every book. | ||
|
|
||
| `peerStore.delete(peerId)` | ||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to remove | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `boolean` | true if found and removed | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.delete(peerId) | ||
| // false | ||
| peerStore.addressBook.set(peerId, discoveredMultiaddrs) | ||
| peerStore.protoBook.set(peerId, supportedProtocols) | ||
| peerStore.delete(peerId) | ||
| // true | ||
| peerStore.delete(peerId2) | ||
| // false | ||
| peerStore.addressBook.set(peerId2, discoveredMultiaddrs) | ||
| peerStore.delete(peerId2) | ||
| // true | ||
| ``` | ||
|
|
||
| ### peerStore.find | ||
|
|
||
| Find the stored information of a given peer. | ||
|
|
||
| `peerStore.find(peerId)` | ||
|
||
|
|
||
| #### Parameters | ||
|
|
||
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | peerId | `peerid` | peerId to find | | ||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `peerInfo` | Peer information of the provided peer | | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| peerStore.find(peerId) | ||
| // false | ||
| peerStore.addressBook.set(peerId, discoveredMultiaddrs) | ||
| peerStore.protoBook.set(peerId, supportedProtocols) | ||
| peerStore.find(peerId) | ||
| // { | ||
| // multiaddrInfos: [...], | ||
| // protocols: [...] | ||
| // } | ||
| ``` | ||
|
|
||
| ### peerStore.peers | ||
|
|
||
| Get all the stored information of every peer. | ||
|
|
||
| `peerStore.peers()` | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #### Returns | ||
|
|
||
| | Type | Description | | ||
| |------|-------------| | ||
| | `Map<string, PeerInfo>` | Peer information of every peer | | ||
|
|
||
| TODO: change when `peer-info` is deprecated (breaking change) | ||
|
|
||
| #### Example | ||
|
|
||
| ```js | ||
| for (peer of peerStore.peers().values()) { | ||
vasco-santos marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| // peerInfo instance | ||
| } | ||
| ``` | ||
|
|
||
| ### pubsub.getSubscribers | ||
|
|
||
| Gets a list of the peer-ids that are subscribed to one topic. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.