aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/trusted_tokens.ts
blob: 6ec27c96398687d539e34a8134bfca33210f0c95 (plain) (blame)
1
2
3
4
5
6
7
import { Column, Entity, PrimaryColumn } from 'typeorm';

@Entity({ name: 'trusted_tokens', schema: 'raw' })
export class TrustedToken {
    @PrimaryColumn() public address!: string;
    @PrimaryColumn() public authority!: string;
}