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

15 lines (14 loc) 280 B
/** * Chain configuration type */ export interface ChainConfig { id: number; name: string; rpcUrl: string; blockExplorerUrl?: string; isTestnet?: boolean; } /** * List of supported chains with public RPC URLs */ export declare const chains: ChainConfig[];