👤Profile
Assuming that you've successfully finished Setting up Ceramic, you can now use it to read and write the user's profile.
BasicProfile
While more data can be stored in the user profile using Ceramic, we use the following profile structure in Protico.
Parameters description
name
Username
Yes
description
User bio showing in their profile
Yes
avatar_url
User profile picture's url
Yes
public_key
User public key, used for message encryption
Yes
isENSVerified
Whether the username has been verified as an ENS associated with the address
Yes
id
User Ceramic ID Read only
Yes
Getting a user's profile
Parameters description
address
Wallet address associated with the user
No
Updating a user's profile
You can update any part of the user's profile by passing a partial BasicProfile
object to the update
function:
Resetting a user's profile
This will completely reset the user's profile by replacing it with a default one.
Last updated