UNPKG

locklift-private-deploy

Version:

Locklift plugin that enables you to deploy smart contracts using private RPC endpoint.

10 lines (9 loc) 338 B
import { PrivateDeployer } from "./deployer"; import { FactoryType } from "locklift/internal/factory"; export declare const PLUGIN_NAME: "privateRPC"; export type PrivateDeployerExtension<T extends FactoryType> = { [key in typeof PLUGIN_NAME]: PrivateDeployer<T>; }; export type LockliftConfigExtension = { privateRPC: string; };