/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IControlDeployer, IControlDeployerInterface, } from "../IControlDeployer"; const _abi = [ { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "registry", type: "address", }, { indexed: true, internalType: "address", name: "deployer", type: "address", }, { indexed: true, internalType: "address", name: "control", type: "address", }, ], name: "DeployedControl", type: "event", }, { inputs: [ { internalType: "uint256", name: "nonce", type: "uint256", }, { internalType: "address", name: "deployer", type: "address", }, { internalType: "string", name: "uri", type: "string", }, ], name: "deployControl", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "nonpayable", type: "function", }, ]; export class IControlDeployer__factory { static readonly abi = _abi; static createInterface(): IControlDeployerInterface { return new utils.Interface(_abi) as IControlDeployerInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): IControlDeployer { return new Contract(address, _abi, signerOrProvider) as IControlDeployer; } }