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
{{ message }}
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
- Soon, go-ipfs, go-ipfs-api, java-ipfs-api, python-ipfs-api and others will implement it as well.
18
18
19
-
Send a PR to add a new one if you happen to find or write one.
19
+
Send in a PR if you find or write one!
20
20
21
21
# Badge
22
22
23
-
Include this badge in your readme if you make a new module that uses interface-stream-muxer API.
23
+
Include this badge in your readme if you make a new module that implements
24
+
interface-ipfs-core API.
24
25
25
26

26
27
@@ -66,7 +67,7 @@ A valid (read: that follows this interface) IPFS core implementation, must expos
66
67
67
68
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][]
68
69
69
-
If no `callback` is passed, a promise is returned.
70
+
If no `callback` is passed, a [promise][] is returned.
70
71
71
72
72
73
@@ -92,7 +93,7 @@ If no `callback` is passed, a promise is returned.
92
93
93
94
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][]
94
95
95
-
If no `callback` is passed, a promise is returned.
96
+
If no `callback` is passed, a [promise][] is returned.
96
97
97
98
98
99
@@ -117,7 +118,7 @@ If no `callback` is passed, a promise is returned.
117
118
118
119
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][]
119
120
120
-
If no `callback` is passed, a promise is returned.
121
+
If no `callback` is passed, a [promise][] is returned.
121
122
122
123
### `object.data`
123
124
@@ -137,7 +138,7 @@ If no `callback` is passed, a promise is returned.
137
138
138
139
`callback` must follow `function (err, data) {}` signature, where `err` is an error if the operation was not successful and `data` is a Buffer with the data that the MerkleDAG node contained.
139
140
140
-
If no `callback` is passed, a promise is returned.
141
+
If no `callback` is passed, a [promise][] is returned.
141
142
142
143
### `object.links`
143
144
@@ -158,7 +159,7 @@ If no `callback` is passed, a promise is returned.
158
159
159
160
`callback` must follow `function (err, links) {}` signature, where `err` is an error if the operation was not successful and `links` is an Array of [DAGLink](https://github.com/vijayee/js-ipfs-merkle-dag/blob/master/src/dag-node.js#L199-L203) objects.
160
161
161
-
If no `callback` is passed, a promise is returned.
162
+
If no `callback` is passed, a [promise][] is returned.
162
163
163
164
164
165
@@ -194,7 +195,7 @@ If no `callback` is passed, a promise is returned.
194
195
}
195
196
```
196
197
197
-
If no `callback` is passed, a promise is returned.
198
+
If no `callback` is passed, a [promise][] is returned.
198
199
199
200
200
201
@@ -225,7 +226,7 @@ If no `callback` is passed, a promise is returned.
225
226
226
227
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][] that resulted by the operation of adding a Link.
227
228
228
-
If no `callback` is passed, a promise is returned.
229
+
If no `callback` is passed, a [promise][] is returned.
229
230
230
231
231
232
@@ -252,7 +253,7 @@ If no `callback` is passed, a promise is returned.
252
253
253
254
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][] that resulted by the operation of adding a Link.
254
255
255
-
If no `callback` is passed, a promise is returned.
256
+
If no `callback` is passed, a [promise][] is returned.
256
257
257
258
258
259
@@ -279,7 +280,7 @@ If no `callback` is passed, a promise is returned.
279
280
280
281
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][] that resulted by the operation of adding a Link.
281
282
282
-
If no `callback` is passed, a promise is returned.
283
+
If no `callback` is passed, a [promise][] is returned.
283
284
284
285
285
286
@@ -306,8 +307,9 @@ If no `callback` is passed, a promise is returned.
306
307
307
308
`callback` must follow `function (err, node) {}` signature, where `err` is an error if the operation was not successful and `node` is a MerkleDAG node of the type [DAGNode][] that resulted by the operation of adding a Link.
308
309
309
-
If no `callback` is passed, a promise is returned.
310
+
If no `callback` is passed, a [promise][] is returned.
0 commit comments