Auto Filtering
rx-nostr automatically filters invalid events returned as a result of REQ. You can change these behavior by options of createRxNostr()
.
Auto Verification
rx-nostr automatically verifies that the events returned as a result of REQ have valid signature, and excludes events that fail verification from the results.
You can disable this behavior by skipVerify
option.
Auto Validation
rx-nostr automatically verifies that the events returned as a result of REQ really match the REQ filters, and excludes events that fail verification from the results.
You can disable this behavior by skipValidateFilterMatching
option.
Note
There is no standardized interpretation of the search
field, so no validation of the field is performed.
acceptDelegatedEvent
is disabled by default.
Auto Expiration Check
Based on NIP-40, events returned as a result of REQ are automatically checked whether or not they are expired and removes expired events from the result.
You can disable this behavior by skipExpirationCheck
option.