const rxNostr = createRxNostr();
await rxNostr.switchRelays([RELAY]);
const req = createRxOneshotReq({
filters: [
{
kinds: 30078,
authors: getPublicKey(HEX),
limit: 1,
},
],
});
const result = rxNostr.use(req).pipe(
verify(),
latest(),
);
console.log(result);
return;
これ of これ