Setting Circles Profiles
Profile Data Model
Field
Type
Notes
Required
import type { Profile, GroupProfile } from '@aboutcircles/sdk-types';
const humanProfile: Profile = {
name: 'John Doe',
description: 'Web3 Developer',
imageUrl: 'https://example.com/image.jpg',
previewImageUrl: 'data:image/jpeg;base64,...',
location: 'Berlin, Germany',
geoLocation: [52.52, 13.4050],
extensions: { twitter: '@john' },
};
const groupProfile: GroupProfile = {
name: 'My Community Group',
symbol: 'MCG',//REQUIRED
description: 'A community group for local initiatives',
imageUrl: 'https://example.com/group-image.jpg',
};Creating & Pinning Profiles
Updating On-Chain Metadata
Group Profiles and Registration
Preview Image Requirements
Reading Profiles Back
Last updated
Was this helpful?