UNPKG

zksync-cli

Version:

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

10 lines (9 loc) 272 B
import type { DefaultOptions } from "../../common/options.js"; type BalanceOptions = DefaultOptions & { chain?: string; rpc?: string; address?: string; token?: string; }; export declare const handler: (options: BalanceOptions) => Promise<void>; export {};