/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */

import { Contract, Signer, utils } from "ethers";
import { Provider } from "@ethersproject/providers";
import type {
  GatewayRecipient,
  GatewayRecipientInterface,
} from "../GatewayRecipient";

const _abi = [
  {
    inputs: [],
    name: "gateway",
    outputs: [
      {
        internalType: "address",
        name: "",
        type: "address",
      },
    ],
    stateMutability: "view",
    type: "function",
  },
];

export class GatewayRecipient__factory {
  static readonly abi = _abi;
  static createInterface(): GatewayRecipientInterface {
    return new utils.Interface(_abi) as GatewayRecipientInterface;
  }
  static connect(
    address: string,
    signerOrProvider: Signer | Provider
  ): GatewayRecipient {
    return new Contract(address, _abi, signerOrProvider) as GatewayRecipient;
  }
}
