upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Pamplona <vitor@vitorpamplona.com>2023-05-24 09:46:36 -0400
committerVitor Pamplona <vitor@vitorpamplona.com>2023-05-24 09:46:36 -0400
commit7c3e5902471b2eccf8032c06ab4e07940dd56ae7 (patch)
tree12da2e5d4d643a84166618d37020718e856e8cda
parentdd5c9c54ae33c0480b2f12b604353b738c827115 (diff)
Moves weights to be a string as tags can only contain strings
-rw-r--r--57.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/57.md b/57.md
index 7471685..4d02611 100644
--- a/57.md
+++ b/57.md
@@ -173,9 +173,9 @@ When an event includes one or more `zap` tags, clients SHOULD calculate the lnur
173```json 173```json
174{ 174{
175 "tags": [ 175 "tags": [
176 [ "zap", "LNURL..", "lud06", 10 ], // 10% 176 [ "zap", "LNURL..", "lud06", "10" ], // 10%
177 [ "zap", "pablo@f7z.io", "lud16", 65 ], // 65% 177 [ "zap", "pablo@f7z.io", "lud16", "65" ], // 65%
178 [ "zap", "460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c", "pubkey", 25 ] // 25% 178 [ "zap", "460c25e682fda7832b52d1f22d3d22b3176d972f60dcdc3212ed8c92ef85065c", "pubkey", "25" ] // 25%
179 ] 179 ]
180} 180}
181``` 181```