Changelog

All notable changes to this project will be documented in this file.


This document collects any major change to the Lens v3 from Dev Preview to the Mainnet launch. While we will try to keep breaking changes to a minimal, we may need to introduce them as we iterate on the implementations.

26 November 2024

Unreleased

List of changes that are currently in progress and will be released soon.

25 November 2024

Lens API Testnet

Lens API Testnet is now available for developers to start building and testing their applications.

Changed

Explicit Authentication Roles

The challenge mutation now requires explicit authentication roles to be passed in the request.

mutation {  challenge(    request: {-      app: "<app-address>"-      account: "<account-address>"-      signedBy: "<owner-address>"+      accountOwner: {+        app: "<app-address>"+        account: "<account-address>"+        owner: "<owner-address>"+      }    }  ) {    __typename    id    text  }}

12 November 2024

Developer Preview Announcement