UNPKG

zksync-cli

Version:

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

14 lines (13 loc) 291 B
export type Chain = { id: number; name: string; network: string; rpcUrl: string; explorerUrl?: string; }; export type L2Chain = Chain & { l1Chain?: Chain; blockExplorerApiUrl?: string; verificationApiUrl?: string; }; export declare const l2Chains: L2Chain[];