Add Admin API (#267)

* Add Admin API
This commit is contained in:
Hanno Cornelius 2020-12-04 09:57:27 +02:00 committed by GitHub
parent 419875cc4a
commit 9463537ccc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View File

@ -284,6 +284,34 @@ The `get_waku_v2_filter_v1_messages` method returns a list of messages that were
- **`Array`[[`WakuMessage`](#WakuMessage)]** - the latest `messages` on the polled content `topic` or an [error](https://www.jsonrpc.org/specification#error_object) on failure. - **`Array`[[`WakuMessage`](#WakuMessage)]** - the latest `messages` on the polled content `topic` or an [error](https://www.jsonrpc.org/specification#error_object) on failure.
## Admin API
The Admin API provides privileged accesses to the internal operations of a Waku v2 node.
### Types
The following structured types are defined for use on the Admin API:
#### WakuPeer
`WakuPeer` is an `Object` containing the following fields:
| Field | Type | Inclusion | Description |
| ----: | :--: | :--: |----------- |
| `multiaddr` | `String` | mandatory | Multiaddress containing this peer's location and identity |
| `protocol` | `String` | mandatory | Protocol that this peer is registered for |
| `connected` | `bool` | mandatory | `true` if peer has active connection for this `protocol`, `false` if not |
### `get_waku_v2_admin_v1_peers`
The `get_waku_v2_admin_v1_peers` method returns an array of peers registered on this node. Since a Waku v2 node may open either continuous or ad hoc connections, depending on the negotiated protocol, these peers may have different connected states. The same peer MAY appear twice in the returned array, if it is registered for more than one protocol.
#### Parameters
none
#### Response
- **`Array`[[`WakuPeer`](#WakuPeer)]** - Array of peers registered on this node
# Example usage # Example usage
## Store API ## Store API

View File

@ -70,6 +70,7 @@ HistoryQuery
historyResponse historyResponse
HistoryResponse HistoryResponse
HistoryRPC HistoryRPC
hoc
html html
http http
https https
@ -205,6 +206,7 @@ waku
WakuFilter WakuFilter
WakuInfo WakuInfo
WakuMessage WakuMessage
WakuPeer
WakuRelay WakuRelay
WakuRelayMessage WakuRelayMessage
WakuStore WakuStore