/* 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 { DefaultReverseResolver, DefaultReverseResolverInterface, } from '../DefaultReverseResolver' const _abi = [ { inputs: [ { internalType: 'contract FNS', name: 'fnsAddr', type: 'address', }, ], payable: false, stateMutability: 'nonpayable', type: 'constructor', }, { constant: true, inputs: [], name: 'fns', outputs: [ { internalType: 'contract FNS', name: '', type: 'address', }, ], payable: false, stateMutability: 'view', type: 'function', }, { constant: true, inputs: [ { internalType: 'bytes32', name: '', type: 'bytes32', }, ], name: 'name', outputs: [ { internalType: 'string', name: '', type: 'string', }, ], payable: false, stateMutability: 'view', type: 'function', }, { constant: false, inputs: [ { internalType: 'bytes32', name: 'node', type: 'bytes32', }, { internalType: 'string', name: '_name', type: 'string', }, ], name: 'setName', outputs: [], payable: false, stateMutability: 'nonpayable', type: 'function', }, ] export class DefaultReverseResolver__factory { static readonly abi = _abi static createInterface(): DefaultReverseResolverInterface { return new Interface(_abi) as DefaultReverseResolverInterface } static connect( address: string, signerOrProvider: Signer | Provider, ): DefaultReverseResolver { return new Contract( address, _abi, signerOrProvider, ) as DefaultReverseResolver } }