hardhat-gasless-deployer
Version:
Hardhat Plugin for deploying contracts using GSN
17 lines • 367 B
TypeScript
export interface HHGaslessDeployerConfig {
contract?: string;
initArgsPath?: string;
salt?: string;
value?: number;
signer?: any;
network?: string;
rpcUrl: any;
paymaster?: string;
relayerHub?: string;
forwarder?: string;
}
export type ContractJson = {
abi: any;
bytecode: string;
};
//# sourceMappingURL=types.d.ts.map