sushiswap-watcher-ts/packages/v2-watcher/src/entity/Burn.ts
Prathamesh Musale b1b79c844a Generate watcher for sushiswap v2 subgraph (#2)
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)

Reviewed-on: cerc-io/sushiswap-watcher-ts#2
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-06-12 04:15:03 +00:00

66 lines
1.6 KiB
TypeScript

//
// Copyright 2021 Vulcanize, Inc.
//
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
import { decimalTransformer, bigintTransformer } from '@cerc-io/util';
import { Decimal } from 'decimal.js';
@Entity()
@Index(['blockNumber'])
export class Burn {
@PrimaryColumn('varchar')
id!: string;
@PrimaryColumn('varchar', { length: 66 })
blockHash!: string;
@Column('integer')
blockNumber!: number;
@Column('varchar')
transaction!: string;
@Column('numeric', { transformer: bigintTransformer })
timestamp!: bigint;
@Column('varchar')
pair!: string;
@Column('numeric', { transformer: decimalTransformer })
liquidity!: Decimal;
@Column('varchar', { nullable: true })
sender!: string | null;
@Column('numeric', { nullable: true, transformer: decimalTransformer })
amount0!: Decimal | null;
@Column('numeric', { nullable: true, transformer: decimalTransformer })
amount1!: Decimal | null;
@Column('varchar', { nullable: true })
to!: string | null;
@Column('numeric', { nullable: true, transformer: bigintTransformer })
logIndex!: bigint | null;
@Column('numeric', { nullable: true, transformer: decimalTransformer })
amountUSD!: Decimal | null;
@Column('boolean')
needsComplete!: boolean;
@Column('varchar', { nullable: true })
feeTo!: string | null;
@Column('numeric', { nullable: true, transformer: decimalTransformer })
feeLiquidity!: Decimal | null;
@Column('boolean', { default: false })
isPruned!: boolean;
@Column('boolean', { default: false })
isRemoved!: boolean;
}