lnd
Results
2
comments of
lnd
You can do that using the `README.md` example named _"Receive events from relays"_, but you need to change the filter to `EventKind.SET_METADATA`. I really don't know if it's the most...
You can do that using the `README.md` example named _"Receive events from relays"_, but you need to use two filters: ``` filters = Filters([ Filter(event_ids=[event_id], kinds=[EventKind.TEXT_NOTE]), Filter(event_refs=[event_id], kinds=[EventKind.TEXT_NOTE]) ]) ```...