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
@@ -269,7 +271,7 @@ A message for indicating that the client is able to act as a provider for a give
269
271
270
272
```ipldsch
271
273
type ProvideRequest struct
272
-
Key &Any
274
+
Key [&Any]
273
275
Provider Provider
274
276
Timestamp Integer
275
277
AdvisoryTTL Integer
@@ -281,9 +283,9 @@ A message for indicating that the client is able to act as a provider for a give
281
283
}
282
284
```
283
285
284
-
Note: While the Key is a CID, it is highly recommended that server implementations treat these Requests as if they were for the multihash.
286
+
Note: While keys are formatted as CIDs, it is highly recommended that server implementations treat these requests at the multihash level - subsequent calls to `FindProviders` should be multicodec agnostic.
285
287
286
-
There are a a few semantics relevant to the construction of a ProvideRequest:
288
+
There are a few semantics relevant to the construction of a ProvideRequest:
287
289
288
290
* The timestamp should be the current unix timestamp, encoded in an int64
289
291
* AdvistoryTTL may list the time for which the provider desires the content will remain available. If the provider cannot not anticipate how long the content will remain available, it may use a 0 value for this field.
@@ -303,18 +305,27 @@ There are a a few semantics relevant to the construction of a ProvideRequest:
0 commit comments