Esteban Abaroa
Esteban Abaroa
> I just wanted to say thanks for folks sharing about their usecases and needs. One our usecase would be to know the IP address of the direct peer who...
> If you had to chose options, which options would you pick (feel free to choose or and rank multiple options) ? I am an building an app that uses...
> @estebanabaroa IPNS over pubsub is not concerned by this issue. Yes I know, what I meant is that since my app uses almost everything included in kubo right now,...
Something weird is happening, after dialing a kubo node with IPNS over pubsub and doing: ```js libp2p.services.fetch.registerLookupFunction( '/ipns/', (key) => console.log('fetch received with key:', [key]) ) await name.resolve(CID.parse('k51qzi5uqu5dkhvs75chetwlvhwyvhwj8c2qq71tx62z3fekwkms32ubp6k08g').multihash) ``` Logs:...
> Do we need to change the code in challenges to implement this? yes, `SubplebbitChallenge` and `SubplebbitChallengeSettings` have a new optional field, `pendingApproval: boolean`. if a challenge has this field...
> Shouldn't `subplebbit.posts.pageCids.pendingApproval` be hidden? Everyone would be able to see which comments are awaiting approval. seems desirable to me. we want plebbit to be as transparent as possible >...
I think we probably dont want to put pending approval in subplebbit.posts, because it'll be more confusing when implementing subplebbit.encrypted (it'll be weird to encrypt only part of a nested...
> Shouldn't `subplebbit.posts.pageCids.pendingApproval` be hidden? I think eventually we will have commentUpdate.encrypted and subplebbit.encrypted, which would probably use a similar API as PubsubMessage.encrypted. And once we have this, we should...
The 3 options I think right now are: 1. ``` { "jsonrpc": "2.0", "method": "commentUpdateNotification", "params": { "result": CommentIpfs | CommentUpdate, "event": "update", "subscription": 1234 } } ``` the first...
> I think the tip comments should be stored in a separate table than comment, and when we generate a CommentUpdate we include all the tips of that comment. I...