Skip to content

Commit 7e9612d

Browse files
authored
Merge pull request #312 from ipfs/feat/reframe-provide-update
2 parents b554445 + 96e4c53 commit 7e9612d

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

reframe/REFRAME_KNOWN_METHODS.md

+21-10
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ This document is defining known methods (request-response message types) and sem
2626
- [GetIPNS DAG-JSON Examples](#getipns-dag-json-examples)
2727
- [PutIPNS](#putipns)
2828
- [PutIPNS DAG-JSON Examples](#putipns-dag-json-examples)
29+
- [Provide](#provide)
30+
- [Provide DAG-JSON Examples](#provide-dag-json-examples)
2931
- [Method Upgrade Paths](#method-upgrade-paths)
3032
- [Implementations](#implementations)
3133

@@ -269,7 +271,7 @@ A message for indicating that the client is able to act as a provider for a give
269271

270272
```ipldsch
271273
type ProvideRequest struct
272-
Key &Any
274+
Key [&Any]
273275
Provider Provider
274276
Timestamp Integer
275277
AdvisoryTTL Integer
@@ -281,9 +283,9 @@ A message for indicating that the client is able to act as a provider for a give
281283
}
282284
```
283285

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.
285287

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:
287289

288290
* The timestamp should be the current unix timestamp, encoded in an int64
289291
* 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:
303305
Request:
304306
```json
305307
{"ProvideRequest" : {
306-
"Key" : {"/":{"bytes":"AXIUBPnagss"}},
307-
"Providers" : [
308-
{"Node":{"Peer":{"ID":{
309-
"/":{"bytes":"EncodedPeerID"}}
310-
}}}
311-
]
308+
"Key" : [{"/":{"bytes":"AXIUBPnagss"}}],
309+
"Provider" : {
310+
"Peer":{
311+
"ID": {"/":{"bytes":"EncodedPeerID"}},
312+
"Multiaddresses" [{"/":{"bytes":"Encoded Multiaddr"}}]
313+
},
314+
"ProviderProto": [
315+
{ "2304" : {} }
316+
]
317+
},
318+
"Timestamp" : 1589788800,
319+
"AdvisoryTTL": 3600,
320+
"Signature": {"/":{"bytes":"Encoded Signature"}}
312321
}}
313322
```
314323

315324
Response:
316325
```json
317-
{"ProvideResponse : {}"}
326+
{"ProvideResponse : {
327+
AdvisoryTTL: 3600
328+
}"}
318329
```
319330

320331
## Method Upgrade Paths

0 commit comments

Comments
 (0)