Skip to content

v0.11.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Jun 09:56
· 356 commits to main since this release
v0.11.0
158f286

Highlights ✨

This release brings a built-in IPFS retrieval client powered by Lassie. You can fetch any CID using the fetch API and receive a CAR stream to verify that the content matches the CID.

const response = await fetch(
  "ipfs://bafybeib36krhffuh3cupjml4re2wfxldredkir5wti3dttulyemre7xkni"
);
assert(response.ok);
const data = await response.arrayBuffer();
// data contains binary data in the CAR format

What's Changed

Full Changelog: v0.10.1...v0.11.0