@kamino-finance/kamino-db
Version:
Kamino database models
12 lines (11 loc) • 352 B
text/typescript
export type ReplaySampleEntity = {
id: bigint;
signature?: string;
description: string;
created_on: Date;
owner_id: number;
initial_state: any; // raw value stored as jsonb, type driven by hubble-public-api
tx: any; // raw value stored as jsonb, type driven by hubble-public-api
tag_set: string[];
};
export default ReplaySampleEntity;