From 0151f1f988577b1ea077bfc2706f4903490ef939 Mon Sep 17 00:00:00 2001 From: Sergio Ovalle Date: Sun, 3 Sep 2023 11:13:01 -0600 Subject: [PATCH] feat: Refactor kind:902 structure for contracts - Updated the tags section to include an optional "on_behalf_of" field for Power Of Attorney. - Modified the content field to represent the Name/Title for the Contract. --- 79.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/79.md b/79.md index 5c8e62a..f4d51d1 100644 --- a/79.md +++ b/79.md @@ -88,14 +88,13 @@ The role of witnesses is to provide an additional layer of verification for the { "kind": 902, "tags": [ - [ "e", "" ], - [ "e", "" ] + [ "e", "" ] + [ "on_behalf_of", "" ] // optional for Power Of Attorney ], "pubkey": "[Party's Public Key]", "created_at": [Creation Timestamp], - "content": "", + "content": "", "id": "[Event ID]", - "ots": "" } ```