export interface contract {
    address: string;
    chainId: string;
    originBlockNumber: number;
    eventServiceURL: string;
    eventServiceApiKey: string;
    bitQueryKey: string;
}
export interface contractWithAdditive extends contract {
    additiveAddress?: string;
}
