import type { DeployResult } from './deploy' // TODO: doc this // JSON format: // { // "": { // "": {} // ... // } // } export type AddressBookJson = Record< ChainId, Record > export type ConstructorArg = string | Array export type AddressBookEntry = { address: string constructorArgs?: Array initArgs?: Array proxy?: boolean implementation?: AddressBookEntry } & Partial>