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