This repository was archived by the owner on Aug 11, 2021. It is now read-only.
v2.0.0
Bug Fixes
- use binary blobs directly (6fc00cd)
BREAKING CHANGES
- Everyone calling the functions of
resolveneed to
pass in the binary data instead of an IPFS block.
So if your input is an IPFS block, the code changes from
resolver.resolve(block, path, (err, result) => {…}
to
resolver.resolve(block.data, path, (err, result) => {…}