Prathamesh Musale
45e4fca670
Part of [Generate watchers for sushiswap subgraphs deployed in graph-node](https://www.notion.so/Generate-watchers-for-sushiswap-subgraphs-deployed-in-graph-node-b3f2e475373d4ab1887d9f8720bd5ae6) Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: #3 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
18 lines
321 B
TypeScript
18 lines
321 B
TypeScript
//
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
//
|
|
|
|
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
|
|
|
|
@Entity()
|
|
export class StateSyncStatus {
|
|
@PrimaryGeneratedColumn()
|
|
id!: number;
|
|
|
|
@Column('integer')
|
|
latestIndexedBlockNumber!: number;
|
|
|
|
@Column('integer')
|
|
latestCheckpointBlockNumber!: number;
|
|
}
|