Guides

Set default profile

📘

Full code example

https://github.com/lens-protocol/api-examples/blob/master/src/profile/set-default-profile.ts

📘

This action can be gasless

https://docs.lens.xyz/docs/broadcast-transaction) You can use the broadcast logic to send this gasless. Please note this is fully unlocked on mumbai but on polygon it is only whitelisted apps who can use it.

This API call allows you to get the typed data to then call the withSig method to set your default lens profile.

🚧

This request is protected by authentication

hint: this means it requires an x-access-token header put in the request with your authentication token.

Typed data is a way to try to show the users what they are signing in a more readable format. You can read more about it here.

Constructing that type of data is normally difficult. On the type data, you also need to get the nonce, deadline, contract version, contract address, chain id, and the name of the contract for the signature to be able to be signed and verified.

When using this API, the server checks every detail before it generates the typed data. For example: if you try to create typed data on an always-failing transaction, the server will throw an error in a human-readable form. This is great for debugging but also saves issues with users sending always failing transactions or a mismatch of a bad request.

We will show you the typed data approach using ethers and the API side by side. Keep in mind that with the typed data approach you use the withSig methods which can be called by you with your signature or with that signature any relay could call it for you on your behalf allowing gasless transactions.

API Design

mutation CreateSetDefaultProfileTypedData {
  createSetDefaultProfileTypedData(request: { profileId: "0x01"}) {
    id
    expiresAt
    typedData {
      types {
        SetDefaultProfileWithSig {
          name
          type
        }
      }
      domain {
        name
        chainId
        version
        verifyingContract
      }
      value {
        nonce
        deadline
        wallet
        profileId
      }
    }
  }
}
{
  "data": {
    "createSetDefaultProfileTypedData": {
      "id": "7a83b5df-777c-469c-be31-53a59c9a61a8",
      "expiresAt": "2022-04-21T14:50:21.000Z",
      "typedData": {
        "types": {
          "SetDefaultProfileWithSig": [
            {
              "name": "wallet",
              "type": "address"
            },
            {
              "name": "profileId",
              "type": "uint256"
            },
            {
              "name": "nonce",
              "type": "uint256"
            },
            {
              "name": "deadline",
              "type": "uint256"
            }
          ]
        },
        "domain": {
          "name": "Lens Protocol Profiles",
          "chainId": 80001,
          "version": "1",
          "verifyingContract": "0x4BF0c7AD32Fd2d32089790a54485e23f5C7736C0"
        },
        "value": {
          "nonce": 26,
          "deadline": 1650552621,
          "wallet": "0xD8c789626CDb461ec9347f26DDbA98F9383aa457",
          "profileId": "0x01"
        }
      }
    }
  }
}
type Mutation {
   createSetDefaultProfileTypedData(
    request: CreateSetDefaultProfileRequest!
  ): SetDefaultProfileBroadcastItemResult!
}

Hooking in without using the type data

You may not want to go down the typed data with the signature route and just send the transaction directly from the client to the blockchain without any API call to map the data for you. You will need to do the encoding and validation yourself if you go down that approach. This is out of scope for the API documentation as would have been explained and showed how to do it in the contract docs. This tries to advise the same practice as what seaport on OpenSea are doing alongside a lot of other projects which tries to improve the visibility of what the user is signing.

Using LensClient SDK

// lensClient is authenticated

const typedDataResult = await lensClient.profile.createSetDefaultProfileTypedData({
  profileId: "0x0635", // must be a profile that authenticated address owns
});