From 1c38bb11369ce03e30cb50e53077ec5d3f0b7da1 Mon Sep 17 00:00:00 2001 From: Felicio Mununga Date: Fri, 25 Aug 2023 15:28:28 +0200 Subject: [PATCH] add shard fields --- content/docs/rfcs/59/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/docs/rfcs/59/README.md b/content/docs/rfcs/59/README.md index 4a3c2457b..fee044039 100644 --- a/content/docs/rfcs/59/README.md +++ b/content/docs/rfcs/59/README.md @@ -24,6 +24,7 @@ To reduce reliance on external servers for providing appropriate link previews, - Community: Refer to [56/STATUS-COMMUNITIES](/spec/56) - Channel: Refer to terminology in [56/STATUS-COMMUNITIES](/spec/56) - User: Refer to terminology in [56/STATUS-COMMUNITIES](/spec/56) +- Shard Refer to terminology in [51/WAKU2-RELAY-SHARDING](/spec/51) # Wire Format @@ -70,6 +71,8 @@ message User { message URLData { // Community, Channel, or User bytes content = 1; + uint32 shard_cluster = 2; + uint32 shard_index = 3; } ```