Interface TokenCheck

interface TokenCheck {
    risks: {
        description: string;
        level: string;
        name: string;
        score: number;
    }[];
    score: number;
    tokenProgram: string;
    tokenType: string;
}

Properties

risks: { description: string; level: string; name: string; score: number }[]
score: number
tokenProgram: string
tokenType: string