/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IRootChainManager } from "../IRootChainManager"; export class IRootChainManager__factory { static connect( address: string, signerOrProvider: Signer | Provider ): IRootChainManager { return new Contract(address, _abi, signerOrProvider) as IRootChainManager; } } const _abi = [ { inputs: [ { internalType: "address", name: "user", type: "address", }, { internalType: "address", name: "rootToken", type: "address", }, { internalType: "bytes", name: "depositData", type: "bytes", }, ], name: "depositFor", outputs: [], stateMutability: "nonpayable", type: "function", }, ];