@matterlabs/hardhat-zksync-deploy
Version:
Hardhat plugin to deploy smart contracts into the ZKsync network
9 lines • 385 B
TypeScript
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>;
}
//# sourceMappingURL=abstract-deployer.d.ts.map