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.
and `options` is an Object that can contain the following properties:
54
54
55
-
- Buffer, the raw Buffer of the cid
56
-
- CID, a CID instance
57
-
- String, the base58 encoded version of the multihash
55
+
-`cid` - a [cid][cid] which can be passed as:
56
+
- Buffer, the raw Buffer of the cid
57
+
- CID, a CID instance
58
+
- String, the base58 encoded version of the multihash
59
+
- format
60
+
- mhtype
61
+
- mhlen
62
+
- version
63
+
64
+
if no options are passed, it defaults to `{ format: 'dag-pb', mhtype: 'sha2-256', version: 0 }`
65
+
66
+
**Note:** If you pass a [`Block`][block] instance as the block parameter, you don't need to pass options, as the block instance will carry the CID value as a property.
58
67
59
68
`callback` has the signature `function (err, block) {}`, where `err` is an error if the operation was not successful and `block` is a [Block][block] type object, containing both the data and the hash of the block.
60
69
@@ -63,19 +72,36 @@ If no `callback` is passed, a promise is returned.
0 commit comments