You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/SPECIFICATION.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -303,14 +303,15 @@ A CastAddBody in a message `m` is valid only if it passes these validations:
303
303
304
304
1.`m.signature_scheme` must be `SIGNATURE_SCHEME_ED25519`.
305
305
2.`m.data.type` must be `MESSAGE_TYPE_CAST_ADD`.
306
-
3.`m.data.body.type` must be `CastAddBody`.
306
+
3.`m.data.body` must be `CastAddBody` type.
307
307
4.`m.data.body.embeds_deprecated` can contain up to 2 valid UTF8 strings whose lengths are >=1 byte and <= 256 bytes if the timestamp is <= 73612800 (5/3/23 00:00 UTC).
308
308
5.`m.data.body.mentions` must contain between 0 and 10 256-bit integer values.
309
309
6.`m.data.body.parent`, if present, must be a valid CastId or a UTF8 string whose length is >= 1 byte and <= 256 bytes.
310
-
7.`m.data.body.text` must contain <= 320 bytes and be a valid UTF8 string.
311
-
8.`m.data.body.mentions_positions` must have unique integers between 0 and length of `text` inclusive.
312
-
9.`m.data.body.mentions_positions` integers must be in ascending order and must have as many elements as `mentions`.
313
-
10.`m.data.body.embeds` can contain up to 2 embeds, each of which is a CastId or valid UTF8 string whose length is >=1 byte and <= 256bytes.
310
+
7.`m.data.body.text` must contain <= 1024 bytes and be a valid UTF8 string.
311
+
8.`m.data.body.type` must be either `CastType.CAST` for casts with text length of 0 <= length <= 320 and `CastType.LONG_CAST` for casts that are 321 <= length <= 1024
312
+
9.`m.data.body.mentions_positions` must have unique integers between 0 and length of `text` inclusive.
313
+
10.`m.data.body.mentions_positions` integers must be in ascending order and must have as many elements as `mentions`.
314
+
11.`m.data.body.embeds` can contain up to 2 embeds, each of which is a CastId or valid UTF8 string whose length is >=1 byte and <= 256bytes.
314
315
315
316
A CastRemoveBody in a message `m` is valid only if it passes these validations:
0 commit comments