interface UserPoints {
    breakdown: {
        socialAccounts: {
            discord: number;
            github: number;
            twitter: number;
        };
        web3Wallets: {
            [chain: string]: number;
        };
    };
    lastUpdated: Date;
    linkedSocials: {
        twitter?: string;
    };
    linkedWallets: string[];
    totalPoints: number;
    userId: string;
}

Properties

breakdown: {
    socialAccounts: {
        discord: number;
        github: number;
        twitter: number;
    };
    web3Wallets: {
        [chain: string]: number;
    };
}
lastUpdated: Date
linkedSocials: {
    twitter?: string;
}
linkedWallets: string[]
totalPoints: number
userId: string