You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once you receive your requested event with code like this for example:
while relay_manager.message_pool.has_events():
event_msg = relay_manager.message_pool.get_event()
print(event_msg.event.PARAMETER) # for example event_msg.content
You can get the event data with the following parameters:
event_msg.id
event_msg.pubkey
event_msg.created_at
event_msg.kind
event_msg.tags
event_msg.content
event_msg.sig
If I have an event id, and I want to get the entire event data, how can I query the relays to get it?
The text was updated successfully, but these errors were encountered: