Hi, non-music question: I was fiddling around with kinds 30040 and 30041, I think you worked on these. I got a 30040 custom event "to work": https://njump.me/nevent1qqsfwtl7j95vxujpfytntcldhqptrpm62mpfedr4ml444wjpspa4pzqprpmhxue69uhhyetvv9ujumn0wdmksetjv5hxxmmdqgs97puwjr800ph6ptrh2gvzjrz3fcenz0s8jdg8a52nwhx9k2av4gc3qrauv However, it's not "out there", for lack of better terms. I'm trying to simply combine two 1-word notes: a "Hello" note and "world!" note and broadcast a "Hello world!" note together. Kind of stuck. Any pointers?
Discussion
Right now its not going to render anywhere because the only client that will render is mine, but your event is mostly correct.
if you want to render it, here's my client. Very hacked together, but functional (last i checked)
https://github.com/limina1/indextr-client
You'd have to chang the relays you're connected to: go to src/lib/consts.ts, where you can replace Damus with nos.lol to the list of standard relays.
Next, because you have regular text in the .content, you'd have to change src/lib/ArticleHeader.svelte. It currently has the content as a stringified json.
Line 10:
```
//change
const title: string = JSON.parse(event.content).title;
//to
const title: string = event.content;
```