Interface AchievementItem

interface AchievementItem {
    characterId: number;
    createdAt: string;
    currentValue: number;
    info: AchievementInfo;
    mintedAt: null | string;
    name: string;
    stat: {
        mintedCount: number;
    };
    status: "INACTIVE" | "MINTABLE" | "MINTED";
    tokenId: number;
    tokenNumber: number;
    transactionHash: null | `0x${string}`;
    updatedAt: string;
}

Properties

characterId: number
createdAt: string
currentValue: number
mintedAt: null | string
name: string
stat: {
    mintedCount: number;
}

Type declaration

  • mintedCount: number
status: "INACTIVE" | "MINTABLE" | "MINTED"
tokenId: number
tokenNumber: number
transactionHash: null | `0x${string}`
updatedAt: string

Generated using TypeDoc