UNPKG

@aut-labs/sdk

Version:

The TS/JS SDK package aims to make it easy for frontends/backends to integrate with Aut Smart Contracts

17 lines (16 loc) 508 B
import { BaseNFTModel } from "./baseNFTModel"; import { AutSocial } from "./social"; export declare class AutIDProperties { avatar: string; thumbnailAvatar: string; tokenId: string; socials: AutSocial[]; bio?: string; email?: string; timestamp: string; constructor(data: AutIDProperties); } export declare class AutIDNFT<T = AutIDProperties> extends BaseNFTModel<T> { static updateAutIDNFT(updatedUser: AutIDNFT): Partial<AutIDNFT>; constructor(data?: AutIDNFT<T>); }