export interface Deployment { version: string; // eslint-disable-next-line @typescript-eslint/no-explicit-any abi: any[]; networkAddresses: Record; contractName: string; released: boolean; } export interface DeploymentFilter { version?: string; released?: boolean; network?: string; }