This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
Releases: ipld/js-ipld-ethereum
Releases · ipld/js-ipld-ethereum
v2.0.1
v2.0.0
Bug Fixes
- use binary blobs directly (e69f539)
BREAKING CHANGES
- Everyone calling the functions of
resolve
need 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) => {…}