/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { Proxy, ProxyInterface } from "../Proxy"; const _abi = [ { stateMutability: "payable", type: "fallback", }, { stateMutability: "payable", type: "receive", }, ]; export class Proxy__factory { static readonly abi = _abi; static createInterface(): ProxyInterface { return new utils.Interface(_abi) as ProxyInterface; } static connect(address: string, signerOrProvider: Signer | Provider): Proxy { return new Contract(address, _abi, signerOrProvider) as Proxy; } }