Hmm how can i get publickey of the user sending info and not just peers who connected?

This commit is contained in:
MrMasrozYTLIVE 2024-06-10 17:17:34 +03:00
parent 805983e3f5
commit 704f6ca0dc

4
app.js
View File

@ -296,13 +296,15 @@ function sendMessage(e) {
onMessageAdded(config.userName, message, config.userAvatar);
console.log(swarm.keyPair);
console.log("swarm:", swarm);
const messageObj = JSON.stringify({
type: 'message',
name: config.userName,
message,
avatar: config.userAvatar,
topic: b4a.toString(currentRoom.topic, 'hex'),
peers: [...swarm.connections].map(peer => peer.remotePublicKey.toString('hex')).push(swarm.publicKey.toString('hex')),
peers: [...swarm.connections].map(peer => peer.remotePublicKey.toString('hex')),
timestamp: Date.now(),
readableTimestamp: new Date().toLocaleString(), // Added human-readable timestamp
});