import { Abi } from 'abitype'; type EVMReadRequest = { address: string; functionName: string; args?: unknown[]; abi: Abi; }; export type { EVMReadRequest };