Changelog
All notable changes to this project will be documented in this page.
This page collects any major change to the Lens Storage Node. While we will try to keep breaking changes to a minimum, we may need to introduce them as we iterate on the implementations.
26 February 2025
New Package Home
Install the new package @lens-chain/storage-client to interact with the Lens Storage Nodes.
Instantiate the client with the following code:
-import { StorageClient, testnet } from "@lens-protocol/storage-node-client";+import { StorageClient } from "@lens-chain/storage-client";-const storageClient = StorageClient.create(testnet);+const storageClient = StorageClient.create();
No other changes are required to use the new package.