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