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;
