UNPKG

getmefcknabi

Version:

✨ Extract ABIs from any smart contract with minimal hassle - CLI tool with interactive mode to extract ABIs from verified and unverified contracts on any EVM chain

9 lines (8 loc) 212 B
/** * Extract ABI and functions from a contract */ export declare function extractAbi(address: string, rpcUrl: string, chainId?: number): Promise<{ abi: any[]; functions: any[]; source: string; }>;