aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/transaction.ts
blob: 91e4ecb5d3d34f3033fa283856365a9b653a582d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Column, Entity, PrimaryColumn } from 'typeorm';

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

@Entity({ name: 'transactions', schema: 'raw' })
export class Transaction {
    @PrimaryColumn({ name: 'transaction_hash' })
    public transactionHash!: string;
    @PrimaryColumn({ name: 'block_hash' })
    public blockHash!: string;
    @PrimaryColumn({ name: 'block_number', transformer: numberToBigIntTransformer })
    public blockNumber!: number;

    @Column({ type: 'bigint', name: 'gas_used', transformer: numberToBigIntTransformer })
    public gasUsed!: number;
    @Column({ type: 'bigint', name: 'gas_price', transformer: numberToBigIntTransformer })
    public gasPrice!: number;
}