πΎUsing avatars
An avatar represents a Circles user.
The SDK is built around the concept of avatars. An avatar is a Circles user and is used to interact with other Avatars.
For new Circles users, you would require them to Sign up.
For existing Circles users, you can simply get exisiting avatars by address.
Creating a new avatar
You will need a Metamask account with some xDAI to be able to interact with contracts and follow along the steps. Make sure you configured MetaMask with the correct ChainID (Gnosis Chain or Chiado) before you continue.
To register a new Human
You can call registerHuman()
method to sign the connected MetaMask account up for Circles and get your avatar address.
There are different types of avatars within Circles. A human
avatar is the most common and suitable for any person. It differentiates itself from all other avatar types in that it can mint 24 new personal Circles per day.
In v2, all avatars need a profile CID. You can either bring you own (CID) and need to take care that it's available ...
... or fill in the Profile
object and implicitly use the Circles pinning service to pin it:
Get an existing avatar
If you have the address of an existing avatar, you can get an instance by calling sdk.getAvatar(address)
. It returns either an AvatarInterface
instance or throws an error if the avatar can't be found.
You can supply any avatar address to the function, even if you don't have the key for it. However, if you just want to query the data with the @circles-sdk/data
package you can refer to this part of documentation.
Different Avatar types
Apart from Human
Avatar you can also create Group
and Orangization
Avatar types. The technical details of same will be mentioned in later sections of docs. But here's how you can sign up as Group or Organization Avatar.
One account can only sign up as one avatar. E.g. if an account is already signed up as human then it can't sign-up as organization.
Organizations can be used e.g. by shop owners to receive payments in Circles. They are available in Circles v1 and v2. Organizations can't mint new Circles.
Read and update a Profile
To read and update profiles, you can get an Avatar
object and then use it's getProfile()
and updateProfile()
methods. These methods work for all avatar types.
If you want to store a profile picture, make sure it adheres to the Circles Profiles specification.
Next steps
The next page will show you how to use the avatar instance to query essential data like the avatar's Circles balance, it's trust relations and transaction history. On the page after, we'll use it to interact with other avatars.
Circles SDK Avatar Implementation
For complete implementation for CirclesSDK Avatar check out the circles implementation : https://github.com/vanshika-srivastava/circles-vite-app/blob/circles-sdk-v0.9.0/src/circles-components/circlesonboarding.jsx
Last updated