@gethashd/bytecave-browser 1.0.32 → 1.0.33
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.
- package/dist/{chunk-KFAG3W6R.js → chunk-BLV4I3O6.js} +3 -1
- package/dist/index.cjs +3 -1
- package/dist/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +3 -1
|
@@ -6877,7 +6877,9 @@ Nonce: ${nonce}`;
|
|
|
6877
6877
|
blobCount: announcement.blobCount,
|
|
6878
6878
|
timestamp: announcement.timestamp,
|
|
6879
6879
|
multiaddrs: announcement.multiaddrs,
|
|
6880
|
-
relayAddrs: announcement.relayAddrs || existing?.relayAddrs
|
|
6880
|
+
relayAddrs: announcement.relayAddrs || existing?.relayAddrs,
|
|
6881
|
+
isRegistered: announcement.isRegistered,
|
|
6882
|
+
onChainNodeId: announcement.onChainNodeId
|
|
6881
6883
|
};
|
|
6882
6884
|
this.knownPeers.set(announcement.peerId, peerInfo);
|
|
6883
6885
|
this.emit("peerAnnounce", peerInfo);
|
package/dist/index.cjs
CHANGED
|
@@ -6930,7 +6930,9 @@ Nonce: ${nonce}`;
|
|
|
6930
6930
|
blobCount: announcement.blobCount,
|
|
6931
6931
|
timestamp: announcement.timestamp,
|
|
6932
6932
|
multiaddrs: announcement.multiaddrs,
|
|
6933
|
-
relayAddrs: announcement.relayAddrs || existing?.relayAddrs
|
|
6933
|
+
relayAddrs: announcement.relayAddrs || existing?.relayAddrs,
|
|
6934
|
+
isRegistered: announcement.isRegistered,
|
|
6935
|
+
onChainNodeId: announcement.onChainNodeId
|
|
6934
6936
|
};
|
|
6935
6937
|
this.knownPeers.set(announcement.peerId, peerInfo);
|
|
6936
6938
|
this.emit("peerAnnounce", peerInfo);
|
package/dist/index.js
CHANGED
package/dist/react/index.js
CHANGED
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -917,7 +917,9 @@ Nonce: ${nonce}`;
|
|
|
917
917
|
blobCount: announcement.blobCount,
|
|
918
918
|
timestamp: announcement.timestamp,
|
|
919
919
|
multiaddrs: announcement.multiaddrs,
|
|
920
|
-
relayAddrs: announcement.relayAddrs || (existing as any)?.relayAddrs
|
|
920
|
+
relayAddrs: announcement.relayAddrs || (existing as any)?.relayAddrs,
|
|
921
|
+
isRegistered: announcement.isRegistered,
|
|
922
|
+
onChainNodeId: announcement.onChainNodeId
|
|
921
923
|
};
|
|
922
924
|
|
|
923
925
|
this.knownPeers.set(announcement.peerId, peerInfo);
|