@gethashd/bytecave-browser 1.0.15 → 1.0.16
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-ZFKOXO6W.js → chunk-OS5QOU7R.js} +4 -1
- package/dist/index.cjs +4 -1
- package/dist/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
- package/src/client.ts +4 -1
|
@@ -6677,7 +6677,10 @@ Nonce: ${nonce}`;
|
|
|
6677
6677
|
blobCount: announcement.blobCount,
|
|
6678
6678
|
timestamp: announcement.timestamp,
|
|
6679
6679
|
multiaddrs: announcement.multiaddrs,
|
|
6680
|
-
relayAddrs: announcement.relayAddrs || existing?.relayAddrs
|
|
6680
|
+
relayAddrs: announcement.relayAddrs || existing?.relayAddrs,
|
|
6681
|
+
// Store on-chain registration status
|
|
6682
|
+
registeredOnChain: announcement.registeredOnChain || false,
|
|
6683
|
+
onChainNodeId: announcement.onChainNodeId || existing?.onChainNodeId
|
|
6681
6684
|
};
|
|
6682
6685
|
this.knownPeers.set(announcement.peerId, peerInfo);
|
|
6683
6686
|
this.emit("peerAnnounce", peerInfo);
|
package/dist/index.cjs
CHANGED
|
@@ -6730,7 +6730,10 @@ Nonce: ${nonce}`;
|
|
|
6730
6730
|
blobCount: announcement.blobCount,
|
|
6731
6731
|
timestamp: announcement.timestamp,
|
|
6732
6732
|
multiaddrs: announcement.multiaddrs,
|
|
6733
|
-
relayAddrs: announcement.relayAddrs || existing?.relayAddrs
|
|
6733
|
+
relayAddrs: announcement.relayAddrs || existing?.relayAddrs,
|
|
6734
|
+
// Store on-chain registration status
|
|
6735
|
+
registeredOnChain: announcement.registeredOnChain || false,
|
|
6736
|
+
onChainNodeId: announcement.onChainNodeId || existing?.onChainNodeId
|
|
6734
6737
|
};
|
|
6735
6738
|
this.knownPeers.set(announcement.peerId, peerInfo);
|
|
6736
6739
|
this.emit("peerAnnounce", peerInfo);
|
package/dist/index.js
CHANGED
package/dist/react/index.js
CHANGED
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -881,7 +881,10 @@ Nonce: ${nonce}`;
|
|
|
881
881
|
blobCount: announcement.blobCount,
|
|
882
882
|
timestamp: announcement.timestamp,
|
|
883
883
|
multiaddrs: announcement.multiaddrs,
|
|
884
|
-
relayAddrs: announcement.relayAddrs || (existing as any)?.relayAddrs
|
|
884
|
+
relayAddrs: announcement.relayAddrs || (existing as any)?.relayAddrs,
|
|
885
|
+
// Store on-chain registration status
|
|
886
|
+
registeredOnChain: announcement.registeredOnChain || false,
|
|
887
|
+
onChainNodeId: announcement.onChainNodeId || (existing as any)?.onChainNodeId
|
|
885
888
|
};
|
|
886
889
|
|
|
887
890
|
this.knownPeers.set(announcement.peerId, peerInfo);
|