/* 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 { StaticMetadataService, StaticMetadataServiceInterface, } from '../StaticMetadataService' const _abi = [ { inputs: [ { internalType: 'string', name: '_metaDataUri', type: 'string', }, ], stateMutability: 'nonpayable', type: 'constructor', }, { inputs: [ { internalType: 'uint256', name: '', type: 'uint256', }, ], name: 'uri', outputs: [ { internalType: 'string', name: '', type: 'string', }, ], stateMutability: 'view', type: 'function', }, ] export class StaticMetadataService__factory { static readonly abi = _abi static createInterface(): StaticMetadataServiceInterface { return new Interface(_abi) as StaticMetadataServiceInterface } static connect( address: string, signerOrProvider: Signer | Provider, ): StaticMetadataService { return new Contract( address, _abi, signerOrProvider, ) as StaticMetadataService } }