Creation of groups
You need to pass the profile and the address of the mint policy contract when calling the function.
There are some limits from the profile service:
Profile Name Length:
The maximum allowed length for profile names is 36 characters (
config.maxNameLength
). This is enforced in thevalidateProfile
function, where it checks if the name exceeds this limit.
Profile Description Length:
The maximum allowed length for descriptions is 500 characters (
config.descriptionLength
), and thevalidateProfile
function checks this.
Image URL Length:
The maximum allowed length for image URLs is 2000 characters (
config.imageUrlLength
), validated in the same function.
Image Validation:
The code limits image size to 150 KB (
config.maxImageSizeKB
), and images must be exactly 256x256 pixels (config.imageDimension
).The supported image formats are PNG, JPEG, and GIF.
Circles Profile specs
Incase, you want to check how to manage circles profiles, you can simply checkout this guide :
Last updated