import deployment from './deployment.json'; export interface DeploymentData { [chainId: number]: { [contractName: string]: { target: string; impl: string; }; }; } export const Deployment: DeploymentData = deployment;