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
v6.0.1
v6.0.0
chore: release version v6.0.0
v5.0.1
v5.0.0
v4.0.2
v4.0.1
v4.0.0
v3.0.0
Bug Fixes
- package: update cids to version 0.6.0 (c38363a)
- package: update multihashing-async to version 0.6.0 (4eaa791)
Features
- new IPLD Format API (dc19aa7)
BREAKING CHANGES
- The API is now async/await based
There are numerous changes, the most significant one is that the API
is no longer callback based, but it using async/await.
If you want to access the original JavaScript Ethereum object, it is
now stored in a property called _ethObj
. So if you e.g. called
deserialized.hash()
, you now have to call
deserialized._ethObj.hash()
.
For the full new API please see the IPLD Formats spec.