locklift-private-deploy
Version:
Locklift plugin that enables you to deploy smart contracts using private RPC endpoint.
13 lines (9 loc) • 339 B
text/typescript
import { PrivateDeployer } from "./deployer";
import { FactoryType } from "locklift/internal/factory";
export const PLUGIN_NAME = "privateRPC" as const;
export type PrivateDeployerExtension<T extends FactoryType> = {
[key in typeof PLUGIN_NAME]: PrivateDeployer<T>;
};
export type LockliftConfigExtension = {
privateRPC: string;
};