Type alias AccountMetadataDetails

AccountMetadataDetails: {
    attributes?: MetadataAttribute[];
    bio?: Markdown;
    coverPicture?: URI;
    id: string;
    name?: string;
    picture?: URI;
}

Type declaration

  • Optional attributes?: MetadataAttribute[]

    A bag of attributes that can be used to store any kind of metadata that is not currently supported by the standard. Over time, common attributes will be added to the standard and their usage as arbitrary attributes will be discouraged.

  • Optional bio?: Markdown

    The Account bio as markdown.

  • Optional coverPicture?: URI

    The Account cover picture.

  • id: string

    A unique identifier that in storages like IPFS ensures the uniqueness of the metadata URI. Use a UUID if unsure.

  • Optional name?: string

    The Account display name.

  • Optional picture?: URI

    The Account picture.