export interface ContractInfo { proxyAddress: string; implAddress: string; version: string; contract: string; operator: string; fromBlock: number; } export interface Deployment { BlockChatUpgradeable: ContractInfo; } export interface DeploymentFull { [chainId: number]: Deployment; } export declare const DeploymentInfo: DeploymentFull;