aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/block.ts
blob: 39894662251a7206a60b5ff99b83e38dc04f7eaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Column, Entity, PrimaryColumn } from 'typeorm';

import { numberToBigIntTransformer } from '../utils';

@Entity({ name: 'blocks', schema: 'raw' })
export class Block {
    @PrimaryColumn() public hash!: string;
    @PrimaryColumn({ transformer: numberToBigIntTransformer })
    public number!: number;

    @Column({ name: 'timestamp', transformer: numberToBigIntTransformer })
    public timestamp!: number;
}