Where can I read more about this?

Reply to this note

Please Login to reply.

Discussion

I'm just coding it. But basically turning it into json-ld in a well known location so it's not tied to any domain. That way we can scale nostr and take some of the pressure of the relays, let them focus on freshness. But the format is farily simple, im about to write a wrapper in node.

In a nutshell:

const jsonLD = {

'@id': '',

mainEntity: {

'@context': 'https://w3id.org/nostr/context',

'@id': 'nostr:event:' + event.id,

'@type': 'Event',

...event

}

}

return jsonLD