@aztec/p2p-bootstrap 0.80.0 → 0.81.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -6,6 +6,6 @@ To build the package simply type `yarn build`, to start the boot node, simply ty
6
6
 
7
7
  The node will require a number of environment variables:
8
8
 
9
- P2P_UDP_LISTEN_ADDR - The address on which to listen for connections.
9
+ P2P_IP - The IP address on which to listen for connections.
10
+ P2P_PORT - The port on which to listen for connections.
10
11
  PEER_ID_PRIVATE_KEY - The private key to be used by the peer for secure communications with other peers. This key will also be used to derive the Peer ID.
11
- P2P_UDP_ANNOUNCE_ADDR - The address that other peers should use to connect to this node, this may be different to P2P_TCP_LISTEN_ADDR if e.g. the node is behind a NAT.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/p2p-bootstrap",
3
- "version": "0.80.0",
3
+ "version": "0.81.0",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "typedocOptions": {
@@ -24,10 +24,10 @@
24
24
  "../package.common.json"
25
25
  ],
26
26
  "dependencies": {
27
- "@aztec/foundation": "0.80.0",
28
- "@aztec/kv-store": "0.80.0",
29
- "@aztec/p2p": "0.80.0",
30
- "@aztec/telemetry-client": "0.80.0",
27
+ "@aztec/foundation": "0.81.0",
28
+ "@aztec/kv-store": "0.81.0",
29
+ "@aztec/p2p": "0.81.0",
30
+ "@aztec/telemetry-client": "0.81.0",
31
31
  "dotenv": "^16.0.3",
32
32
  "koa": "^2.15.3",
33
33
  "koa-router": "^12.0.1",