nostrver-se / nostr-php

PHP helper library for Nostr https://nostr-php.dev
https://nostr-php.dev
MIT License
50 stars 15 forks source link

Read events from relays #57

Closed Sebastix closed 3 months ago

Sebastix commented 3 months ago

Full implementation of reading events from relays.

kriptonix commented 3 months ago

I tested and it works fine. Just noticed one small mistake in README. In line 133 should be "$request = new Request($relay, $requestMessage);" not "$request = new Request($relayUrl, $requestMessage);". Instead of using $relayUrl when creating new Request we should use Relay object. Maybe you could change this directly not to make PR for this small correction.

Sebastix commented 3 months ago

I tested and it works fine. Just noticed one small mistake in README. In line 133 should be "$request = new Request($relay, $requestMessage);" not "$request = new Request($relayUrl, $requestMessage);". Instead of using $relayUrl when creating new Request we should use Relay object. Maybe you could change this directly not to make PR for this small correction.

Thx! Updated the README.md :)