2022-04-19 05:16:08 +00:00
|
|
|
export type View = {
|
|
|
|
contractId: string
|
|
|
|
timestamp: number
|
|
|
|
}
|
|
|
|
|
|
|
|
export type UserEvent = ClickEvent
|
|
|
|
|
|
|
|
export type ClickEvent = {
|
|
|
|
type: 'click'
|
|
|
|
contractId: string
|
|
|
|
timestamp: number
|
|
|
|
}
|
2022-04-21 06:00:08 +00:00
|
|
|
|
|
|
|
export type LatencyEvent = {
|
|
|
|
type: 'feed' | 'portfolio'
|
|
|
|
latency: number
|
|
|
|
timestamp: number
|
|
|
|
}
|