/** * Allows a caller to specify an address string, a SignerWithAddress, or a Contract instance. */ export type Addressish = string | { address: string; } | { account: { address: string; }; }; export declare function toAddress(value: Addressish): `0x${string}`; export type TransactionHashish = string | { hash: string; }; export declare function toTxHash(tx: TransactionHashish): `0x${string}`; //# sourceMappingURL=types.d.ts.map