UNPKG

zksync-cli

Version:

CLI tool that simplifies the process of developing applications and interacting with the ZKsync network

9 lines (8 loc) 251 B
import type { Command } from "commander"; type EncodeOptions = { method?: string; arguments?: Array<string | string[]>; abi?: string; }; export declare const handler: (options: EncodeOptions, context: Command) => Promise<void>; export {};