ipld-ethereum
Advanced tools
Changelog
5.0.1 (2020-08-05)
<a name="5.0.0"></a>
Changelog
4.0.0 (2019-05-10)
Previous versions returned a base58 encoded string when toString()
/
toBaseEncodedString()
was called on a CIDv1. It now returns a base32
encoded string.
<a name="3.0.0"></a>
Changelog
3.0.0 (2019-05-08)
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].
<a name="2.0.3"></a>