hardhat-gasless-deployer
Version:
Hardhat Plugin for deploying contracts using GSN
11 lines • 350 B
TypeScript
import "hardhat/types/config";
import { HHGaslessDeployerConfig } from "./types";
declare module "hardhat/types/config" {
interface HardhatUserConfig {
hHGaslessDeployer?: HHGaslessDeployerConfig;
}
interface HardhatConfig {
hHGaslessDeployer: HHGaslessDeployerConfig;
}
}
//# sourceMappingURL=type-extensions.d.ts.map