manifold/common/user.ts
2022-01-18 16:53:07 -06:00

26 lines
551 B
TypeScript

export type User = {
id: string
createdTime: number
name: string
username: string
avatarUrl?: string
balance: number
totalPnLCached: number
creatorVolumeCached: number
}
export const STARTING_BALANCE = 1000
export const SUS_STARTING_BALANCE = 10 // for sus users, i.e. multiple sign ups for same person
export type PrivateUser = {
id: string // same as User.id
username: string // denormalized from User
email?: string
unsubscribedFromResolutionEmails?: boolean
initialDeviceToken?: string
initialIpAddress?: string
}