ccip-router 0.5.2 → 0.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -651,27 +651,6 @@ Tests use `SQLiteDB(':memory:')` directly (bypassing the runtime singleton) and
651
651
 
652
652
  ---
653
653
 
654
- ## Roadmap
655
-
656
- ### v0.3.0 — IPFS browser resolution
657
- Native ENS browsers (Brave, eth.link) resolve `contenthash` directly on-chain — they don't follow CCIP-Read. v0.3.0 will add an **IPFS + Browser resolution** admin panel that closes this gap:
658
-
659
- - Pin a file or CID to IPFS (via Pinata) from the admin panel
660
- - Set the resulting CID as the ENS name's `contenthash` on-chain (MetaMask, no stored key)
661
- - Manage multiple names from one panel
662
-
663
- Combined with `withEns()` (CCIP-Read, dynamic records) this makes the gateway handle both resolution paths:
664
-
665
- | Path | Who | How |
666
- |---|---|---|
667
- | Static pages | Brave / native ENS browsers | `contenthash` on-chain → IPFS |
668
- | Dynamic data | dapps / smart contracts | `offchainLookup` → CCIP-Read → `withEns()` |
669
-
670
- ### v0.4.0+ — Phase 2 / Phase 3
671
- See [GATEWAY_DECENTRALIZATION_PLAN.md](https://github.com/Echo-Merlini/ccip-router) for the full decentralisation roadmap (chain as source of truth, incentivised node network).
672
-
673
- ---
674
-
675
654
  ## Related
676
655
 
677
656
  - [ens-boiler](https://github.com/Echo-Merlini/ens-boiler) — opinionated ENS agent stack built on `ccip-router`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccip-router",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "description": "The coordination layer CCIP-Read was missing. Peer sync, deduplication, and cryptographic attestation for any CCIP-Read gateway.",
5
5
  "type": "module",
6
6
  "main": "./dist/lib.js",