UNPKG

@matterlabs/hardhat-zksync-deploy

Version:
10 lines (8 loc) 339 B
import * as zk from 'zksync-ethers'; import { ZkSyncArtifact } from './types'; export interface AbstractDeployer { deploy(...args: any[]): Promise<zk.Contract>; estimateDeployFee(...args: any[]): Promise<bigint>; estimateDeployGas(...args: any[]): Promise<bigint>; loadArtifact(...args: any[]): Promise<ZkSyncArtifact>; }