/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Interface } from '@ethersproject/abi' import { Signer } from '@ethersproject/abstract-signer' import { Contract } from '@ethersproject/contracts' import type { Provider } from '@ethersproject/providers' import type { SHA1Digest, SHA1DigestInterface } from '../SHA1Digest' const _abi = [ { inputs: [ { internalType: 'bytes', name: 'data', type: 'bytes', }, { internalType: 'bytes', name: 'hash', type: 'bytes', }, ], name: 'verify', outputs: [ { internalType: 'bool', name: '', type: 'bool', }, ], stateMutability: 'pure', type: 'function', }, ] export class SHA1Digest__factory { static readonly abi = _abi static createInterface(): SHA1DigestInterface { return new Interface(_abi) as SHA1DigestInterface } static connect( address: string, signerOrProvider: Signer | Provider, ): SHA1Digest { return new Contract(address, _abi, signerOrProvider) as SHA1Digest } }