UNPKG

zksync-cli

Version:

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

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