diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 00000000..d401a774
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,11 @@
+version: 2
+updates:
+- package-ecosystem: npm
+ directory: "/"
+ schedule:
+ interval: daily
+ time: "10:00"
+ open-pull-requests-limit: 20
+ commit-message:
+ prefix: "deps"
+ prefix-development: "deps(dev)"
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
new file mode 100644
index 00000000..f8966ba9
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,29 @@
+## Title
+
+
+
+## Description
+
+
+
+## Notes & open questions
+
+
+
+## Change checklist
+
+- [ ] I have performed a self-review of my own code
+- [ ] I have made corresponding changes to the documentation if necessary (this includes comments as well)
+- [ ] I have added tests that prove my fix is effective or that my feature works
diff --git a/.github/workflows/js-test-and-release.yml b/.github/workflows/js-test-and-release.yml
new file mode 100644
index 00000000..1d7ff79c
--- /dev/null
+++ b/.github/workflows/js-test-and-release.yml
@@ -0,0 +1,27 @@
+name: test & maybe release
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ workflow_dispatch:
+
+permissions:
+ contents: write
+ id-token: write
+ packages: write
+ pull-requests: write
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }}
+ cancel-in-progress: true
+
+jobs:
+ js-test-and-release:
+ uses: pl-strflt/uci/.github/workflows/js-test-and-release.yml@v0.0
+ secrets:
+ DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
+ DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+ UCI_GITHUB_TOKEN: ${{ secrets.UCI_GITHUB_TOKEN }}
diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml
new file mode 100644
index 00000000..bd00f090
--- /dev/null
+++ b/.github/workflows/semantic-pull-request.yml
@@ -0,0 +1,12 @@
+name: Semantic PR
+
+on:
+ pull_request_target:
+ types:
+ - opened
+ - edited
+ - synchronize
+
+jobs:
+ main:
+ uses: pl-strflt/.github/.github/workflows/reusable-semantic-pull-request.yml@v0.3
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 00000000..16d65d72
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,13 @@
+name: Close and mark stale issue
+
+on:
+ schedule:
+ - cron: '0 0 * * *'
+
+permissions:
+ issues: write
+ pull-requests: write
+
+jobs:
+ stale:
+ uses: pl-strflt/.github/.github/workflows/reusable-stale-issue.yml@v0.3
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..7ad9e674
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+node_modules
+build
+dist
+.docs
+.coverage
+node_modules
+package-lock.json
+yarn.lock
+.vscode
diff --git a/CODEOWNERS b/CODEOWNERS
new file mode 100644
index 00000000..5d8e69df
--- /dev/null
+++ b/CODEOWNERS
@@ -0,0 +1 @@
+* @ipfs/helia-dev
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..20ce483c
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,4 @@
+This project is dual licensed under MIT and Apache-2.0.
+
+MIT: https://www.opensource.org/licenses/mit
+Apache-2.0: https://www.apache.org/licenses/license-2.0
diff --git a/LICENSE-APACHE b/LICENSE-APACHE
new file mode 100644
index 00000000..14478a3b
--- /dev/null
+++ b/LICENSE-APACHE
@@ -0,0 +1,5 @@
+Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
diff --git a/LICENSE-MIT b/LICENSE-MIT
new file mode 100644
index 00000000..72dc60d8
--- /dev/null
+++ b/LICENSE-MIT
@@ -0,0 +1,19 @@
+The MIT License (MIT)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..662255c0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,46 @@
+
+
+# helia-verified-fetch
+
+[![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech)
+[![Discuss](https://img.shields.io/discourse/https/discuss.ipfs.tech/posts.svg?style=flat-square)](https://discuss.ipfs.tech)
+[![codecov](https://img.shields.io/codecov/c/github/ipfs/helia-verified-fetch.svg?style=flat-square)](https://codecov.io/gh/ipfs/helia-verified-fetch)
+[![CI](https://img.shields.io/github/actions/workflow/status/ipfs/helia-verified-fetch/js-test-and-release.yml?branch=main\&style=flat-square)](https://github.com/ipfs/helia-verified-fetch/actions/workflows/js-test-and-release.yml?query=branch%3Amain)
+
+> A fetch-like API for obtaining verified & trustless IPFS content on the web
+
+## About
+
+This repo contains a server implementation of the IPFS [Delegated Routing V1 HTTP API](https://specs.ipfs.tech/routing/http-routing-v1/) along with a client that can be used to interact with any compliant server implementation.
+
+# Packages
+
+- [`/packages/interop`](./packages/interop) Interop tests for Helia
+- [`/packages/verified-fetch`](./packages/verified-fetch) A fetch-like API for obtaining verified & trustless IPFS content on the web.
+
+# API Docs
+
+-
+
+# License
+
+Licensed under either of
+
+- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / )
+- MIT ([LICENSE-MIT](LICENSE-MIT) / )
+
+# Contribute
+
+Contributions welcome! Please check out [the issues](https://github.com/ipfs/helia-verified-fetch/issues).
+
+Also see our [contributing document](https://github.com/ipfs/community/blob/master/CONTRIBUTING_JS.md) for more information on how we work, and about contributing in general.
+
+Please be aware that all interactions related to this repo are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
+
+Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
+
+[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)
diff --git a/hello.txt b/hello.txt
deleted file mode 100644
index e69de29b..00000000
diff --git a/package.json b/package.json
new file mode 100644
index 00000000..9b06f99a
--- /dev/null
+++ b/package.json
@@ -0,0 +1,132 @@
+{
+ "name": "helia-verified-fetch",
+ "version": "1.0.0",
+ "description": "A fetch-like API for obtaining verified & trustless IPFS content on the web",
+ "license": "Apache-2.0 OR MIT",
+ "homepage": "https://github.com/ipfs/helia-verified-fetch#readme",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/ipfs/helia-verified-fetch.git"
+ },
+ "bugs": {
+ "url": "https://github.com/ipfs/helia-verified-fetch/issues"
+ },
+ "keywords": [
+ "ipfs"
+ ],
+ "private": true,
+ "release": {
+ "branches": [
+ "main"
+ ],
+ "plugins": [
+ [
+ "@semantic-release/commit-analyzer",
+ {
+ "preset": "conventionalcommits",
+ "releaseRules": [
+ {
+ "breaking": true,
+ "release": "major"
+ },
+ {
+ "revert": true,
+ "release": "patch"
+ },
+ {
+ "type": "feat",
+ "release": "minor"
+ },
+ {
+ "type": "fix",
+ "release": "patch"
+ },
+ {
+ "type": "docs",
+ "release": "patch"
+ },
+ {
+ "type": "test",
+ "release": "patch"
+ },
+ {
+ "type": "deps",
+ "release": "patch"
+ },
+ {
+ "scope": "no-release",
+ "release": false
+ }
+ ]
+ }
+ ],
+ [
+ "@semantic-release/release-notes-generator",
+ {
+ "preset": "conventionalcommits",
+ "presetConfig": {
+ "types": [
+ {
+ "type": "feat",
+ "section": "Features"
+ },
+ {
+ "type": "fix",
+ "section": "Bug Fixes"
+ },
+ {
+ "type": "chore",
+ "section": "Trivial Changes"
+ },
+ {
+ "type": "docs",
+ "section": "Documentation"
+ },
+ {
+ "type": "deps",
+ "section": "Dependencies"
+ },
+ {
+ "type": "test",
+ "section": "Tests"
+ }
+ ]
+ }
+ }
+ ],
+ "@semantic-release/changelog",
+ "@semantic-release/npm",
+ "@semantic-release/github",
+ "@semantic-release/git"
+ ]
+ },
+ "scripts": {
+ "reset": "aegir run clean && aegir clean **/node_modules **/package-lock.json",
+ "test": "aegir run test",
+ "test:node": "aegir run test:node",
+ "test:chrome": "aegir run test:chrome",
+ "test:chrome-webworker": "aegir run test:chrome-webworker",
+ "test:firefox": "aegir run test:firefox",
+ "test:firefox-webworker": "aegir run test:firefox-webworker",
+ "test:electron-main": "aegir run test:electron-main",
+ "test:electron-renderer": "aegir run test:electron-renderer",
+ "clean": "aegir run clean",
+ "generate": "aegir run generate",
+ "build": "aegir run build",
+ "lint": "aegir run lint",
+ "dep-check": "aegir run dep-check",
+ "doc-check": "aegir run doc-check",
+ "release": "run-s build docs:no-publish npm:release docs",
+ "npm:release": "aegir release",
+ "docs": "aegir docs",
+ "docs:no-publish": "aegir docs --publish false"
+ },
+ "devDependencies": {
+ "aegir": "^42.2.0",
+ "npm-run-all": "^4.1.5"
+ },
+ "type": "module",
+ "workspaces": [
+ "packages/*"
+ ]
+}
diff --git a/packages/interop/.aegir.js b/packages/interop/.aegir.js
new file mode 100644
index 00000000..226c2746
--- /dev/null
+++ b/packages/interop/.aegir.js
@@ -0,0 +1,46 @@
+import getPort from 'aegir/get-port'
+import { createServer } from 'ipfsd-ctl'
+import * as kuboRpcClient from 'kubo-rpc-client'
+
+/** @type {import('aegir').PartialOptions} */
+export default {
+ test: {
+ files: './dist/src/*.spec.js',
+ before: async (options) => {
+ if (options.runner !== 'node') {
+ const ipfsdPort = await getPort()
+ const ipfsdServer = await createServer({
+ host: '127.0.0.1',
+ port: ipfsdPort
+ }, {
+ ipfsBin: (await import('kubo')).default.path(),
+ kuboRpcModule: kuboRpcClient,
+ ipfsOptions: {
+ config: {
+ Addresses: {
+ Swarm: [
+ "/ip4/0.0.0.0/tcp/0",
+ "/ip4/0.0.0.0/tcp/0/ws"
+ ]
+ }
+ }
+ }
+ }).start()
+
+ return {
+ env: {
+ IPFSD_SERVER: `http://127.0.0.1:${ipfsdPort}`
+ },
+ ipfsdServer
+ }
+ }
+
+ return {}
+ },
+ after: async (options, beforeResult) => {
+ if (options.runner !== 'node') {
+ await beforeResult.ipfsdServer.stop()
+ }
+ }
+ }
+}
diff --git a/packages/interop/CHANGELOG.md b/packages/interop/CHANGELOG.md
new file mode 100644
index 00000000..7856af91
--- /dev/null
+++ b/packages/interop/CHANGELOG.md
@@ -0,0 +1,215 @@
+# Changelog
+
+## [5.0.0](https://github.com/ipfs/helia/compare/interop-v4.0.0...interop-v5.0.0) (2024-01-31)
+
+
+### ⚠ BREAKING CHANGES
+
+* to support paths in `@helia/ipns`, the return type of `ipns.resolve` is now `{ path: string, cid: CID }` instead of just `CID`
+
+### Features
+
+* support paths in @helia/ipns ([#410](https://github.com/ipfs/helia/issues/410)) ([ca8d5eb](https://github.com/ipfs/helia/commit/ca8d5ebdf587574c7fb84517b558226c3479caa9))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * dependencies
+ * @helia/block-brokers bumped from ^2.0.0 to ^2.0.1
+ * @helia/http bumped from ^1.0.0 to ^1.0.1
+ * @helia/ipns bumped from ^5.0.0 to ^6.0.0
+ * helia bumped from ^4.0.0 to ^4.0.1
+
+## [4.0.0](https://github.com/ipfs/helia/compare/interop-v3.0.1...interop-v4.0.0) (2024-01-24)
+
+
+### ⚠ BREAKING CHANGES
+
+* remove gossipsub from default libp2p services ([#401](https://github.com/ipfs/helia/issues/401))
+* `helia.routing` is the default routing used, the `libp2p` routing has been removed as it is redundant
+* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module
+
+### Features
+
+* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))
+* export binary from @helia/interop ([#384](https://github.com/ipfs/helia/issues/384)) ([3477b27](https://github.com/ipfs/helia/commit/3477b2748d44a862e8afeae1a7a2668cdd8a7100))
+* use helia router for IPNS put/get ([#387](https://github.com/ipfs/helia/issues/387)) ([ce74026](https://github.com/ipfs/helia/commit/ce740268e83f50e6f144b74969a98d54005cd852))
+
+
+### Bug Fixes
+
+* include aegir config in interop and run from install dir ([#389](https://github.com/ipfs/helia/issues/389)) ([a2229bd](https://github.com/ipfs/helia/commit/a2229bd79d5c8b805604bb24bad222462a9ed8cc))
+* remove gossipsub from default libp2p services ([#401](https://github.com/ipfs/helia/issues/401)) ([99c94f4](https://github.com/ipfs/helia/commit/99c94f4b85c4ed826a6195207e3545cbbc87a6d1))
+* update ipns module to v9 and fix double verification of records ([#396](https://github.com/ipfs/helia/issues/396)) ([f2853f8](https://github.com/ipfs/helia/commit/f2853f8bd5bdcee8ab7a685355b0be47f29620e0))
+
+
+### Dependencies
+
+* bump kubo from 0.25.0 to 0.26.0 ([#400](https://github.com/ipfs/helia/issues/400)) ([a9c55f0](https://github.com/ipfs/helia/commit/a9c55f0e672e439cbcc6b938963ab150997c6e45))
+* The following workspace dependencies were updated
+ * dependencies
+ * @helia/block-brokers bumped from ^1.0.0 to ^2.0.0
+ * @helia/car bumped from ^2.0.1 to ^3.0.0
+ * @helia/dag-cbor bumped from ^2.0.1 to ^3.0.0
+ * @helia/dag-json bumped from ^2.0.1 to ^3.0.0
+ * @helia/http bumped from ^0.9.0 to ^1.0.0
+ * @helia/interface bumped from ^3.0.1 to ^4.0.0
+ * @helia/ipns bumped from ^4.0.0 to ^5.0.0
+ * @helia/json bumped from ^2.0.1 to ^3.0.0
+ * @helia/mfs bumped from ^2.0.1 to ^3.0.0
+ * @helia/routers bumped from ^0.0.0 to ^1.0.0
+ * @helia/strings bumped from ^2.0.1 to ^3.0.0
+ * @helia/unixfs bumped from ^2.0.1 to ^3.0.0
+ * helia bumped from ^3.0.1 to ^4.0.0
+
+## [3.0.1](https://github.com/ipfs/helia/compare/interop-v3.0.0...interop-v3.0.1) (2024-01-16)
+
+
+### Bug Fixes
+
+* update type import path ([#379](https://github.com/ipfs/helia/issues/379)) ([ece384a](https://github.com/ipfs/helia/commit/ece384aab5e1c95857aa4aa07b86656710d8ca35))
+
+## [3.0.0](https://github.com/ipfs/helia/compare/interop-v2.0.0...interop-v3.0.0) (2024-01-09)
+
+
+### ⚠ BREAKING CHANGES
+
+* uses multiformats v13 and helia v3
+* uses multiformats v13 and helia v3
+* uses multiformats v13 and helia v3
+* uses multiformats v13 and helia v3
+* uses multiformats v13 and helia v3
+* uses multiformats v13 and helia v3, renames `dht` routing to `libp2p`
+* uses multiformats v13
+* uses multiformats v13 and helia v3
+
+### Features
+
+* update helia to v3 and multiformats to v13 ([9f7dc0a](https://github.com/ipfs/helia/commit/9f7dc0a0581524531501fc062fefb6ba26d99c02))
+* update helia to v3 and multiformats to v13 ([#147](https://github.com/ipfs/helia/issues/147)) ([001247c](https://github.com/ipfs/helia/commit/001247c6fc38ff3d810736371de901e5e1099f26))
+* update helia to v3 and multiformats to v13 ([#167](https://github.com/ipfs/helia/issues/167)) ([a0381b9](https://github.com/ipfs/helia/commit/a0381b95051bbf3edfa4f53e0ae2d5f43c1e4382))
+* update helia to v3 and multiformats to v13 ([#45](https://github.com/ipfs/helia/issues/45)) ([f078447](https://github.com/ipfs/helia/commit/f078447b6eba4c3d404d62bb930757aa1c0efe74))
+* update helia to v3 and multiformats to v13 ([#45](https://github.com/ipfs/helia/issues/45)) ([3c7d9d4](https://github.com/ipfs/helia/commit/3c7d9d4a8e74e1a808c265fbc6ecbdc24f0f3da9))
+* update helia to v3 and multiformats to v13 ([#46](https://github.com/ipfs/helia/issues/46)) ([e3dc586](https://github.com/ipfs/helia/commit/e3dc5867ffc4de0dd3b05b56eb1b0ce98d50dcb1))
+* update helia to v3 and multiformats to v13 ([#52](https://github.com/ipfs/helia/issues/52)) ([6405c34](https://github.com/ipfs/helia/commit/6405c3487879614dc4dd7308b15c946d644e0488))
+* update helia to v3 and multiformats to v13 ([#87](https://github.com/ipfs/helia/issues/87)) ([ae7cbc9](https://github.com/ipfs/helia/commit/ae7cbc9a16a267cb0f6d7cecd381f919430afaea))
+
+
+### Bug Fixes
+
+* create @helia/block-brokers package ([#341](https://github.com/ipfs/helia/issues/341)) ([#342](https://github.com/ipfs/helia/issues/342)) ([2979147](https://github.com/ipfs/helia/commit/297914756fa06dc0c28890a2654d1159d16689c2))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * @helia/block-brokers bumped from ~0.0.0 to ~1.0.0
+ * @helia/car bumped from ^2.0.0 to ^2.0.1
+ * @helia/dag-cbor bumped from ^2.0.0 to ^2.0.1
+ * @helia/dag-json bumped from ^2.0.0 to ^2.0.1
+ * @helia/interface bumped from ^3.0.0 to ^3.0.1
+ * @helia/json bumped from ^2.0.0 to ^2.0.1
+ * @helia/mfs bumped from ^2.0.0 to ^2.0.1
+ * @helia/strings bumped from ^2.0.0 to ^2.0.1
+ * @helia/unixfs bumped from ^2.0.0 to ^2.0.1
+ * helia bumped from ^3.0.0 to ^3.0.1
+
+## [2.0.0](https://github.com/ipfs/helia/compare/interop-v1.1.0...interop-v2.0.0) (2024-01-07)
+
+
+### ⚠ BREAKING CHANGES
+
+* `helia.pin.add` and `helia.pin.rm` now return `AsyncGenerator`
+* The libp2p API has changed in a couple of places - please see the [upgrade guide](https://github.com/libp2p/js-libp2p/blob/main/doc/migrations/v0.46-v1.0.0.md)
+
+### deps
+
+* updates to libp2p v1 ([#320](https://github.com/ipfs/helia/issues/320)) ([635d7a2](https://github.com/ipfs/helia/commit/635d7a2938111ccc53f8defbd9b8f8f8ea3e8e6a))
+
+
+### Features
+
+* iterable pinning ([#231](https://github.com/ipfs/helia/issues/231)) ([c15c774](https://github.com/ipfs/helia/commit/c15c7749294d3d4aea5aef70544d088250336798))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * @helia/interface bumped from ^2.1.0 to ^3.0.0
+ * helia bumped from ^2.1.0 to ^3.0.0
+
+## [1.1.0](https://www.github.com/ipfs/helia/compare/interop-v1.0.3...interop-v1.1.0) (2023-11-06)
+
+
+### Features
+
+* GatewayBlockBroker prioritizes & tries all gateways ([#281](https://www.github.com/ipfs/helia/issues/281)) ([9bad21b](https://www.github.com/ipfs/helia/commit/9bad21bd59fe6d1ba4a137db5a46bd2ead5238c3))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * @helia/interface bumped from ^2.0.0 to ^2.1.0
+ * helia bumped from ^2.0.3 to ^2.1.0
+
+### [1.0.3](https://www.github.com/ipfs/helia/compare/interop-v1.0.2...interop-v1.0.3) (2023-09-18)
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * helia bumped from ^2.0.2 to ^2.0.3
+
+### [1.0.2](https://www.github.com/ipfs/helia/compare/interop-v1.0.1...interop-v1.0.2) (2023-09-14)
+
+
+### Bug Fixes
+
+* **kubo:** ⬆️ Upgrading go-ipfs to kubo ([#251](https://www.github.com/ipfs/helia/issues/251)) ([963a7a2](https://www.github.com/ipfs/helia/commit/963a7a21774703a105c865a5b6db670f278eec73))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * helia bumped from ^2.0.1 to ^2.0.2
+
+### [1.0.1](https://www.github.com/ipfs/helia/compare/interop-v1.0.0...interop-v1.0.1) (2023-08-16)
+
+
+### Bug Fixes
+
+* enable dcutr by default ([#239](https://www.github.com/ipfs/helia/issues/239)) ([7431f09](https://www.github.com/ipfs/helia/commit/7431f09aef332dc142a5f7c2c59c9410e4529a92))
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * helia bumped from ^2.0.0 to ^2.0.1
+
+## [1.0.0](https://www.github.com/ipfs/helia/compare/interop-v0.0.0...interop-v1.0.0) (2023-08-16)
+
+
+### ⚠ BREAKING CHANGES
+
+* libp2p has been updated to 0.46.x
+
+### Dependencies
+
+* **dev:** bump go-ipfs from 0.21.0 to 0.22.0 ([#228](https://www.github.com/ipfs/helia/issues/228)) ([2e8e447](https://www.github.com/ipfs/helia/commit/2e8e447f782745e517e935cd1bb3312db6384a5b))
+* update libp2p to 0.46.x ([#215](https://www.github.com/ipfs/helia/issues/215)) ([65b68f0](https://www.github.com/ipfs/helia/commit/65b68f071d04d2f6f0fcf35938b146706b1a3cd0))
+
+
+
+### Dependencies
+
+* The following workspace dependencies were updated
+ * devDependencies
+ * @helia/interface bumped from ^1.0.0 to ^2.0.0
+ * helia bumped from ^1.0.0 to ^2.0.0
diff --git a/packages/interop/LICENSE b/packages/interop/LICENSE
new file mode 100644
index 00000000..20ce483c
--- /dev/null
+++ b/packages/interop/LICENSE
@@ -0,0 +1,4 @@
+This project is dual licensed under MIT and Apache-2.0.
+
+MIT: https://www.opensource.org/licenses/mit
+Apache-2.0: https://www.apache.org/licenses/license-2.0
diff --git a/packages/interop/LICENSE-APACHE b/packages/interop/LICENSE-APACHE
new file mode 100644
index 00000000..14478a3b
--- /dev/null
+++ b/packages/interop/LICENSE-APACHE
@@ -0,0 +1,5 @@
+Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
diff --git a/packages/interop/LICENSE-MIT b/packages/interop/LICENSE-MIT
new file mode 100644
index 00000000..72dc60d8
--- /dev/null
+++ b/packages/interop/LICENSE-MIT
@@ -0,0 +1,19 @@
+The MIT License (MIT)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/packages/interop/README.md b/packages/interop/README.md
new file mode 100644
index 00000000..28ac686a
--- /dev/null
+++ b/packages/interop/README.md
@@ -0,0 +1,58 @@
+