From 3b1cd96798a9c6b6607b01814b31266dc41934f0 Mon Sep 17 00:00:00 2001 From: Zack Wynne Date: Fri, 27 Jan 2023 11:47:54 -0700 Subject: [PATCH] NIP-26: fixing typo in conditions query string section --- 26.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/26.md b/26.md index 3eb1856..1299b72 100644 --- a/26.md +++ b/26.md @@ -38,11 +38,11 @@ The following fields and operators are supported in the above query string: *Fields*: 1. `kind` - *Operators*: - - `=${KIND_NUMBER}` - delegator may only sign events of this kind + - `=${KIND_NUMBER}` - delegatee may only sign events of this kind 2. `created_at` - *Operators*: - - `<${TIMESTAMP}` - delegator may only sign events created ***before*** the specified timestamp - - `>${TIMESTAMP}` - delegator may only sign events created ***after*** the specified timestamp + - `<${TIMESTAMP}` - delegatee may only sign events created ***before*** the specified timestamp + - `>${TIMESTAMP}` - delegatee may only sign events created ***after*** the specified timestamp In order to create a single condition, you must use a supported field and operator. Multiple conditions can be used in a single query string, including on the same field. Conditions must be combined with `&`.