UNPKG

zksync-cli

Version:

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

16 lines (15 loc) 487 B
import type { DefaultTransactionOptions } from "../../common/options.js"; import type { Command } from "commander"; type CallOptions = DefaultTransactionOptions & { contract?: string; method?: string; arguments?: Array<string[] | string>; data?: string; outputTypes: string[]; from?: string; abi?: string; decodeSkip?: boolean; showInfo?: boolean; }; export declare const handler: (options: CallOptions, context: Command) => Promise<void>; export {};